diff --git a/changes.md b/changes.md index ff8bfd5c..4cc47456 100644 --- a/changes.md +++ b/changes.md @@ -1,5 +1,15 @@ # MyBatis-Flex ChangeLog +## v1.6.0 20230825: +- 新增:添加 RelationManager.addQueryRelations() 方法用于只查询部分关联字段 +- 优化:重构移除已经标识删除的方法或类 !!!破坏性更新 +- 修复:Oracle 下的批量操作时在某些情况下可能返回结果不正确的问题 +- 修复:代码生成器在某些情况下出现 NPE 的问题,感谢 @Suomm +- 修复:v1.5.9 版本造成的 ignore 属性也被加入 defaultQueryColumns 默认查询列的问题,感谢 @Suomm +- 文档:添加 RelationManager.addQueryRelations() 使用的相关文档 +- 文档:添加 mybatis-flex-dependencies 使用说明,感谢 @Suomm + + ## v1.5.9 20230824: - 新增:添加对数据库 Hive SQL 和 Doris 的支持 diff --git a/docs/zh/changes.md b/docs/zh/changes.md index ff8bfd5c..4cc47456 100644 --- a/docs/zh/changes.md +++ b/docs/zh/changes.md @@ -1,5 +1,15 @@ # MyBatis-Flex ChangeLog +## v1.6.0 20230825: +- 新增:添加 RelationManager.addQueryRelations() 方法用于只查询部分关联字段 +- 优化:重构移除已经标识删除的方法或类 !!!破坏性更新 +- 修复:Oracle 下的批量操作时在某些情况下可能返回结果不正确的问题 +- 修复:代码生成器在某些情况下出现 NPE 的问题,感谢 @Suomm +- 修复:v1.5.9 版本造成的 ignore 属性也被加入 defaultQueryColumns 默认查询列的问题,感谢 @Suomm +- 文档:添加 RelationManager.addQueryRelations() 使用的相关文档 +- 文档:添加 mybatis-flex-dependencies 使用说明,感谢 @Suomm + + ## v1.5.9 20230824: - 新增:添加对数据库 Hive SQL 和 Doris 的支持 diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md index f316dce0..d56176f7 100644 --- a/docs/zh/intro/getting-started.md +++ b/docs/zh/intro/getting-started.md @@ -51,7 +51,7 @@ VALUES (1, '张三', 18, '2020-01-11'), com.mybatis-flex mybatis-flex-spring-boot-starter - 1.5.9 + 1.6.0 com.mysql diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index 3ff84158..3d71cf16 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.5.9") + implementation("com.mybatis-flex:mybatis-flex-core:1.6.0") } ``` @@ -18,7 +18,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-core:1.5.9' + implementation 'com.mybatis-flex:mybatis-flex-core:1.6.0' } ``` @@ -28,7 +28,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring:1.5.9") + implementation("com.mybatis-flex:mybatis-flex-spring:1.6.0") } ``` @@ -36,7 +36,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring:1.5.9' + implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.0' } ``` @@ -46,7 +46,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.5.9") + implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.0") } ``` @@ -54,7 +54,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.5.9' + implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.0' } ``` @@ -70,7 +70,7 @@ dependencies { ```kotlin dependencies { - annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.5.9") + annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.0") } ``` @@ -78,6 +78,6 @@ dependencies { ```groovy dependencies { - annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.5.9' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.0' } ``` diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md index e76652b5..e405c42a 100644 --- a/docs/zh/intro/maven.md +++ b/docs/zh/intro/maven.md @@ -12,12 +12,12 @@ com.mybatis-flex mybatis-flex-core - 1.5.9 + 1.6.0 com.mybatis-flex mybatis-flex-processor - 1.5.9 + 1.6.0 provided ``` @@ -28,12 +28,12 @@ com.mybatis-flex mybatis-flex-spring - 1.5.9 + 1.6.0 com.mybatis-flex mybatis-flex-processor - 1.5.9 + 1.6.0 provided `````` @@ -44,12 +44,12 @@ com.mybatis-flex mybatis-flex-spring-boot-starter - 1.5.9 + 1.6.0 com.mybatis-flex mybatis-flex-processor - 1.5.9 + 1.6.0 provided ``` @@ -72,7 +72,7 @@ com.mybatis-flex mybatis-flex-processor - 1.5.9 + 1.6.0 diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md index c98a1532..16fe8218 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.5.9' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.0' } ``` diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md index d057c5da..1621f30d 100644 --- a/docs/zh/others/codegen.md +++ b/docs/zh/others/codegen.md @@ -10,7 +10,7 @@ com.mybatis-flex mybatis-flex-codegen - 1.5.9 + 1.6.0 ``` diff --git a/mybatis-flex-dependencies/pom.xml b/mybatis-flex-dependencies/pom.xml index 28fc7eb2..60692d13 100644 --- a/mybatis-flex-dependencies/pom.xml +++ b/mybatis-flex-dependencies/pom.xml @@ -6,7 +6,7 @@ com.mybatis-flex parent - 1.5.9 + 1.6.0 mybatis-flex-dependencies diff --git a/pom.xml b/pom.xml index 4c7532d1..eac473b7 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.mybatis-flex parent pom - 1.5.9 + 1.6.0 mybatis-flex https://mybatis-flex.com @@ -55,7 +55,7 @@ 8 8 - 1.5.9 + 1.6.0 3.5.13 2.1.0