From bd16e6ee63dd5d1d5b86188fa74ab3b42da85d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=80=E6=BA=90=E6=B5=B7=E5=93=A5?= Date: Fri, 24 Nov 2023 15:16:59 +0800 Subject: [PATCH] build: v1.7.5 release (^.^)YYa!! --- .gitee/ISSUE_TEMPLATE/bug.yml | 2 +- .gitee/ISSUE_TEMPLATE/question.yml | 2 +- changes.md | 7 +++++++ docs/zh/changes.md | 7 +++++++ 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 ++-- 10 files changed, 36 insertions(+), 22 deletions(-) diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml index ec5c3654..52773c9c 100644 --- a/.gitee/ISSUE_TEMPLATE/bug.yml +++ b/.gitee/ISSUE_TEMPLATE/bug.yml @@ -7,7 +7,7 @@ body: attributes: label: 这个 Bug 是否已经存在: options: - - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.7.4,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues) + - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.7.5,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues) required: true - type: textarea attributes: diff --git a/.gitee/ISSUE_TEMPLATE/question.yml b/.gitee/ISSUE_TEMPLATE/question.yml index 11df3172..dd0db2da 100644 --- a/.gitee/ISSUE_TEMPLATE/question.yml +++ b/.gitee/ISSUE_TEMPLATE/question.yml @@ -13,7 +13,7 @@ body: attributes: label: 这个问题是否已经存在: options: - - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.7.4,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues) + - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.7.5,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues) required: true - type: textarea id: question-description diff --git a/changes.md b/changes.md index 5606ce1f..80a725e4 100644 --- a/changes.md +++ b/changes.md @@ -3,6 +3,13 @@ 查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。 +## v1.7.5 20231124: +- 修复:主键 ID 当传入空字符串时,调用 `insert` 方法不会依据 `@Id` 自动生成主键 id 的问题 +- 修复:`FlexTransactionManager` 空指针异常的问题 +- 修复:`@ColumnMask`,`typeHandler` 一起使用时冲突导致 `@ColumnMask` 不生效的问题 + + + ## v1.7.4 20231120: - 新增:QueryMethods 添加 bracket 在极特殊场景下用于构建括号的支持,感谢 @Suomm - 新增:QueryWrapper 添加取相反数的 SQL 构建,感谢 @Suomm diff --git a/docs/zh/changes.md b/docs/zh/changes.md index 5606ce1f..80a725e4 100644 --- a/docs/zh/changes.md +++ b/docs/zh/changes.md @@ -3,6 +3,13 @@ 查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。 +## v1.7.5 20231124: +- 修复:主键 ID 当传入空字符串时,调用 `insert` 方法不会依据 `@Id` 自动生成主键 id 的问题 +- 修复:`FlexTransactionManager` 空指针异常的问题 +- 修复:`@ColumnMask`,`typeHandler` 一起使用时冲突导致 `@ColumnMask` 不生效的问题 + + + ## v1.7.4 20231120: - 新增:QueryMethods 添加 bracket 在极特殊场景下用于构建括号的支持,感谢 @Suomm - 新增:QueryWrapper 添加取相反数的 SQL 构建,感谢 @Suomm diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md index 8b2e76ae..8789af75 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.7.4 + 1.7.5 com.mysql diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index 0a08e042..db774a97 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.7.4") + implementation("com.mybatis-flex:mybatis-flex-core:1.7.5") } ``` @@ -18,7 +18,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-core:1.7.4' + implementation 'com.mybatis-flex:mybatis-flex-core:1.7.5' } ``` @@ -28,7 +28,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring:1.7.4") + implementation("com.mybatis-flex:mybatis-flex-spring:1.7.5") } ``` @@ -36,7 +36,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring:1.7.4' + implementation 'com.mybatis-flex:mybatis-flex-spring:1.7.5' } ``` @@ -46,7 +46,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.4") + implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.5") } ``` @@ -54,7 +54,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.4' + implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.5' } ``` @@ -70,7 +70,7 @@ dependencies { ```kotlin dependencies { - annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.7.4") + annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.7.5") } ``` @@ -78,6 +78,6 @@ dependencies { ```groovy dependencies { - annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.7.4' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.7.5' } ``` diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md index 5e3df090..2c3714fe 100644 --- a/docs/zh/intro/maven.md +++ b/docs/zh/intro/maven.md @@ -12,12 +12,12 @@ com.mybatis-flex mybatis-flex-core - 1.7.4 + 1.7.5 com.mybatis-flex mybatis-flex-processor - 1.7.4 + 1.7.5 provided ``` @@ -28,12 +28,12 @@ com.mybatis-flex mybatis-flex-spring - 1.7.4 + 1.7.5 com.mybatis-flex mybatis-flex-processor - 1.7.4 + 1.7.5 provided `````` @@ -44,12 +44,12 @@ com.mybatis-flex mybatis-flex-spring-boot-starter - 1.7.4 + 1.7.5 com.mybatis-flex mybatis-flex-processor - 1.7.4 + 1.7.5 provided ``` @@ -72,7 +72,7 @@ com.mybatis-flex mybatis-flex-processor - 1.7.4 + 1.7.5 diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md index 3bc6695b..0e114b2a 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.7.4' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.7.5' } ``` diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md index 8241d501..65a99eec 100644 --- a/docs/zh/others/codegen.md +++ b/docs/zh/others/codegen.md @@ -10,7 +10,7 @@ com.mybatis-flex mybatis-flex-codegen - 1.7.4 + 1.7.5 ``` diff --git a/pom.xml b/pom.xml index b7b3c655..e268bb4b 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.mybatis-flex parent pom - 1.7.4 + 1.7.5 mybatis-flex https://mybatis-flex.com @@ -55,7 +55,7 @@ 8 8 - 1.7.4 + 1.7.5 3.5.13 2.1.0