Skip to content

Bump the gradle-minor-and-patch group across 1 directory with 12 updates - #27

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-minor-and-patch-d1d1ed668e
Open

Bump the gradle-minor-and-patch group across 1 directory with 12 updates#27
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-minor-and-patch-d1d1ed668e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown

Bumps the gradle-minor-and-patch group with 9 updates in the / directory:

Package From To
org.springframework.boot:spring-boot-dependencies 3.5.7 3.5.16
com.microsoft.playwright:playwright 1.51.0 1.62.0
com.baomidou:mybatis-plus-spring-boot3-starter 3.5.9 3.5.17
org.xerial:sqlite-jdbc 3.45.1.0 3.53.2.1
org.freemarker:freemarker 2.3.32 2.3.34
io.github.cdimascio:dotenv-java 2.2.0 2.3.2
org.apache.pdfbox:pdfbox 3.0.3 3.0.8
org.projectlombok:lombok 1.18.42 1.18.46
gradle-wrapper 9.2.0 9.7.0

Updates org.springframework.boot:spring-boot-dependencies from 3.5.7 to 3.5.16

Release notes

Sourced from org.springframework.boot:spring-boot-dependencies's releases.

v3.5.16

🔨 Dependency Upgrades

v3.5.15

🐞 Bug Fixes

  • Artemis auto-configuration uses a predictable default location for the embedded broker's data #50743
  • MailSender auto-configuration does not enable hostname verification #50742
  • SSL should not be enabled when a SSL bundle is overridden to an empty string #50624
  • Layer written outside the output location of '//' exception is thrown when using extract layers in root directory #50501
  • Docker Compose support does not restore thread interrupt flag when catching InterruptedException #50451
  • RabbitProperties enables SSL even when spring.rabbitmq.ssl.bundle is overridden to an empty string #50429
  • GraphQL WebSocket support does not configure allowed origins #50391
  • Buildpack module does not validate long-to-int casts #50382
  • MappingsEndpoint reports the context's own ID as parentId when a parent exists #50373
  • Created StackTracePrinter instances have no access to the Environment #50303
  • NullPointerException in reactor-netty SniProvider when SSL bundle uses client-auth or server truststore without server-name-bundles #50301
  • Spring Boot Loader Does Not Support RSA and EC Signed Jars #50292
  • ConfigurationPropertiesReportEndpoint exposes AOP proxy internals #50273
  • Actuator's '/cloudfoundryapplication' endpoint does not work if restrictive CORS configuration is provided using a bean named corsConfigurationSource #50254
  • Meter registries are not removed from the global registry when the context is closed #50235
  • ThreadPoolTaskScheduleBuilder unnecessarily loses precision when configuring await termination time #50225
  • Apply HTML escaping to timestamp attribute in Whitelabel error page #50205
  • NimbusJwtDecoder silently accepts unknown values for spring.security.oauth2.resourceserver.jwt.jws-algorithms #50118
  • EndpointRequest links matcher unnecessarily matches HTTP methods other than GET #50095

📔 Documentation

  • Fix reference to Gradle documentation for module replacement #50641
  • Remove the use of Optional from Data Neo4j repository examples #50600
  • Fix typos in documentation #50593
  • Document Java 25 requirement for AOT cache #50482
  • Clarify dependency requirement for Bean Validation support #50290
  • Document SSL reloading with Let's Encrypt #50222
  • Polish InvalidConfigurationPropertyValueException constructor javadoc #50212
  • Document known testcontainers lifecycle issues #50210
  • Document configuring multiple connectors with Jetty #50206
  • Fix typo in Spring Security OAuth2 client registration documentation #50193

🔨 Dependency Upgrades

... (truncated)

Commits
  • 0566f69 Release v3.5.16
  • 93edd16 Next development version (v3.5.16-SNAPSHOT)
  • 5bafd0a Upgrade to Spring Integration 6.5.10
  • baf3290 Upgrade to Spring AMQP 3.2.12
  • 2c5964a Upgrade to Spring Data Bom 2025.0.13
  • dbb08aa Upgrade Antora dependencies
  • 9b281d5 Upgrade to actions/checkout 7.0.0
  • a854058 Upgrade to jfrog/setup-jfrog-cli 5.1.0
  • fc236ae Start building against Spring Integration 6.5.10 snapshots
  • 5271da7 Start building against Spring Data Bom 2025.0.13 snapshots
  • Additional commits viewable in compare view

