mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
v1.1.8 release (^.^)YYa!!
This commit is contained in:
parent
084f649a6a
commit
84c265924d
16
changes.txt
16
changes.txt
@ -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:
|
||||
优化:将 ConsoleMessageCollector 的 getFullSql 方法移入 AuditMessage,方便重用 感谢 @pengpeng
|
||||
修复:配置 mybatis-flex.mapper-locations 在某些场景下会出现 NPE 的问题 #I6X59V
|
||||
|
||||
@ -119,7 +119,7 @@ processor.mappersGenerateEnable = false
|
||||
```
|
||||
dependencies {
|
||||
...
|
||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.7'
|
||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.8'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-codegen</artifactId>
|
||||
<version>1.1.7</version>
|
||||
<version>1.1.8</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.7</version>
|
||||
<version>1.1.8</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-core</artifactId>
|
||||
<version>1.1.7</version>
|
||||
<version>1.1.8</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-spring</artifactId>
|
||||
<version>1.1.7</version>
|
||||
<version>1.1.8</version>
|
||||
</dependency>
|
||||
``````
|
||||
|
||||
@ -29,6 +29,6 @@
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
||||
<version>1.1.7</version>
|
||||
<version>1.1.8</version>
|
||||
</dependency>
|
||||
```
|
||||
Loading…
x
Reference in New Issue
Block a user