Skip to content

Bump com.baomidou:mybatis-plus-core from 3.5.4.1 to 3.5.14#72

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/gradle/com.baomidou-mybatis-plus-core-3.5.14
Open

Bump com.baomidou:mybatis-plus-core from 3.5.4.1 to 3.5.14#72
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/gradle/com.baomidou-mybatis-plus-core-3.5.14

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Aug 29, 2025

Bumps com.baomidou:mybatis-plus-core from 3.5.4.1 to 3.5.14.

Release notes

Sourced from com.baomidou:mybatis-plus-core's releases.

v3.5.14

  • feat: 增加bommybatis-plus-spring-boot4-startermybatis-plus-spring-boot4-starter-test管理

v3.5.13

  • fix: 修复在Spring中使用@PostConstruct调用Db方法查询出现警告日志
  • fix: 修复Db使用count返回null导致的空指针异常
  • fix: 修复BaseMapper在非Spring项目中报错
  • feat: 升级Jsqlparser5.2
  • feat: OrderItem增加withExpression根据表达式排序(注意:不支持序列化方式使用,自行控制sql注入)
  • feat: OracleDdlGenerator支持指定schema模式运行
  • feat: 适配华为云GaussDb数据库
  • feat: 雪花生成器初始化错误增加降级处理
  • feat: 新增spring-boot4支持
  • feat: 升级gradle8.13
  • opt: SqlUtilsreplaceSqlPlaceholder方法增加缓存处理
  • opt:优化DDL执行记录表检查是否存在
  • opt: 容器环境下workerId获取优化

v3.5.12

  • fix: 修复批量操作异步执行首次可能的出现NoSuchElementException错误
  • fix: 修复默认SQL解析线程池在JVM退出关闭导致的任务拒绝
  • fix: 修复entity.java.btl生成toString方法样式错误
  • fix: 修复entity.java.ftl模板类注释与导包缺少换行
  • opt: 重构SqlRunner执行SQL语句 (动态传参,不再根据参数值生成执行SQL)
  • opt: 增强SqlRunner执行(支持单参数使用Map({key}),List({index}),JavaBean({property})获取值)
  • opt: 改进MybatisUtils对自SqlSessionFactory的提取(支持自定义SqlSessionTemplate子类)
  • opt: 自动识别数据库支持TDengine数据库websocket连接
  • opt: 支持Db工具类对多数据源的支持
  • opt: 优化MapperProxy属性访问
  • opt: CompatibleSet接口增加getBeangetProxyTargetObject方法
  • opt: CompatibleSetCompatibleHelper调整至com.baomidou.mybatisplus.core.spi包之中
  • opt: 支持手动指定CompatibleSet实现
  • opt: 代码生成器处理驱动返回索引信息null
  • opt: 代码生成器处理PRIMARY_KEY_为开头的主键索引情况
  • opt: 去除entity.kt.btl模板@Override注解
  • opt: 解决serviceImpl.java.ej生成格式不统一
  • opt: 去除mapper.java.ftl多余的换行生成
  • opt: 去除entity.kt.vm,entity.kt.ej,entity.kt.btl导包结束分隔符
  • opt: 去除controller.java.ej,controller.java.vm多余的换行
  • opt: 去除entity.kt.btl生成属性多余的空格
  • opt: 统一entity.java.btl,entity.java.ej,entity.java.ftl,entity.java.vm 生成的toString方法样式