Updates com.microsoft.playwright:playwright from 1.51.0 to 1.62.0

Release notes

Sourced from com.microsoft.playwright:playwright's releases.

v1.62.0

🖼️ WebP screenshots

page.screenshot() and locator.screenshot() can now capture screenshots in the WebP format. Playwright infers the format from a .webp file extension, or you can set the type explicitly. Quality 100 (the default) is lossless, while lower values use lossy compression:

page.screenshot(new Page.ScreenshotOptions()
    .setPath(Paths.get("homepage.webp"))
    .setQuality(50));

New APIs

  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scrolling into view.
  • New locator.waitForFunction() waits until a function called with the matching element returns a truthy value.
  • New apiResponse.timing() returns resource timing information for an API response.

Announcements

  • 📋 The clipboard is now isolated from the operating system in headless mode, so tests that use navigator.clipboard no longer read or overwrite the clipboard of the machine running them.
  • ⚠️ Debian 11 is not supported anymore.

Browser Versions

  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151

v1.61.0

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

BrowserContext context = browser.newContext();
// Seed a passkey your backend provisioned for a test user.
context.credentials().create("example.com", new Credentials.CreateOptions()
.setId(credentialId)
.setUserHandle(userHandle)
.setPrivateKey(privateKey)
.setPublicKey(publicKey));
context.credentials().install();
Page page = context.newPage();
page.navigate("https://example.com/login");
// The page's navigator.credentials.get() is answered with the seeded passkey.

... (truncated)

