mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
v1.1.4 release (^.^)YYa!!
This commit is contained in:
parent
98aca5bf6e
commit
27540d97e2
14
changes.txt
14
changes.txt
@ -1,3 +1,17 @@
|
|||||||
|
mybatis-flex v1.1.4 20230417:
|
||||||
|
新增:添加逻辑删除的自定义内容配置功能
|
||||||
|
新增:Entity 添加枚举属性的支持
|
||||||
|
新增:BaseMapper 新增 insertOrUpdate() 方法
|
||||||
|
新增:事务添加 Propagation 参数配置的支持
|
||||||
|
新增:为 Spring 适配 @Transactional 注解的支持
|
||||||
|
修复:租户模式下,deleteBatchByIds 报错的问题
|
||||||
|
修复:ProviderUtil NPE 的问题
|
||||||
|
修复:APT 和 TableInfo 构建多出静态变量的问题
|
||||||
|
文档:完善逻辑删除的相关文档
|
||||||
|
文档:修改 ignoreNulls 描述错误的问题
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mybatis-flex v1.1.3 20230414:
|
mybatis-flex v1.1.3 20230414:
|
||||||
新增:代码生成器生成的 entity 可以支持配置父类和实现的接口
|
新增:代码生成器生成的 entity 可以支持配置父类和实现的接口
|
||||||
修复:在某些场景下出现 Recursive update 错误的问题
|
修复:在某些场景下出现 Recursive update 错误的问题
|
||||||
|
|||||||
@ -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.3</version>
|
<version>1.1.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -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.3</version>
|
<version>1.1.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -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.3</version>
|
<version>1.1.4</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.3</version>
|
<version>1.1.4</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.3</version>
|
<version>1.1.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
2
pom.xml
2
pom.xml
@ -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.3</version>
|
<version>1.1.4</version>
|
||||||
|
|
||||||
<name>mybatis-flex</name>
|
<name>mybatis-flex</name>
|
||||||
<url>https://mybatis-flex.com</url>
|
<url>https://mybatis-flex.com</url>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user