From ba2b8a0900b2f1e96ff78565d5a220b169737263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=80=E6=BA=90=E6=B5=B7=E5=93=A5?= Date: Sun, 3 Sep 2023 19:05:18 +0800 Subject: [PATCH] build: v1.6.4 release (^.^)YYa!! --- changes.md | 9 +++++++++ docs/zh/changes.md | 9 +++++++++ docs/zh/intro/getting-started.md | 2 +- docs/zh/intro/gradle.md | 16 ++++++++-------- docs/zh/intro/maven.md | 14 +++++++------- docs/zh/others/apt.md | 2 +- docs/zh/others/codegen.md | 2 +- pom.xml | 4 ++-- 8 files changed, 38 insertions(+), 20 deletions(-) diff --git a/changes.md b/changes.md index 31b02028..afc80ae3 100644 --- a/changes.md +++ b/changes.md @@ -3,6 +3,15 @@ 查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。 + +## v1.6.4 20230903: +- 新增:QueryWrapper 添加动态排序功能的支持,感谢 @Suomm +- 优化:Solon 取消无必要的 FlexSqlSessionFactoryBuilder 注入,感谢 @noear_admin +- 修复:开启 mapUnderscoreToCamelCase 配置后,@Relations 关联查询可能无法正常查询的问题 +- 文档:添加动态排序的相关文档,感谢 @Suomm + + + ## v1.6.3 20230901: - 修复:紧急修复 v1.6.2 分页查询无法查询数据列表的问题 diff --git a/docs/zh/changes.md b/docs/zh/changes.md index 31b02028..afc80ae3 100644 --- a/docs/zh/changes.md +++ b/docs/zh/changes.md @@ -3,6 +3,15 @@ 查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。 + +## v1.6.4 20230903: +- 新增:QueryWrapper 添加动态排序功能的支持,感谢 @Suomm +- 优化:Solon 取消无必要的 FlexSqlSessionFactoryBuilder 注入,感谢 @noear_admin +- 修复:开启 mapUnderscoreToCamelCase 配置后,@Relations 关联查询可能无法正常查询的问题 +- 文档:添加动态排序的相关文档,感谢 @Suomm + + + ## v1.6.3 20230901: - 修复:紧急修复 v1.6.2 分页查询无法查询数据列表的问题 diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md index b4baa996..4c3d8e62 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.3 + 1.6.4 com.mysql diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index b8997588..5e34b50e 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.3") + implementation("com.mybatis-flex:mybatis-flex-core:1.6.4") } ``` @@ -18,7 +18,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-core:1.6.3' + implementation 'com.mybatis-flex:mybatis-flex-core:1.6.4' } ``` @@ -28,7 +28,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring:1.6.3") + implementation("com.mybatis-flex:mybatis-flex-spring:1.6.4") } ``` @@ -36,7 +36,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.3' + implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.4' } ``` @@ -46,7 +46,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.3") + implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.4") } ``` @@ -54,7 +54,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.3' + implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.4' } ``` @@ -70,7 +70,7 @@ dependencies { ```kotlin dependencies { - annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.3") + annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.4") } ``` @@ -78,6 +78,6 @@ dependencies { ```groovy dependencies { - annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.3' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.4' } ``` diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md index 8e746be2..f00b4318 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.3 + 1.6.4 com.mybatis-flex mybatis-flex-processor - 1.6.3 + 1.6.4 provided ``` @@ -28,12 +28,12 @@ com.mybatis-flex mybatis-flex-spring - 1.6.3 + 1.6.4 com.mybatis-flex mybatis-flex-processor - 1.6.3 + 1.6.4 provided `````` @@ -44,12 +44,12 @@ com.mybatis-flex mybatis-flex-spring-boot-starter - 1.6.3 + 1.6.4 com.mybatis-flex mybatis-flex-processor - 1.6.3 + 1.6.4 provided ``` @@ -72,7 +72,7 @@ com.mybatis-flex mybatis-flex-processor - 1.6.3 + 1.6.4 diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md index 1bbefc5f..2e693a06 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.3' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.4' } ``` diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md index 82e20ace..6f842a1d 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.3 + 1.6.4 ``` diff --git a/pom.xml b/pom.xml index fa07b158..139ce64f 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.mybatis-flex parent pom - 1.6.3 + 1.6.4 mybatis-flex https://mybatis-flex.com @@ -55,7 +55,7 @@ 8 8 - 1.6.3 + 1.6.4 3.5.13 2.1.0