build: v1.6.5 release (^.^)YYa!!

This commit is contained in:
开源海哥 2023-09-14 09:47:06 +08:00
parent ff40f421e7
commit 6f3f91460a
8 changed files with 62 additions and 20 deletions

View File

@ -3,6 +3,27 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
## v1.6.5 20230914:
- 新增:代码生成器为 Oracle 的 JdbcTypeMapping 类型 OracleBlob 添加映射处理
- 新增LogicDeleteManager 和 TenantManager 添加 Runnable 无返回值重载,感谢 @Suomm
- 新增RawQueryColumn 添加参数占位符的支持功能,感谢 @Suomm
- 新增:代码生成器添加关于 solon Controller 生成的代码模板,感谢 @ZhuHJay
- 新增UpdateEntity 添加自动去除有忽略注解的字段的功能,感谢 @aqnghu
- 优化:代码生成器配置类添加 Serializable 接口实现的支持,方便自定义缓存保存,感谢 @zoufang162
- 优化:使用 lambda 优化部分写法,感谢 @handy-git
- 优化:使用 try-with-resources 释放 Connection感谢 @handy-git
- 优化DataSourceBuilder 出错时,吞掉原始的 exception 的 message 信息的问题 #I7YYRF
- 优化:`@Table` 注解增加 `@Inherited` 修饰,感谢 @jerryzhengsz1
- 修复:当工作流引擎 activti6 整合 MyBatis-Flex 可能出现 NPE 的问题
- 修复:通过 XML 自定义的 SQL 查询不兼容自定义枚举使用的问题,感谢 @lifejwang11
- 文档:更新关于 MyBatis-Flex-Admin 的相关文档
- 文档:添加关于 MyBatis-Flex-Kotlin 的相关文档 感谢 @kamo-sama
- 文档:修正自定义脱敏处理器的示例代码错误,感谢 @wang_yong_ji
- 文档:添加关于 MyBatis-Flex 与 activiti6 以及 Flowable 等工作流引擎集成的相关文档,感谢 @simple_wind
- 文档:修复逻辑删除文档的个别错别字,感谢 @cainiao3853
- 文档:修正自定义映射的相关代码示例错误,感谢 @tycms
## v1.6.4 20230903:
- 新增QueryWrapper 添加动态排序功能的支持,感谢 @Suomm

View File

@ -3,6 +3,27 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
## v1.6.5 20230914:
- 新增:代码生成器为 Oracle 的 JdbcTypeMapping 类型 OracleBlob 添加映射处理
- 新增LogicDeleteManager 和 TenantManager 添加 Runnable 无返回值重载,感谢 @Suomm
- 新增RawQueryColumn 添加参数占位符的支持功能,感谢 @Suomm
- 新增:代码生成器添加关于 solon Controller 生成的代码模板,感谢 @ZhuHJay
- 新增UpdateEntity 添加自动去除有忽略注解的字段的功能,感谢 @aqnghu
- 优化:代码生成器配置类添加 Serializable 接口实现的支持,方便自定义缓存保存,感谢 @zoufang162
- 优化:使用 lambda 优化部分写法,感谢 @handy-git
- 优化:使用 try-with-resources 释放 Connection感谢 @handy-git
- 优化DataSourceBuilder 出错时,吞掉原始的 exception 的 message 信息的问题 #I7YYRF
- 优化:`@Table` 注解增加 `@Inherited` 修饰,感谢 @jerryzhengsz1
- 修复:当工作流引擎 activti6 整合 MyBatis-Flex 可能出现 NPE 的问题
- 修复:通过 XML 自定义的 SQL 查询不兼容自定义枚举使用的问题,感谢 @lifejwang11
- 文档:更新关于 MyBatis-Flex-Admin 的相关文档
- 文档:添加关于 MyBatis-Flex-Kotlin 的相关文档 感谢 @kamo-sama
- 文档:修正自定义脱敏处理器的示例代码错误,感谢 @wang_yong_ji
- 文档:添加关于 MyBatis-Flex 与 activiti6 以及 Flowable 等工作流引擎集成的相关文档,感谢 @simple_wind
- 文档:修复逻辑删除文档的个别错别字,感谢 @cainiao3853
- 文档:修正自定义映射的相关代码示例错误,感谢 @tycms
## v1.6.4 20230903:
- 新增QueryWrapper 添加动态排序功能的支持,感谢 @Suomm

View File

@ -62,7 +62,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>

View File

@ -10,7 +10,7 @@
```kotlin
dependencies {
implementation("com.mybatis-flex:mybatis-flex-core:1.6.4")
implementation("com.mybatis-flex:mybatis-flex-core:1.6.5")
}
```
@ -18,7 +18,7 @@ dependencies {
```groovy
dependencies {
implementation 'com.mybatis-flex:mybatis-flex-core:1.6.4'
implementation 'com.mybatis-flex:mybatis-flex-core:1.6.5'
}
```
@ -28,7 +28,7 @@ dependencies {
```kotlin
dependencies {
implementation("com.mybatis-flex:mybatis-flex-spring:1.6.4")
implementation("com.mybatis-flex:mybatis-flex-spring:1.6.5")
}
```
@ -36,7 +36,7 @@ dependencies {
```groovy
dependencies {
implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.4'
implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.5'
}
```
@ -46,7 +46,7 @@ dependencies {
```kotlin
dependencies {
implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.4")
implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.5")
}
```
@ -54,7 +54,7 @@ dependencies {
```groovy
dependencies {
implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.4'
implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.5'
}
```
@ -70,7 +70,7 @@ dependencies {
```kotlin
dependencies {
annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.4")
annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.5")
}
```
@ -78,6 +78,6 @@ dependencies {
```groovy
dependencies {
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.4'
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.5'
}
```

View File

@ -12,12 +12,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
<scope>provided</scope>
</dependency>
```
@ -28,12 +28,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
<scope>provided</scope>
</dependency>
``````
@ -44,12 +44,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
<scope>provided</scope>
</dependency>
```
@ -72,7 +72,7 @@
<path>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
</path>
</annotationProcessorPaths>
</configuration>

View File

@ -220,7 +220,7 @@ pom.xml 添加 `annotationProcessorPaths` 配置,
```
dependencies {
...
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.4'
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.5'
}
```

View File

@ -10,7 +10,7 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-codegen</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
</dependency>
```

View File

@ -7,7 +7,7 @@
<groupId>com.mybatis-flex</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.6.4</version>
<version>1.6.5</version>
<name>mybatis-flex</name>
<url>https://mybatis-flex.com</url>
@ -55,7 +55,7 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<mybatis-flex.version>1.6.4</mybatis-flex.version>
<mybatis-flex.version>1.6.5</mybatis-flex.version>
<mybatis.version>3.5.13</mybatis.version>
<mybatis-spring.version>2.1.0</mybatis-spring.version>