升级 mybatis-spring 3.0.4

This commit is contained in:
nieqiurong 2024-08-12 15:58:36 +08:00
parent f30bb23af8
commit 33e471c985
3 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
- fix: 修复逻辑删除填充与乐观锁冲突 - fix: 修复逻辑删除填充与乐观锁冲突
- fix: 修复IllegalSQLInnerInterceptor分析嵌套count语句错误 - fix: 修复IllegalSQLInnerInterceptor分析嵌套count语句错误
- fix: 升级jsqlParser5.0解决 for update 语句错误 - fix: 升级jsqlParser5.0解决 for update 语句错误
- fix: 修复处自增自减负数情况导致jsqlParser解析优化错误
- opt: Page属性访问调整为private,重写toString方法 - opt: Page属性访问调整为private,重写toString方法
- opt: 主键生成策略(uuid)不支持的类型打印警告日志 - opt: 主键生成策略(uuid)不支持的类型打印警告日志
- opt: MybatisPlusException转化为PersistenceException子类 - opt: MybatisPlusException转化为PersistenceException子类
@ -14,6 +15,7 @@
- feat: 升级kotlin2.0.0 - feat: 升级kotlin2.0.0
- feat: 升级SpringBoot3.3.2 - feat: 升级SpringBoot3.3.2
- feat: 升级fastjson2.0.52 - feat: 升级fastjson2.0.52
- feat: 升级mybatis-spring3.0.4
- feat: 升级spring-cloud-commons4.1.4 - feat: 升级spring-cloud-commons4.1.4
- feat: 部分支持依赖升级更新 - feat: 部分支持依赖升级更新
- feat: 支持GoldenDB数据库 - feat: 支持GoldenDB数据库

View File

@ -4,7 +4,7 @@ compileJava {
dependencies { dependencies {
api project(":mybatis-plus") api project(":mybatis-plus")
api "org.mybatis:mybatis-spring:3.0.3" api "org.mybatis:mybatis-spring:3.0.4"
api project(":spring-boot-starter:mybatis-plus-spring-boot-autoconfigure") api project(":spring-boot-starter:mybatis-plus-spring-boot-autoconfigure")
implementation platform("org.springframework.boot:spring-boot-dependencies:${springBoot3Version}") implementation platform("org.springframework.boot:spring-boot-dependencies:${springBoot3Version}")
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${springBoot3Version}" annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${springBoot3Version}"

View File

@ -61,7 +61,7 @@ class GeneratePomTest {
Assertions.assertEquals("import", bom.getScope()); Assertions.assertEquals("import", bom.getScope());
Assertions.assertFalse(bom.isOptional()); Assertions.assertFalse(bom.isOptional());
Assertions.assertEquals(dependenciesMap.get("spring-cloud-commons").getVersion(), "4.1.4"); Assertions.assertEquals(dependenciesMap.get("spring-cloud-commons").getVersion(), "4.1.4");
Assertions.assertEquals(dependenciesMap.get("mybatis-spring").getVersion(), "3.0.3"); Assertions.assertEquals(dependenciesMap.get("mybatis-spring").getVersion(), "3.0.4");
Assertions.assertEquals(dependenciesMap.get("spring-boot-dependencies").getVersion(), "3.3.2"); Assertions.assertEquals(dependenciesMap.get("spring-boot-dependencies").getVersion(), "3.3.2");
} }
} }