v3.5.11

  • fix: 修复代码生成器链式模型非lombok下生成了@Accessors注解
  • fix: 修复主键使用UUID执行批量删除错
  • fix: 修复Kotlin使用select(predicate)方法错误
  • fix: 修复AbstractCaffeineJsqlParseCache异步产生的错误
  • fix: 修复动态SQL解析包含SQL注释(--或#)导致的合并错误 (动态脚本语句不再处理换行,如果需要去除换行请自行处理)
  • fix: 修复DataChangeRecorderInnerInterceptor数据比较出现强转异常
  • fix: 修复IllegalSQLInnerInterceptor拦截插件获取catalogschema错误

... (truncated)

Changelog

Sourced from com.baomidou:mybatis-plus-core's changelog.

[v3.5.14] 2025.08.29

  • feat: 增加bommybatis-plus-spring-boot4-startermybatis-plus-spring-boot4-starter-test管理

[v3.5.13] 2025.08.29

  • fix: 修复在Spring中使用@PostConstruct调用Db方法查询出现警告日志
  • fix: 修复Db使用count返回null导致的空指针异常
  • fix: 修复BaseMapper在非Spring项目中报错
  • feat: 升级Jsqlparser5.2
  • feat: OrderItem增加withExpression根据表达式排序(注意:不支持序列化方式使用,自行控制sql注入)
  • feat: OracleDdlGenerator支持指定schema模式运行
  • feat: 适配华为云GaussDb数据库
  • feat: 雪花生成器初始化错误增加降级处理
  • feat: 新增spring-boot4支持
  • feat: 升级gradle8.13
  • opt: SqlUtilsreplaceSqlPlaceholder方法增加缓存处理
  • opt:优化DDL执行记录表检查是否存在
  • opt: 容器环境下workerId获取优化

[v3.5.12] 2025.04.27

  • fix: 修复批量操作异步执行首次可能的出现NoSuchElementException错误
  • fix: 修复默认SQL解析线程池在JVM退出关闭导致的任务拒绝
  • fix: 修复entity.java.btl生成toString方法样式错误
  • fix: 修复entity.java.ftl模板类注释与导包缺少换行
  • opt: 重构SqlRunner执行SQL语句 (动态传参,不再根据参数值生成执行SQL)
  • opt: 增强SqlRunner执行(支持单参数使用Map({key}),List({index}),JavaBean({property})获取值)
  • opt: 改进MybatisUtils对自SqlSessionFactory的提取(支持自定义SqlSessionTemplate子类)
  • opt: 自动识别数据库支持TDengine数据库websocket连接
  • opt: 支持Db工具类对多数据源的支持
  • opt: 优化MapperProxy属性访问
  • opt: CompatibleSet接口增加getBeangetProxyTargetObject方法
  • opt: CompatibleSetCompatibleHelper调整至com.baomidou.mybatisplus.core.spi包之中
  • opt: 支持手动指定CompatibleSet实现
  • opt: 代码生成器处理驱动返回索引信息null
  • opt: 代码生成器处理PRIMARY_KEY_为开头的主键索引情况
  • opt: 去除entity.kt.btl模板@Override注解
  • opt: 解决serviceImpl.java.ej生成格式不统一
  • opt: 去除mapper.java.ftl多余的换行生成
  • opt: 去除entity.kt.vm,entity.kt.ej,entity.kt.btl导包结束分隔符
  • opt: 去除controller.java.ej,controller.java.vm多余的换行
  • opt: 去除entity.kt.btl生成属性多余的空格
  • opt: 统一entity.java.btl,entity.java.ej,entity.java.ftl,entity.java.vm 生成的toString方法样式

[v3.5.11] 2025.03.23

  • fix: 修复代码生成器链式模型非lombok下生成了@Accessors注解
  • fix: 修复主键使用UUID执行批量删除错
  • fix: 修复Kotlin使用select(predicate)方法错误
  • fix: 修复AbstractCaffeineJsqlParseCache异步产生的错误
  • fix: 修复动态SQL解析包含SQL注释(--或#)导致的合并错误 (动态脚本语句不再处理换行,如果需要去除换行请自行处理)
  • fix: 修复DataChangeRecorderInnerInterceptor数据比较出现强转异常
  • fix: 修复IllegalSQLInnerInterceptor拦截插件获取catalogschema错误

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [com.baomidou:mybatis-plus-core](https://github.com/baomidou/mybatis-plus) from 3.5.4.1 to 3.5.14.
- [Release notes](https://github.com/baomidou/mybatis-plus/releases)
- [Changelog](https://github.com/baomidou/mybatis-plus/blob/3.0/CHANGELOG.md)
- [Commits](baomidou/mybatis-plus@v3.5.4.1...v3.5.14)

---
updated-dependencies:
- dependency-name: com.baomidou:mybatis-plus-core
  dependency-version: 3.5.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Aug 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants