mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
build: v1.6.1 release (^.^)YYa!!
This commit is contained in:
parent
48a295707e
commit
7c9d4efe5b
15
changes.md
15
changes.md
@ -1,5 +1,20 @@
|
||||
# MyBatis-Flex ChangeLog
|
||||
|
||||
|
||||
## v1.6.1 20230827:
|
||||
- 新增:添加 QueryWrapper.create(entity,SqlOperators) 支持通过 Entity 转换为 QueryWrapper
|
||||
- 优化:移动 SqlConnector 的包名
|
||||
- 优化:优化 IService.exists() 的效率,感谢 @Suomm
|
||||
- 修复:开启 mapUnderscoreToCamelCase = true 时, row 无法转换 entity 的问题
|
||||
- 修复:使用 QueryColumn 无法构建 UPDATE SET 语句,感谢 @Suomm
|
||||
- 修复:UpdateChain 不支持 @EnumValue 注解的问题,感谢 @Suomm
|
||||
- 文档:添加 Entity 转换为 QueryWrapper 的相关文档
|
||||
- 文档:添加 `@Column(isLarge = true)` 的其他使用方式,感谢 @Suomm
|
||||
- 文档:优化 `@Column` 注解的一些错误描述,感谢 @Suomm
|
||||
- 文档:添加关于 QueryColumnBehavior 配置的相关文档,感谢 @Suomm
|
||||
|
||||
|
||||
|
||||
## v1.6.0 20230825:
|
||||
- 新增:添加 RelationManager.addQueryRelations() 方法用于只查询部分关联字段
|
||||
- 优化:重构移除已经标识删除的方法或类 !!!破坏性更新
|
||||
|
||||
@ -1,5 +1,20 @@
|
||||
# MyBatis-Flex ChangeLog
|
||||
|
||||
|
||||
## v1.6.1 20230827:
|
||||
- 新增:添加 QueryWrapper.create(entity,SqlOperators) 支持通过 Entity 转换为 QueryWrapper
|
||||
- 优化:移动 SqlConnector 的包名
|
||||
- 优化:优化 IService.exists() 的效率,感谢 @Suomm
|
||||
- 修复:开启 mapUnderscoreToCamelCase = true 时, row 无法转换 entity 的问题
|
||||
- 修复:使用 QueryColumn 无法构建 UPDATE SET 语句,感谢 @Suomm
|
||||
- 修复:UpdateChain 不支持 @EnumValue 注解的问题,感谢 @Suomm
|
||||
- 文档:添加 Entity 转换为 QueryWrapper 的相关文档
|
||||
- 文档:添加 `@Column(isLarge = true)` 的其他使用方式,感谢 @Suomm
|
||||
- 文档:优化 `@Column` 注解的一些错误描述,感谢 @Suomm
|
||||
- 文档:添加关于 QueryColumnBehavior 配置的相关文档,感谢 @Suomm
|
||||
|
||||
|
||||
|
||||
## v1.6.0 20230825:
|
||||
- 新增:添加 RelationManager.addQueryRelations() 方法用于只查询部分关联字段
|
||||
- 优化:重构移除已经标识删除的方法或类 !!!破坏性更新
|
||||
|
||||
@ -51,7 +51,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.mysql</groupId>
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
```kotlin
|
||||
dependencies {
|
||||
implementation("com.mybatis-flex:mybatis-flex-core:1.6.0")
|
||||
implementation("com.mybatis-flex:mybatis-flex-core:1.6.1")
|
||||
}
|
||||
```
|
||||
|
||||
@ -18,7 +18,7 @@ dependencies {
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'com.mybatis-flex:mybatis-flex-core:1.6.0'
|
||||
implementation 'com.mybatis-flex:mybatis-flex-core:1.6.1'
|
||||
}
|
||||
```
|
||||
|
||||
@ -28,7 +28,7 @@ dependencies {
|
||||
|
||||
```kotlin
|
||||
dependencies {
|
||||
implementation("com.mybatis-flex:mybatis-flex-spring:1.6.0")
|
||||
implementation("com.mybatis-flex:mybatis-flex-spring:1.6.1")
|
||||
}
|
||||
```
|
||||
|
||||
@ -36,7 +36,7 @@ dependencies {
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.0'
|
||||
implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.1'
|
||||
}
|
||||
```
|
||||
|
||||
@ -46,7 +46,7 @@ dependencies {
|
||||
|
||||
```kotlin
|
||||
dependencies {
|
||||
implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.0")
|
||||
implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.1")
|
||||
}
|
||||
```
|
||||
|
||||
@ -54,7 +54,7 @@ dependencies {
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.0'
|
||||
implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.1'
|
||||
}
|
||||
```
|
||||
|
||||
@ -70,7 +70,7 @@ dependencies {
|
||||
|
||||
```kotlin
|
||||
dependencies {
|
||||
annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.0")
|
||||
annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.1")
|
||||
}
|
||||
```
|
||||
|
||||
@ -78,6 +78,6 @@ dependencies {
|
||||
|
||||
```groovy
|
||||
dependencies {
|
||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.0'
|
||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.1'
|
||||
}
|
||||
```
|
||||
|
||||
@ -12,12 +12,12 @@
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-core</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-processor</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
```
|
||||
@ -28,12 +28,12 @@
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-spring</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-processor</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</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.0</version>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-processor</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
```
|
||||
@ -72,7 +72,7 @@
|
||||
<path>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-processor</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
</path>
|
||||
</annotationProcessorPaths>
|
||||
</configuration>
|
||||
|
||||
@ -220,7 +220,7 @@ pom.xml 添加 `annotationProcessorPaths` 配置,
|
||||
```
|
||||
dependencies {
|
||||
...
|
||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:<version>1.6.0</version>'
|
||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:<version>1.6.1</version>'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-codegen</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
||||
4
pom.xml
4
pom.xml
@ -7,7 +7,7 @@
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</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.0</mybatis-flex.version>
|
||||
<mybatis-flex.version>1.6.1</mybatis-flex.version>
|
||||
|
||||
<mybatis.version>3.5.13</mybatis.version>
|
||||
<mybatis-spring.version>2.1.0</mybatis-spring.version>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user