mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
v1.1.9 release (^.^)YYa!!
This commit is contained in:
parent
6363cb391e
commit
d055572776
16
changes.txt
16
changes.txt
@ -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() 方法,用于调试
|
||||
新增:代码生成器生成代码默认添加注释的功能
|
||||
|
||||
@ -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'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@ -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>
|
||||
```
|
||||
|
||||
|
||||
@ -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>
|
||||
```
|
||||
|
||||
|
||||
@ -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>
|
||||
```
|
||||
Loading…
x
Reference in New Issue
Block a user