diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml
index e6447795..4d9d2c8f 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.6,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues)
+ - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.7.7,并已搜索过现有的问题 (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 0a8e8361..553d630b 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.6,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues)
+ - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.7.7,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues)
required: true
- type: textarea
id: question-description
diff --git a/changes.md b/changes.md
index 4e249f93..32dedbc1 100644
--- a/changes.md
+++ b/changes.md
@@ -2,6 +2,22 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
+
+## v1.7.7 20240104:
+- 新增:添加 spring-boot3 新模块,用于 springboot v3 下使用,感谢 @Suomm
+- 新增:QueryMethods 添加 NOT (column) 函数,感谢 @wittplus
+- 优化:更新 Solon 下的 @ProxyComponent 为 @Component,感谢 @citysoft
+- 优化:修改 com.mybatisflex.annotation.SetListener 的注释错误,感谢 @whzzone
+- 优化:修改 GBase_8s 数据库类型 sql 语句无反义处理
+- 优化:升级 MyBatis 到 3.5.15 最新版本 #I8PQLC
+- 修复:IService.getOne 没有添加 limit 1 的问题
+- 修复:Db.updateEntitiesBatch 更新部分字段时报错的问题,感谢 @617054137
+- 文档:更新在 Kotlin 下使用的相关文档,感谢 @kamo-sama
+- 文档:优化示例代码提交语言标识,感谢 @bf109f
+- 文档:更新存在一个为 is_deleted 的字段中拼写错误,感谢 @shuangtao
+
+
+
## v1.7.6 20231223:
- 新增:Db.selectFirstAndSecondColumnsAsMap 方法:查询结果的第一列作为 key,第二列作为 value,感谢 @617054137
- 新增:方言添加添加权限处理统一入口 prepareAuth,感谢 @bf109f
diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md
index 5c127c90..50ce0a36 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.6
+ 1.7.7
com.mysql
diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md
index 284de463..c46d186f 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.6")
+ implementation("com.mybatis-flex:mybatis-flex-core:1.7.7")
}
```
@@ -18,7 +18,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-core:1.7.6'
+ implementation 'com.mybatis-flex:mybatis-flex-core:1.7.7'
}
```
@@ -28,7 +28,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring:1.7.6")
+ implementation("com.mybatis-flex:mybatis-flex-spring:1.7.7")
}
```
@@ -36,7 +36,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring:1.7.6'
+ implementation 'com.mybatis-flex:mybatis-flex-spring:1.7.7'
}
```
@@ -46,7 +46,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.6")
+ implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.7")
}
```
@@ -54,7 +54,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.6'
+ implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.7.7'
}
```
@@ -70,7 +70,7 @@ dependencies {
```kotlin
dependencies {
- annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.7.6")
+ annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.7.7")
}
```
@@ -78,6 +78,6 @@ dependencies {
```groovy
dependencies {
- annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.7.6'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.7.7'
}
```
diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md
index 84ac8455..297a0a3a 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.6
+ 1.7.7
com.mybatis-flex
mybatis-flex-processor
- 1.7.6
+ 1.7.7
provided
```
@@ -28,12 +28,12 @@
com.mybatis-flex
mybatis-flex-spring
- 1.7.6
+ 1.7.7
com.mybatis-flex
mybatis-flex-processor
- 1.7.6
+ 1.7.7
provided
``````
@@ -44,12 +44,12 @@
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.7.6
+ 1.7.7
com.mybatis-flex
mybatis-flex-processor
- 1.7.6
+ 1.7.7
provided
```
@@ -72,7 +72,7 @@
com.mybatis-flex
mybatis-flex-processor
- 1.7.6
+ 1.7.7
diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md
index 9c056bd9..213f7222 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.6'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.7.7'
}
```
diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md
index 48d9d28d..a0643150 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.6
+ 1.7.7
```
diff --git a/mybatis-flex-annotation/pom.xml b/mybatis-flex-annotation/pom.xml
index f1612b12..4bd5cad8 100644
--- a/mybatis-flex-annotation/pom.xml
+++ b/mybatis-flex-annotation/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/mybatis-flex-codegen/pom.xml b/mybatis-flex-codegen/pom.xml
index 53600f03..96e560be 100644
--- a/mybatis-flex-codegen/pom.xml
+++ b/mybatis-flex-codegen/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
@@ -23,7 +23,7 @@
com.mybatis-flex
mybatis-flex-core
- 1.7.6
+ 1.7.7
com.mybatis-flex
diff --git a/mybatis-flex-core/pom.xml b/mybatis-flex-core/pom.xml
index 0d005352..b46bc50e 100644
--- a/mybatis-flex-core/pom.xml
+++ b/mybatis-flex-core/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
@@ -101,7 +101,7 @@
com.mybatis-flex
mybatis-flex-annotation
- 1.7.6
+ 1.7.7
compile
diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java
index fb20d428..feaa5ea4 100644
--- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java
+++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java
@@ -27,7 +27,7 @@ public class FlexConsts {
}
public static final String NAME = "MyBatis-Flex";
- public static final String VERSION = "1.7.6";
+ public static final String VERSION = "1.7.7";
public static final String SQL = "$$sql";
diff --git a/mybatis-flex-dependencies/pom.xml b/mybatis-flex-dependencies/pom.xml
index c6b33349..703b23d9 100644
--- a/mybatis-flex-dependencies/pom.xml
+++ b/mybatis-flex-dependencies/pom.xml
@@ -6,7 +6,7 @@
com.mybatis-flex
parent
- 1.7.6
+ 1.7.7
mybatis-flex-dependencies
diff --git a/mybatis-flex-processor/pom.xml b/mybatis-flex-processor/pom.xml
index 94005f6f..d21bc5a6 100644
--- a/mybatis-flex-processor/pom.xml
+++ b/mybatis-flex-processor/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
@@ -22,7 +22,7 @@
com.mybatis-flex
mybatis-flex-annotation
- 1.7.6
+ 1.7.7
diff --git a/mybatis-flex-solon-plugin/pom.xml b/mybatis-flex-solon-plugin/pom.xml
index ad1d44d9..aa86d233 100644
--- a/mybatis-flex-solon-plugin/pom.xml
+++ b/mybatis-flex-solon-plugin/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/mybatis-flex-spring-boot-starter/pom.xml b/mybatis-flex-spring-boot-starter/pom.xml
index a7006f00..a67ad2f0 100644
--- a/mybatis-flex-spring-boot-starter/pom.xml
+++ b/mybatis-flex-spring-boot-starter/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
@@ -23,7 +23,7 @@
com.mybatis-flex
mybatis-flex-spring
- 1.7.6
+ 1.7.7
@@ -104,7 +104,7 @@
com.mybatis-flex
mybatis-flex-core
- 1.7.6
+ 1.7.7
diff --git a/mybatis-flex-spring-boot3-starter/pom.xml b/mybatis-flex-spring-boot3-starter/pom.xml
index 0262ebde..fa81e211 100644
--- a/mybatis-flex-spring-boot3-starter/pom.xml
+++ b/mybatis-flex-spring-boot3-starter/pom.xml
@@ -6,14 +6,12 @@
com.mybatis-flex
parent
- 1.7.6
+ 1.7.7
mybatis-flex-spring-boot3-starter
- 17
- 17
UTF-8
@@ -21,7 +19,7 @@
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.7.6
+ 1.7.7
org.mybatis
diff --git a/mybatis-flex-spring/pom.xml b/mybatis-flex-spring/pom.xml
index 9cb19cef..77b2367a 100644
--- a/mybatis-flex-spring/pom.xml
+++ b/mybatis-flex-spring/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
@@ -22,7 +22,7 @@
com.mybatis-flex
mybatis-flex-core
- 1.7.6
+ 1.7.7
diff --git a/mybatis-flex-test/mybatis-flex-native-test/pom.xml b/mybatis-flex-test/mybatis-flex-native-test/pom.xml
index 80ac5708..ff522064 100644
--- a/mybatis-flex-test/mybatis-flex-native-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-native-test/pom.xml
@@ -5,7 +5,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-seata-test/pom.xml b/mybatis-flex-test/mybatis-flex-seata-test/pom.xml
index ef485c68..59bc0f72 100644
--- a/mybatis-flex-test/mybatis-flex-seata-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-seata-test/pom.xml
@@ -4,7 +4,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml b/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml
index 18cff34c..cd0d5a91 100644
--- a/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml
@@ -5,7 +5,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml b/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml
index fe713334..01b7618a 100644
--- a/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml
@@ -4,7 +4,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-spring-test/pom.xml b/mybatis-flex-test/mybatis-flex-spring-test/pom.xml
index 6467bf97..bae84b63 100644
--- a/mybatis-flex-test/mybatis-flex-spring-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-spring-test/pom.xml
@@ -5,7 +5,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/mybatis-flex-test/pom.xml b/mybatis-flex-test/pom.xml
index 9b5af1ee..38eac0b5 100644
--- a/mybatis-flex-test/pom.xml
+++ b/mybatis-flex-test/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.7.6
+ 1.7.7
4.0.0
diff --git a/pom.xml b/pom.xml
index 5305d946..45f4c3bd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
com.mybatis-flex
parent
pom
- 1.7.6
+ 1.7.7
mybatis-flex
https://mybatis-flex.com
@@ -56,7 +56,7 @@
8
8
- 1.7.6
+ 1.7.7
3.5.15
2.1.2