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

This commit is contained in:
开源海哥 2023-04-22 17:28:28 +08:00
parent 084f649a6a
commit 84c265924d
6 changed files with 23 additions and 7 deletions

View File

@ -1,3 +1,19 @@
mybatis-flex v1.1.8 20230422:
新增:添加 RowUtil.printPretty() 方法,用于调试
新增:代码生成器生成代码默认添加注释的功能
新增:添加 BaseEntity.insertSelective() 方法 #I6XS9Z
修复:子查询时,逻辑删除字段的未添加逻辑删除字段 #I6X4U8
修复TransactionTemplate.execute 失效的问题 #I6XSHH
修复:"EXIST" 关键字错误的问题 #I6XTVB
优化Row 添加列序号的功能,数据库返回结果相同列不再覆盖
文档:添加 使用 Mybatis 原生功能的相关文档
文档:添加 支持的数据库类型 的相关文档
文档Db + Row 添加 left join 转换 entity 的文档
文档:优化 快速开始 的相关文档
文档APT 文档添加关于 Gradle 构建的一些内容
mybatis-flex v1.1.7 20230421: mybatis-flex v1.1.7 20230421:
优化:将 ConsoleMessageCollector 的 getFullSql 方法移入 AuditMessage方便重用 感谢 @pengpeng 优化:将 ConsoleMessageCollector 的 getFullSql 方法移入 AuditMessage方便重用 感谢 @pengpeng
修复:配置 mybatis-flex.mapper-locations 在某些场景下会出现 NPE 的问题 #I6X59V 修复:配置 mybatis-flex.mapper-locations 在某些场景下会出现 NPE 的问题 #I6X59V

View File

@ -119,7 +119,7 @@ processor.mappersGenerateEnable = false
``` ```
dependencies { dependencies {
... ...
annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.7' annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.8'
} }
``` ```

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.7</version> <version>1.1.8</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.7</version> <version>1.1.8</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.7</version> <version>1.1.8</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.7</version> <version>1.1.8</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.7</version> <version>1.1.8</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.7</version> <version>1.1.8</version>
<name>mybatis-flex</name> <name>mybatis-flex</name>
<url>https://mybatis-flex.com</url> <url>https://mybatis-flex.com</url>