v1.1.3 release (^.^)YYa!!

This commit is contained in:
开源海哥 2023-04-14 18:24:42 +08:00
parent c171e1339e
commit fe94c30b22
5 changed files with 16 additions and 7 deletions

View File

@ -1,4 +1,13 @@
mybatis-flex v1.1.2 20230414: mybatis-flex v1.1.3 20230414:
新增:代码生成器生成的 entity 可以支持配置父类和实现的接口
修复:在某些场景下出现 Recursive update 错误的问题
修复Entity 继承父类,但是 APT 生成的代码没有父类字段的问题
修复QueryWrapper unionAll 报错的问题
修复:修复多租户的场景下 union 的子查询不添加租户 ID 的问题
mybatis-flex v1.1.2 20230413:
新增QueryCondition 的 and(string) 和 or(string) 方法 新增QueryCondition 的 and(string) 和 or(string) 方法
新增Page.map() 方法用于 Page 数据转换 新增Page.map() 方法用于 Page 数据转换
新增SQL 审计新增数据返回行数和自定义业务ID的支持 新增SQL 审计新增数据返回行数和自定义业务ID的支持

View File

@ -9,7 +9,7 @@
<dependency> <dependency>
<groupId>com.mybatis-flex</groupId> <groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-codegen</artifactId> <artifactId>mybatis-flex-codegen</artifactId>
<version>1.1.2</version> <version>1.1.3</version>
</dependency> </dependency>
``` ```

View File

@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `tb_account`
<dependency> <dependency>
<groupId>com.mybatis-flex</groupId> <groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId> <artifactId>mybatis-flex-core</artifactId>
<version>1.1.2</version> <version>1.1.3</version>
</dependency> </dependency>
``` ```

View File

@ -9,7 +9,7 @@
<dependency> <dependency>
<groupId>com.mybatis-flex</groupId> <groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId> <artifactId>mybatis-flex-core</artifactId>
<version>1.1.2</version> <version>1.1.3</version>
</dependency> </dependency>
``` ```
@ -19,7 +19,7 @@
<dependency> <dependency>
<groupId>com.mybatis-flex</groupId> <groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring</artifactId> <artifactId>mybatis-flex-spring</artifactId>
<version>1.1.2</version> <version>1.1.3</version>
</dependency> </dependency>
`````` ``````
@ -29,6 +29,6 @@
<dependency> <dependency>
<groupId>com.mybatis-flex</groupId> <groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId> <artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.1.2</version> <version>1.1.3</version>
</dependency> </dependency>
``` ```

View File

@ -7,7 +7,7 @@
<groupId>com.mybatis-flex</groupId> <groupId>com.mybatis-flex</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.1.2</version> <version>1.1.3</version>
<name>mybatis-flex</name> <name>mybatis-flex</name>
<url>https://mybatis-flex.com</url> <url>https://mybatis-flex.com</url>