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

This commit is contained in:
开源海哥 2023-04-24 16:05:38 +08:00
parent 6363cb391e
commit d055572776
6 changed files with 23 additions and 7 deletions

View File

@ -1,3 +1,19 @@
mybatis-flex v1.1.9 20230424:
新增:根据 id 查询数据时,返回默认字段而非全部字段;感谢 @wnp
新增APT 添加忽略 entity 后缀的配置支持
修复where 中第一个括号处理不正确的问题 #I6XXWR
修复:批量插入且配置 onInsert 时,出现错误的问题
修复:批量插入 row且为 row 设置主键时,出错的问题 #I6Y8ZU
修复Oracle 在某些情况下出现 SQLSyntaxErrorException 错误的问题 #I6Y6MZ
修复RowUtil.printPretty 在某些情况下显示数据不正确的问题
修复APT 无法生成 @NotBlank 注解字段的问题
优化:更新 apt 的 mappersGenerateEnable 默认值为 false
文档:优化 APT 的相关文档
文档:优化 快速开始 的相关文档
文档:添加 column 全局配置的相关文档
mybatis-flex v1.1.8 20230422:
新增:添加 RowUtil.printPretty() 方法,用于调试
新增:代码生成器生成代码默认添加注释的功能

View File

@ -123,7 +123,7 @@ processor.baseMapperClass=com.domain.mapper.MyBaseMapper
```
dependencies {
...
annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.8'
annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.9'
}
```

View File

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

View File

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

View File

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

View File

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