Skip to content

Commit

Permalink
升级 mybatis-spring 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nieqiurong committed Aug 12, 2024
1 parent f30bb23 commit 33e471c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelog-temp.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- fix: 修复逻辑删除填充与乐观锁冲突
- fix: 修复IllegalSQLInnerInterceptor分析嵌套count语句错误
- fix: 升级jsqlParser5.0解决 for update 语句错误
- fix: 修复处自增自减负数情况导致jsqlParser解析优化错误
- opt: Page属性访问调整为private,重写toString方法
- opt: 主键生成策略(uuid)不支持的类型打印警告日志
- opt: MybatisPlusException转化为PersistenceException子类
Expand All @@ -14,6 +15,7 @@
- feat: 升级kotlin2.0.0
- feat: 升级SpringBoot3.3.2
- feat: 升级fastjson2.0.52
- feat: 升级mybatis-spring3.0.4
- feat: 升级spring-cloud-commons4.1.4
- feat: 部分支持依赖升级更新
- feat: 支持GoldenDB数据库
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ compileJava {

dependencies {
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")
implementation platform("org.springframework.boot:spring-boot-dependencies:${springBoot3Version}")
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${springBoot3Version}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void test() throws IOException {
Assertions.assertEquals("import", bom.getScope());
Assertions.assertFalse(bom.isOptional());
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");
}
}
Expand Down

0 comments on commit 33e471c

Please sign in to comment.