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

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 12 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.63.0
com.baomidou:mybatis-plus-spring-boot3-starter 3.5.9 3.5.17
org.xerial:sqlite-jdbc 3.45.1.0 3.53.4.0
com.baomidou:mybatis-plus-generator 3.5.9 3.5.17
org.freemarker:freemarker 2.3.32 2.3.35
io.github.cdimascio:dotenv-java 2.2.0 2.3.2
org.apache.pdfbox:pdfbox 3.0.3 3.0.8
org.springframework.boot:spring-boot-devtools 3.5.7 3.5.16
org.projectlombok:lombok 1.18.42 1.18.48
org.springframework.boot 3.5.7 3.5.16
gradle-wrapper 9.2.0 9.7.1

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.63.0

Release notes

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

v1.63.0

🪟 Locate across frames

page.frameLocator() and frame.frameLocator() called without a selector search in any frame of the subtree, so you no longer need to locate the iframe first:

// Finds the button in any frame on the page.
page.frameLocator().getByRole(AriaRole.BUTTON).click();

The rest of the locator resolves inside a single frame, just like a regular locator, and an error is thrown when it matches elements in several frames.

👁️ Visible-only locators

New locator.visible() returns a locator that matches only visible elements. It is the recommended replacement for the :visible CSS pseudo-class:

page.locator("button").visible().click();

🖼️ Aria and screen snapshots in traces

New ariaSnapshots and screenSnapshots options of tracing.start() capture an aria snapshot and a screenshot of the page on every action:

context.tracing().start(new Tracing.StartOptions()
  .setSnapshots(true)
  .setAriaSnapshots(true)
  .setScreenSnapshots(true));

With aria and screen snapshots recorded, the new Display Aria mode in the trace viewer shows the action screenshot side by side with the aria snapshot, and hovering an aria node highlights it on the screenshot.

☕ Nullability annotations

The public API is now annotated with JSpecify nullability annotations. The com.microsoft.playwright, com.microsoft.playwright.options and com.microsoft.playwright.assertions packages are @NullMarked, and values that can be absent are marked @Nullable, so null-checking tools such as NullAway, as well as Kotlin code, can catch missing null checks at compile time.

New APIs

Browser and Context

  • httpCredentials now also accepts a list of credentials. The first entry matching the request origin is used, and entries without an origin match any request.
  • New option opfs includes the origin private file system in the storage state, so it can be persisted and restored into later contexts.

... (truncated)

Commits

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: 增加bom对mybatis-plus-spring-boot4-starter与mybatis-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: 增加bom对mybatis-plus-spring-boot4-starter与mybatis-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.4.0

Release notes

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

Release 3.53.4.0

Changelog

🚀 Features

sqlite

  • upgrade to sqlite 3.53.4 (3c55d7a)

🐛 Fixes

  • bound utf-8 reader to the terminating nul in extension-functions (a6f4d4d)

🛠 Build

deps

  • bump org.graalvm.buildtools:native-maven-plugin (c72dc32)
  • bump org.graalvm.buildtools:native-maven-plugin (f5aaf0e)
  • bump EndBug/add-and-commit from 10 to 11 (0a6a8f2)
  • bump org.graalvm.buildtools:native-maven-plugin (843cd86)
  • bump org.graalvm.buildtools:native-maven-plugin (16aa812)
  • bump org.graalvm.sdk:nativeimage from 25.1.3 to 25.2.4 (47e20b2)

deps-dev

  • bump com.tngtech.archunit:archunit-junit5 (db432fd)
  • bump org.apache.maven.plugins:maven-jar-plugin (7650e24)

Contributors

We'd like to thank the following people for their contributions: Gauthier, Javid Khan

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

... (truncated)

Commits
  • cab7981 chore(release): 3.53.4.0 [skip ci]
  • d52d7d6 chore: update native libraries
  • 3c55d7a feat(sqlite): upgrade to sqlite 3.53.4
  • c72dc32 build(deps): bump org.graalvm.buildtools:native-maven-plugin
  • a6f4d4d fix: bound utf-8 reader to the terminating nul in extension-functions
  • f5aaf0e build(deps): bump org.graalvm.buildtools:native-maven-plugin
  • 0a6a8f2 build(deps): bump EndBug/add-and-commit from 10 to 11
  • db432fd build(deps-dev): bump com.tngtech.archunit:archunit-junit5
  • 843cd86 build(deps): bump org.graalvm.buildtools:native-maven-plugin
  • 16aa812 build(deps): bump org.graalvm.buildtools:native-maven-plugin
  • 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: 增加bom对mybatis-plus-spring-boot4-starter与mybatis-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: 增加bom对mybatis-plus-spring-boot4-starter与mybatis-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.35

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.48

Changelog

Sourced from

@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
@dependabot
dependabot Bot force-pushed the dependabot/gradle/gradle-minor-and-patch-d1d1ed668e branch 2 times, most recently from 542f620 to 23afd40 Compare August 24, 2026 01:10
@dependabot
dependabot Bot force-pushed the dependabot/gradle/gradle-minor-and-patch-d1d1ed668e branch from 23afd40 to 9a6672d Compare September 14, 2026 01:10
Bumps the gradle-minor-and-patch group with 12 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.63.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.4.0` |
| [com.baomidou:mybatis-plus-generator](https://github.com/baomidou/mybatis-plus) | `3.5.9` | `3.5.17` |
| org.freemarker:freemarker | `2.3.32` | `2.3.35` |
| [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.springframework.boot:spring-boot-devtools](https://github.com/spring-projects/spring-boot) | `3.5.7` | `3.5.16` |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.42` | `1.18.48` |
| [org.springframework.boot](https://github.com/spring-projects/spring-boot) | `3.5.7` | `3.5.16` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `9.2.0` | `9.7.1` |



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.63.0
- [Release notes](https://github.com/microsoft/playwright-java/releases)
- [Commits](microsoft/playwright-java@v1.51.0...v1.63.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.4.0
- [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.4.0)

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.35

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.48
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.42...v1.18.48)

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.1
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v9.2.0...v9.7.1)

---
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] <[email protected]>
@dependabot
dependabot Bot force-pushed the dependabot/gradle/gradle-minor-and-patch-d1d1ed668e branch from 9a6672d to 16a541c Compare September 21, 2026 01:13
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