Commits
  • ce430e3 chore(release): mark 1.62.0 (#1958)
  • d76dc9c chore(driver): cherry-pick 1.62.1 roll (#1961)
  • 7de72a6 chore(driver): roll to 1.62.0 (#1954)
  • 24a70ef chore: roll to 1.62.0-alpha-2026-07-22 (#1951)
  • 32cf6cd chore(deps): bump the actions group with 2 updates (#1945)
  • e5135db chore: Upgrade EsrpRelease task version to 11 (#1943)
  • 6234e06 feat(docker): pre-extract the driver in images to avoid /tmp unpacking (#1938)
  • 20e4edd chore: roll driver to 1.61.1 (#1941)
  • d2d29d4 feat(driver): bundle playwright-core in driver, keep only Node.js in driver-b...
  • 43d2601 fix(fetch): serialize LocalDate in post data (#1934)
  • Additional commits viewable in compare view

Updates com.baomidou:mybatis-plus-spring-boot3-starter from 3.5.9 to 3.5.17

Release notes

Sourced from com.baomidou:mybatis-plus-spring-boot3-starter's releases.

v3.5.17

  • fix: 修复 issues/6899 多租户插件 @Many 注解查无效问题
  • fix: 修复 issues/6938 HashMap 设置类型转换器异常
  • fix: 修复 issues/7081 解决拦截全表存在 schema 校验问题
  • fix: 修复 issues/6905 关于 saveOrUpdateBatch 导致 ParameterHandler 被重复执行问题
  • fix: 修复 issues/7056 支持 GraalVM Native 二进制编译问题,案例 https://gitee.com/baomidou/mybatis-plus-native-image-demo
  • fix: 修复 issues/7027 支持 JDK 9+ 模块化包重名问题,注意 mybatis-plus-spring 模块下文件包名调整
  • feat: 新增 wrapper 支持 xml 别名配置
  • feat: 新增 mybatis-plus-spring-boot-native-image 模块支持 graalvm 编译能力
  • feat: 新增 Wrapper 支持自动识别 typeHandler 类型处理器
  • feat: 新增 Wrapper 对比 eqOrIsNull 方法
  • feat: 新增 i18n 逻辑删除日期格式及自动更新填充能力
  • feat: 新增 Groovy 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 Kotlin 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 MybatisEnumTypeHandler 枚举类型处理器支持缓存处理机制
  • feat: 新增 ITableFieldMetaInfoCustomizer 代码生成器扩展属性元数据处理能力
  • opt: 优化 Sequence 减少增加上下文切换
  • opt: 优化 LambdaQueryWrapper.sqlSelect 属性修改为 protected
  • opt: 优化 sql 注入性能调整为函数方式拼接减少字符串format使用
  • opt: 优化 Cursor 游标查询一条记录能力
  • opt: 优化 format 部分修改为字符串组合
  • opt: 优化 executeBatch 根据执行影响行数返回确定结果布尔值
  • opt: 优化 TableInfo 扩展允许返回新的自定义实例对象
  • opt: 优化 IJsonTypeHandler 处理逻辑

v3.5.16

  • fix: 修复Jackson3TypeHandler自定义ObjectMapper无效
  • fix: 处理代码生成器PackageConfig指定模块为空时拼接错误
  • fix: 修复配置加密无法在环境变量中使用
  • feat: 升级SpringBoot3至3.5.9
  • feat: 升级JUnit单元测试
  • feat: 升级fastjson至2.0.60
  • feat: 升级jackson至2.20.1
  • feat: 升级gson至2.13.2
  • feat: 升级postgresql至42.7.8
  • feat: 升级h2database至2.4.240
  • feat: 升级mysql-connector-j至9.5.0
  • feat: 升级sqlite-jdbc至3.51.1.0
  • feat: 升级jaybird至5.0.10.java8
  • feat: 升级mybatis-spring4.0.0

v3.5.15

  • fix: 修复Enjoy模板生成xml错误
  • feat: 调整代码生成器元数据构建
  • feat: 优化CrudRepository批量执行前判断非事务中关闭连接
  • feat: 支持SpringBoot4.0.0
  • feat: 支持Jackson3.0

v3.5.14

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

... (truncated)

Changelog

Sourced from com.baomidou:mybatis-plus-spring-boot3-starter's changelog.

[v3.5.17] 2026.07.07

  • fix: 修复 issues/6899 多租户插件 @Many 注解查无效问题
  • fix: 修复 issues/6938 HashMap 设置类型转换器异常
  • fix: 修复 issues/7081 解决拦截全表存在 schema 校验问题
  • fix: 修复 issues/6905 关于 saveOrUpdateBatch 导致 ParameterHandler 被重复执行问题
  • fix: 修复 issues/7056 支持 GraalVM Native 二进制编译问题,案例 https://gitee.com/baomidou/mybatis-plus-native-image-demo
  • fix: 修复 issues/7027 支持 JDK 9+ 模块化包重名问题,注意 mybatis-plus-spring 模块下文件包名调整
  • feat: 新增 wrapper 支持 xml 别名配置
  • feat: 新增 mybatis-plus-spring-boot-native-image 模块支持 graalvm 编译能力
  • feat: 新增 Wrapper 支持自动识别 typeHandler 类型处理器
  • feat: 新增 Wrapper 对比 eqOrIsNull 方法
  • feat: 新增 i18n 逻辑删除日期格式及自动更新填充能力
  • feat: 新增 Groovy 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 Kotlin 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 MybatisEnumTypeHandler 枚举类型处理器支持缓存处理机制
  • feat: 新增 ITableFieldMetaInfoCustomizer 代码生成器扩展属性元数据处理能力
  • opt: 优化 Sequence 减少增加上下文切换
  • opt: 优化 LambdaQueryWrapper.sqlSelect 属性修改为 protected
  • opt: 优化 sql 注入性能调整为函数方式拼接减少字符串format使用
  • opt: 优化 Cursor 游标查询一条记录能力
  • opt: 优化 format 部分修改为字符串组合
  • opt: 优化 executeBatch 根据执行影响行数返回确定结果布尔值
  • opt: 优化 TableInfo 扩展允许返回新的自定义实例对象
  • opt: 优化 IJsonTypeHandler 处理逻辑

[v3.5.16] 2026.1.11

  • fix: 修复Jackson3TypeHandler自定义ObjectMapper无效
  • fix: 处理代码生成器PackageConfig指定模块为空时拼接错误
  • feat: 升级SpringBoot3至3.5.9
  • feat: 升级JUnit单元测试
  • feat: 升级fastjson至2.0.60
  • feat: 升级jackson至2.20.1
  • feat: 升级gson至2.13.2
  • feat: 升级postgresql至42.7.8
  • feat: 升级h2database至2.4.240
  • feat: 升级mysql-connector-j至9.5.0
  • feat: 升级sqlite-jdbc至3.51.1.0
  • feat: 升级jaybird至5.0.10.java8
  • feat: 升级mybatis-spring4.0.0

[v3.5.15] 2025.11.30

  • fix: 修复Enjoy模板生成xml错误
  • feat: 调整代码生成器元数据构建
  • feat: 优化CrudRepository批量执行前判断非事务中关闭连接
  • feat: 支持SpringBoot4.0.0
  • feat: 支持Jackson3.0

[v3.5.14] 2025.08.29

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

... (truncated)

Commits
  • db0b3c4 发布 3.5.17 版本脚本修复
  • 28b9d23 Merge pull request #7141 from smf-h/docs-idworker-sequence-config
  • 7fbc364 docs(core): clarify IdWorker sequence configuration
  • 404950b 发布 3.5.17 版本
  • 070d5ea 发布 3.5.17 版本
  • 0bc2e2f Merge pull request #7134 from zhangyongxianggithub/3.0
  • 5461a4a 发布 3.5.17 版本
  • 98cba6b feat(wrapper): 添加eqOrIsNull方法并优化参数别名设置逻辑
  • 96465aa id auto 策略新增描述说明
  • 41d78a2 优化 wrapper 支持 xml 别名配置
  • Additional commits viewable in compare view

Updates org.xerial:sqlite-jdbc from 3.45.1.0 to 3.53.2.1

Release notes

Sourced from org.xerial:sqlite-jdbc's releases.

Release 3.53.2.1

Changelog

🐛 Fixes

jdbc

  • map DATETIME column type to Types.TIMESTAMP (19ac6bb), closes #1436
  • throw SQLException from createConnection on invalid URL (fe636b7)
  • escape resolved table name in getExportedKeys query (b8eca2a)
  • escape catalog and schema in foreign key metadata queries (ff4b847)
  • escape table type values in getTables metadata query (33eaa19)
  • escape table name in getColumns metadata query (a5149f8)

pool

  • reset connection before notifying listeners on close (57f6cfa), closes #821

unscoped

  • fallback to isAlpineLinux when map_files contains no musl entries (7537528), closes #1382

🔄️ Changes

🛠 Build

deps

  • bump org.graalvm.buildtools:native-maven-plugin (75f593a)
  • bump org.graalvm.sdk:nativeimage from 25.0.3 to 25.1.3 (ac69b1e)
  • bump org.graalvm.buildtools:native-maven-plugin (37988f4)
  • bump org.graalvm.buildtools:native-maven-plugin (aae577a)
  • bump actions/checkout from 6 to 7 (9761dfd)
  • bump org.graalvm.buildtools:native-maven-plugin (e21a3b4)

deps-dev

  • bump org.apache.maven.plugins:maven-help-plugin (dcf3ea2)
  • bump org.jreleaser:jreleaser-maven-plugin (02e2e53)
  • bump org.sonatype.central:central-publishing-maven-plugin (72b9a31)

unscoped

  • add missing configuration for msvc (25b5de5)
  • central publishing wait only until validated (7018821)
  • switch to a maintained fork of setup-msvc-dev (3ca5e70)
  • fix older graalvm on windows (bb1382c)

Contributors

We'd like to thank the following people for their contributions: Gauthier, Gauthier Roebroeck, Javid Khan, Kamil Krzywanski, Kilo Code Bot, dxbjavid

Release 3.53.2.0

Changelog

... (truncated)

Commits
  • 94c0ea1 chore(release): 3.53.2.1 [skip ci]
  • eec4fc5 style: spotless apply
  • 25b5de5 ci: add missing configuration for msvc
  • 7018821 build: central publishing wait only until validated
  • 7537528 fix: fallback to isAlpineLinux when map_files contains no musl entries
  • 3ca5e70 ci: switch to a maintained fork of setup-msvc-dev
  • 75f593a build(deps): bump org.graalvm.buildtools:native-maven-plugin
  • 57f6cfa fix(pool): reset connection before notifying listeners on close
  • 19ac6bb fix(jdbc): map DATETIME column type to Types.TIMESTAMP
  • fe636b7 fix(jdbc): throw SQLException from createConnection on invalid URL
  • Additional commits viewable in compare view

Updates com.baomidou:mybatis-plus-generator from 3.5.9 to 3.5.17

Release notes

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

v3.5.17

  • fix: 修复 issues/6899 多租户插件 @Many 注解查无效问题
  • fix: 修复 issues/6938 HashMap 设置类型转换器异常
  • fix: 修复 issues/7081 解决拦截全表存在 schema 校验问题
  • fix: 修复 issues/6905 关于 saveOrUpdateBatch 导致 ParameterHandler 被重复执行问题
  • fix: 修复 issues/7056 支持 GraalVM Native 二进制编译问题,案例 https://gitee.com/baomidou/mybatis-plus-native-image-demo
  • fix: 修复 issues/7027 支持 JDK 9+ 模块化包重名问题,注意 mybatis-plus-spring 模块下文件包名调整
  • feat: 新增 wrapper 支持 xml 别名配置
  • feat: 新增 mybatis-plus-spring-boot-native-image 模块支持 graalvm 编译能力
  • feat: 新增 Wrapper 支持自动识别 typeHandler 类型处理器
  • feat: 新增 Wrapper 对比 eqOrIsNull 方法
  • feat: 新增 i18n 逻辑删除日期格式及自动更新填充能力
  • feat: 新增 Groovy 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 Kotlin 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 MybatisEnumTypeHandler 枚举类型处理器支持缓存处理机制
  • feat: 新增 ITableFieldMetaInfoCustomizer 代码生成器扩展属性元数据处理能力
  • opt: 优化 Sequence 减少增加上下文切换
  • opt: 优化 LambdaQueryWrapper.sqlSelect 属性修改为 protected
  • opt: 优化 sql 注入性能调整为函数方式拼接减少字符串format使用
  • opt: 优化 Cursor 游标查询一条记录能力
  • opt: 优化 format 部分修改为字符串组合
  • opt: 优化 executeBatch 根据执行影响行数返回确定结果布尔值
  • opt: 优化 TableInfo 扩展允许返回新的自定义实例对象
  • opt: 优化 IJsonTypeHandler 处理逻辑

v3.5.16

  • fix: 修复Jackson3TypeHandler自定义ObjectMapper无效
  • fix: 处理代码生成器PackageConfig指定模块为空时拼接错误
  • fix: 修复配置加密无法在环境变量中使用
  • feat: 升级SpringBoot3至3.5.9
  • feat: 升级JUnit单元测试
  • feat: 升级fastjson至2.0.60
  • feat: 升级jackson至2.20.1
  • feat: 升级gson至2.13.2
  • feat: 升级postgresql至42.7.8
  • feat: 升级h2database至2.4.240
  • feat: 升级mysql-connector-j至9.5.0
  • feat: 升级sqlite-jdbc至3.51.1.0
  • feat: 升级jaybird至5.0.10.java8
  • feat: 升级mybatis-spring4.0.0

v3.5.15

  • fix: 修复Enjoy模板生成xml错误
  • feat: 调整代码生成器元数据构建
  • feat: 优化CrudRepository批量执行前判断非事务中关闭连接
  • feat: 支持SpringBoot4.0.0
  • feat: 支持Jackson3.0

v3.5.14

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

... (truncated)

Changelog

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

[v3.5.17] 2026.07.07

  • fix: 修复 issues/6899 多租户插件 @Many 注解查无效问题
  • fix: 修复 issues/6938 HashMap 设置类型转换器异常
  • fix: 修复 issues/7081 解决拦截全表存在 schema 校验问题
  • fix: 修复 issues/6905 关于 saveOrUpdateBatch 导致 ParameterHandler 被重复执行问题
  • fix: 修复 issues/7056 支持 GraalVM Native 二进制编译问题,案例 https://gitee.com/baomidou/mybatis-plus-native-image-demo
  • fix: 修复 issues/7027 支持 JDK 9+ 模块化包重名问题,注意 mybatis-plus-spring 模块下文件包名调整
  • feat: 新增 wrapper 支持 xml 别名配置
  • feat: 新增 mybatis-plus-spring-boot-native-image 模块支持 graalvm 编译能力
  • feat: 新增 Wrapper 支持自动识别 typeHandler 类型处理器
  • feat: 新增 Wrapper 对比 eqOrIsNull 方法
  • feat: 新增 i18n 逻辑删除日期格式及自动更新填充能力
  • feat: 新增 Groovy 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 Kotlin 支持 LambdaQueryWrapper 执行能力
  • feat: 新增 MybatisEnumTypeHandler 枚举类型处理器支持缓存处理机制
  • feat: 新增 ITableFieldMetaInfoCustomizer 代码生成器扩展属性元数据处理能力
  • opt: 优化 Sequence 减少增加上下文切换
  • opt: 优化 LambdaQueryWrapper.sqlSelect 属性修改为 protected
  • opt: 优化 sql 注入性能调整为函数方式拼接减少字符串format使用
  • opt: 优化 Cursor 游标查询一条记录能力
  • opt: 优化 format 部分修改为字符串组合
  • opt: 优化 executeBatch 根据执行影响行数返回确定结果布尔值
  • opt: 优化 TableInfo 扩展允许返回新的自定义实例对象
  • opt: 优化 IJsonTypeHandler 处理逻辑

[v3.5.16] 2026.1.11

  • fix: 修复Jackson3TypeHandler自定义ObjectMapper无效
  • fix: 处理代码生成器PackageConfig指定模块为空时拼接错误
  • feat: 升级SpringBoot3至3.5.9
  • feat: 升级JUnit单元测试
  • feat: 升级fastjson至2.0.60
  • feat: 升级jackson至2.20.1
  • feat: 升级gson至2.13.2
  • feat: 升级postgresql至42.7.8
  • feat: 升级h2database至2.4.240
  • feat: 升级mysql-connector-j至9.5.0
  • feat: 升级sqlite-jdbc至3.51.1.0
  • feat: 升级jaybird至5.0.10.java8
  • feat: 升级mybatis-spring4.0.0

[v3.5.15] 2025.11.30

  • fix: 修复Enjoy模板生成xml错误
  • feat: 调整代码生成器元数据构建
  • feat: 优化CrudRepository批量执行前判断非事务中关闭连接
  • feat: 支持SpringBoot4.0.0
  • feat: 支持Jackson3.0

[v3.5.14] 2025.08.29

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

... (truncated)

Commits
  • db0b3c4 发布 3.5.17 版本脚本修复
  • 28b9d23 Merge pull request #7141 from smf-h/docs-idworker-sequence-config
  • 7fbc364 docs(core): clarify IdWorker sequence configuration
  • 404950b 发布 3.5.17 版本
  • 070d5ea 发布 3.5.17 版本
  • 0bc2e2f Merge pull request #7134 from zhangyongxianggithub/3.0
  • 5461a4a 发布 3.5.17 版本
  • 98cba6b feat(wrapper): 添加eqOrIsNull方法并优化参数别名设置逻辑
  • 96465aa id auto 策略新增描述说明
  • 41d78a2 优化 wrapper 支持 xml 别名配置
  • Additional commits viewable in compare view

Updates org.freemarker:freemarker from 2.3.32 to 2.3.34

Updates io.github.cdimascio:dotenv-java from 2.2.0 to 2.3.2

Release notes

Sourced from io.github.cdimascio:dotenv-java's releases.

v2.3.2

(2023-01-16)

(2022-11-23)

(2022-11-23)

v2.3.1

(2022-11-23)

... (truncated)

Changelog

Sourced from io.github.cdimascio:dotenv-java's changelog.

2.3.2 (2023-01-16)

2.3.1 (2022-11-23)

2.3.0 (2022-11-23)

... (truncated)

Commits

Updates org.apache.pdfbox:pdfbox from 3.0.3 to 3.0.8

Updates org.springframework.boot:spring-boot-devtools from 3.5.7 to 3.5.16

Release notes

Sourced from org.springframework.boot:spring-boot-devtools's releases.

v3.5.16

🔨 Dependency Upgrades

v3.5.15

🐞 Bug Fixes

  • Artemis auto-configuration uses a predictable default location for the embedded broker's data #50743
  • MailSender auto-configuration does not enable hostname verification #50742
  • SSL should not be enabled when a SSL bundle is overridden to an empty string #50624
  • Layer written outside the output location of '//' exception is thrown when using extract layers in root directory #50501
  • Docker Compose support does not restore thread interrupt flag when catching InterruptedException #50451
  • RabbitProperties enables SSL even when spring.rabbitmq.ssl.bundle is overridden to an empty string #50429
  • GraphQL WebSocket support does not configure allowed origins #50391
  • Buildpack module does not validate long-to-int casts #50382
  • MappingsEndpoint reports the context's own ID as parentId when a parent exists #50373
  • Created StackTracePrinter instances have no access to the Environment #50303
  • NullPointerException in reactor-netty SniProvider when SSL bundle uses client-auth or server truststore without server-name-bundles #50301
  • Spring Boot Loader Does Not Support RSA and EC Signed Jars #50292
  • ConfigurationPropertiesReportEndpoint exposes AOP proxy internals #50273
  • Actuator's '/cloudfoundryapplication' endpoint does not work if restrictive CORS configuration is provided using a bean named corsConfigurationSource #50254
  • Meter registries are not removed from the global registry when the context is closed #50235
  • ThreadPoolTaskScheduleBuilder unnecessarily loses precision when configuring await termination time #50225
  • Apply HTML escaping to timestamp attribute in Whitelabel error page #50205
  • NimbusJwtDecoder silently accepts unknown values for spring.security.oauth2.resourceserver.jwt.jws-algorithms #50118
  • EndpointRequest links matcher unnecessarily matches HTTP methods other than GET #50095

📔 Documentation

  • Fix reference to Gradle documentation for module replacement #50641
  • Remove the use of Optional from Data Neo4j repository examples #50600
  • Fix typos in documentation #50593
  • Document Java 25 requirement for AOT cache #50482
  • Clarify dependency requirement for Bean Validation support #50290
  • Document SSL reloading with Let's Encrypt #50222
  • Polish InvalidConfigurationPropertyValueException constructor javadoc #50212
  • Document known testcontainers lifecycle issues #50210
  • Document configuring multiple connectors with Jetty #50206
  • Fix typo in Spring Security OAuth2 client registration documentation #50193

🔨 Dependency Upgrades

... (truncated)

Commits
  • 0566f69 Release v3.5.16
  • 93edd16 Next development version (v3.5.16-SNAPSHOT)
  • 5bafd0a Upgrade to Spring Integration 6.5.10
  • baf3290 Upgrade to Spring AMQP 3.2.12
  • 2c5964a Upgrade to Spring Data Bom 2025.0.13
  • dbb08aa Upgrade Antora dependencies
  • 9b281d5 Upgrade to actions/checkout 7.0.0
  • a854058 Upgrade to jfrog/setup-jfrog-cli 5.1.0
  • fc236ae Start building against Spring Integration 6.5.10 snapshots
  • 5271da7 Start building against Spring Data Bom 2025.0.13 snapshots
  • Additional commits viewable in compare view

Updates org.projectlombok:lombok from 1.18.42 to 1.18.46

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.46 (April 22nd, 2026)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Aug 3, 2026
@dependabot
dependabot Bot force-pushed the dependabot/gradle/gradle-minor-and-patch-d1d1ed668e branch from e71e9c0 to 91e38b9 Compare August 10, 2026 01:11
Bumps the gradle-minor-and-patch group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.springframework.boot:spring-boot-dependencies](https://github.com/spring-projects/spring-boot) | `3.5.7` | `3.5.16` |
| [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java) | `1.51.0` | `1.62.0` |
| [com.baomidou:mybatis-plus-spring-boot3-starter](https://github.com/baomidou/mybatis-plus) | `3.5.9` | `3.5.17` |
| [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.45.1.0` | `3.53.2.1` |
| org.freemarker:freemarker | `2.3.32` | `2.3.34` |
| [io.github.cdimascio:dotenv-java](https://github.com/cdimascio/dotenv-java) | `2.2.0` | `2.3.2` |
| org.apache.pdfbox:pdfbox | `3.0.3` | `3.0.8` |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.42` | `1.18.46` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `9.2.0` | `9.7.0` |



Updates `org.springframework.boot:spring-boot-dependencies` from 3.5.7 to 3.5.16
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.7...v3.5.16)

Updates `com.microsoft.playwright:playwright` from 1.51.0 to 1.62.0
- [Release notes](https://github.com/microsoft/playwright-java/releases)
- [Commits](microsoft/playwright-java@v1.51.0...v1.62.0)

Updates `com.baomidou:mybatis-plus-spring-boot3-starter` from 3.5.9 to 3.5.17
- [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.9...v3.5.17)

Updates `org.xerial:sqlite-jdbc` from 3.45.1.0 to 3.53.2.1
- [Release notes](https://github.com/xerial/sqlite-jdbc/releases)
- [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG)
- [Commits](xerial/sqlite-jdbc@3.45.1.0...3.53.2.1)

Updates `com.baomidou:mybatis-plus-generator` from 3.5.9 to 3.5.17
- [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.9...v3.5.17)

Updates `org.freemarker:freemarker` from 2.3.32 to 2.3.34

Updates `io.github.cdimascio:dotenv-java` from 2.2.0 to 2.3.2
- [Release notes](https://github.com/cdimascio/dotenv-java/releases)
- [Changelog](https://github.com/cdimascio/dotenv-java/blob/master/CHANGELOG.md)
- [Commits](cdimascio/dotenv-java@v2.2.0...v2.3.2)

Updates `org.apache.pdfbox:pdfbox` from 3.0.3 to 3.0.8

Updates `org.springframework.boot:spring-boot-devtools` from 3.5.7 to 3.5.16
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.7...v3.5.16)

Updates `org.projectlombok:lombok` from 1.18.42 to 1.18.46
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.42...v1.18.46)

Updates `org.springframework.boot` from 3.5.7 to 3.5.16
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.7...v3.5.16)

Updates `gradle-wrapper` from 9.2.0 to 9.7.0
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v9.2.0...v9.7.0)

---
updated-dependencies:
- dependency-name: com.baomidou:mybatis-plus-generator
  dependency-version: 3.5.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: com.baomidou:mybatis-plus-spring-boot3-starter
  dependency-version: 3.5.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: com.microsoft.playwright:playwright
  dependency-version: 1.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-and-patch
- dependency-name: gradle-wrapper
  dependency-version: 9.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-and-patch
- dependency-name: io.github.cdimascio:dotenv-java
  dependency-version: 2.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-and-patch
- dependency-name: org.apache.pdfbox:pdfbox
  dependency-version: 3.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: org.freemarker:freemarker
  dependency-version: 2.3.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: org.projectlombok:lombok
  dependency-version: 1.18.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: org.springframework.boot
  dependency-version: 3.5.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: org.springframework.boot:spring-boot-dependencies
  dependency-version: 3.5.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: org.springframework.boot:spring-boot-devtools
  dependency-version: 3.5.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-and-patch
- dependency-name: org.xerial:sqlite-jdbc
  dependency-version: 3.53.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/gradle/gradle-minor-and-patch-d1d1ed668e branch from 91e38b9 to 542f620 Compare August 17, 2026 01:12
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