build: v1.6.4 release (^.^)YYa!!

This commit is contained in:
开源海哥 2023-09-03 19:05:18 +08:00
parent 9d27915544
commit ba2b8a0900
8 changed files with 38 additions and 20 deletions

View File

@ -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 分页查询无法查询数据列表的问题

View File

@ -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 分页查询无法查询数据列表的问题

View File

@ -62,7 +62,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>

View File

@ -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'
}
```

View File

@ -12,12 +12,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
<scope>provided</scope>
</dependency>
```
@ -28,12 +28,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
<scope>provided</scope>
</dependency>
``````
@ -44,12 +44,12 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
<scope>provided</scope>
</dependency>
```
@ -72,7 +72,7 @@
<path>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-processor</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
</path>
</annotationProcessorPaths>
</configuration>

View File

@ -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'
}
```

View File

@ -10,7 +10,7 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-codegen</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
</dependency>
```

View File

@ -7,7 +7,7 @@
<groupId>com.mybatis-flex</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.6.3</version>
<version>1.6.4</version>
<name>mybatis-flex</name>
<url>https://mybatis-flex.com</url>
@ -55,7 +55,7 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<mybatis-flex.version>1.6.3</mybatis-flex.version>
<mybatis-flex.version>1.6.4</mybatis-flex.version>
<mybatis.version>3.5.13</mybatis.version>
<mybatis-spring.version>2.1.0</mybatis-spring.version>