mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
build: v1.6.3 release (^.^)YYa!!
This commit is contained in:
parent
09f35cfbd5
commit
57fe9ae4cf
@ -3,6 +3,11 @@
|
|||||||
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
|
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
|
||||||
|
|
||||||
|
|
||||||
|
## v1.6.3 20230901:
|
||||||
|
- 修复:紧急修复 v1.6.2 分页查询无法查询数据列表的问题
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## v1.6.2 20230831:
|
## v1.6.2 20230831:
|
||||||
- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
|
- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
|
||||||
- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
|
- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
|
||||||
|
|||||||
@ -3,6 +3,11 @@
|
|||||||
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
|
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
|
||||||
|
|
||||||
|
|
||||||
|
## v1.6.3 20230901:
|
||||||
|
- 修复:紧急修复 v1.6.2 分页查询无法查询数据列表的问题
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## v1.6.2 20230831:
|
## v1.6.2 20230831:
|
||||||
- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
|
- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
|
||||||
- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
|
- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
|
||||||
|
|||||||
@ -62,7 +62,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mysql</groupId>
|
<groupId>com.mysql</groupId>
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("com.mybatis-flex:mybatis-flex-core:1.6.2")
|
implementation("com.mybatis-flex:mybatis-flex-core:1.6.3")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ dependencies {
|
|||||||
|
|
||||||
```groovy
|
```groovy
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.mybatis-flex:mybatis-flex-core:1.6.2'
|
implementation 'com.mybatis-flex:mybatis-flex-core:1.6.3'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ dependencies {
|
|||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("com.mybatis-flex:mybatis-flex-spring:1.6.2")
|
implementation("com.mybatis-flex:mybatis-flex-spring:1.6.3")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ dependencies {
|
|||||||
|
|
||||||
```groovy
|
```groovy
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.2'
|
implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.3'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -46,7 +46,7 @@ dependencies {
|
|||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.2")
|
implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.3")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ dependencies {
|
|||||||
|
|
||||||
```groovy
|
```groovy
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.2'
|
implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.3'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -70,7 +70,7 @@ dependencies {
|
|||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
dependencies {
|
dependencies {
|
||||||
annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.2")
|
annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.3")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -78,6 +78,6 @@ dependencies {
|
|||||||
|
|
||||||
```groovy
|
```groovy
|
||||||
dependencies {
|
dependencies {
|
||||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.2'
|
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.3'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@ -12,12 +12,12 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-core</artifactId>
|
<artifactId>mybatis-flex-core</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-processor</artifactId>
|
<artifactId>mybatis-flex-processor</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
@ -28,12 +28,12 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-spring</artifactId>
|
<artifactId>mybatis-flex-spring</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-processor</artifactId>
|
<artifactId>mybatis-flex-processor</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
``````
|
``````
|
||||||
@ -44,12 +44,12 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-processor</artifactId>
|
<artifactId>mybatis-flex-processor</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
@ -72,7 +72,7 @@
|
|||||||
<path>
|
<path>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-processor</artifactId>
|
<artifactId>mybatis-flex-processor</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
</path>
|
</path>
|
||||||
</annotationProcessorPaths>
|
</annotationProcessorPaths>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
@ -220,7 +220,7 @@ pom.xml 添加 `annotationProcessorPaths` 配置,
|
|||||||
```
|
```
|
||||||
dependencies {
|
dependencies {
|
||||||
...
|
...
|
||||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.2'
|
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.3'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-codegen</artifactId>
|
<artifactId>mybatis-flex-codegen</artifactId>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@ -7,7 +7,7 @@
|
|||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>1.6.2</version>
|
<version>1.6.3</version>
|
||||||
|
|
||||||
<name>mybatis-flex</name>
|
<name>mybatis-flex</name>
|
||||||
<url>https://mybatis-flex.com</url>
|
<url>https://mybatis-flex.com</url>
|
||||||
@ -55,7 +55,7 @@
|
|||||||
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.source>8</maven.compiler.source>
|
||||||
<maven.compiler.target>8</maven.compiler.target>
|
<maven.compiler.target>8</maven.compiler.target>
|
||||||
|
|
||||||
<mybatis-flex.version>1.6.2</mybatis-flex.version>
|
<mybatis-flex.version>1.6.3</mybatis-flex.version>
|
||||||
|
|
||||||
<mybatis.version>3.5.13</mybatis.version>
|
<mybatis.version>3.5.13</mybatis.version>
|
||||||
<mybatis-spring.version>2.1.0</mybatis-spring.version>
|
<mybatis-spring.version>2.1.0</mybatis-spring.version>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user