diff --git a/changes.md b/changes.md index afc80ae3..b0d00571 100644 --- a/changes.md +++ b/changes.md @@ -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 diff --git a/docs/zh/changes.md b/docs/zh/changes.md index afc80ae3..b0d00571 100644 --- a/docs/zh/changes.md +++ b/docs/zh/changes.md @@ -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 diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md index 4c3d8e62..816fe812 100644 --- a/docs/zh/intro/getting-started.md +++ b/docs/zh/intro/getting-started.md @@ -62,7 +62,7 @@ VALUES (1, '张三', 18, '2020-01-11'), com.mybatis-flex mybatis-flex-spring-boot-starter - 1.6.4 + 1.6.5 com.mysql diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index 5e34b50e..014113c4 100644 --- a/docs/zh/intro/gradle.md +++ b/docs/zh/intro/gradle.md @@ -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' } ``` diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md index f00b4318..4f8c0078 100644 --- a/docs/zh/intro/maven.md +++ b/docs/zh/intro/maven.md @@ -12,12 +12,12 @@ com.mybatis-flex mybatis-flex-core - 1.6.4 + 1.6.5 com.mybatis-flex mybatis-flex-processor - 1.6.4 + 1.6.5 provided ``` @@ -28,12 +28,12 @@ com.mybatis-flex mybatis-flex-spring - 1.6.4 + 1.6.5 com.mybatis-flex mybatis-flex-processor - 1.6.4 + 1.6.5 provided `````` @@ -44,12 +44,12 @@ com.mybatis-flex mybatis-flex-spring-boot-starter - 1.6.4 + 1.6.5 com.mybatis-flex mybatis-flex-processor - 1.6.4 + 1.6.5 provided ``` @@ -72,7 +72,7 @@ com.mybatis-flex mybatis-flex-processor - 1.6.4 + 1.6.5 diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md index 2e693a06..f592ae69 100644 --- a/docs/zh/others/apt.md +++ b/docs/zh/others/apt.md @@ -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' } ``` diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md index 6f842a1d..ecb6ef03 100644 --- a/docs/zh/others/codegen.md +++ b/docs/zh/others/codegen.md @@ -10,7 +10,7 @@ com.mybatis-flex mybatis-flex-codegen - 1.6.4 + 1.6.5 ``` diff --git a/pom.xml b/pom.xml index 139ce64f..882b8bcc 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.mybatis-flex parent pom - 1.6.4 + 1.6.5 mybatis-flex https://mybatis-flex.com @@ -55,7 +55,7 @@ 8 8 - 1.6.4 + 1.6.5 3.5.13 2.1.0