chore(deps): upgrade Spring Boot 4.0.3, MariaDB 12.2, and Gradle 9.3.1#54
Merged
devondragon merged 2 commits intomainfrom Feb 21, 2026
Merged
chore(deps): upgrade Spring Boot 4.0.3, MariaDB 12.2, and Gradle 9.3.1#54devondragon merged 2 commits intomainfrom
devondragon merged 2 commits intomainfrom
Conversation
- Bump Spring Boot from 4.0.2 to 4.0.3 - Bump Gradle wrapper from 9.0.0 to 9.3.1 - Bump MariaDB Docker image from 11.6 to 12.2 - Bump springdoc-openapi from 2.8.9 to 3.0.1 - Migrate wiremock from tomakehurst to org.wiremock artifact (3.13.2) - Let Spring Boot BOM manage hibernate-validator version - Pin Groovy to 5.0.3 to work around GROOVY-11745 NPE in thymeleaf-layout-dialect with Groovy 5.0.4
Contributor
There was a problem hiding this comment.
Pull request overview
This PR upgrades core dependencies to their latest versions, including Spring Boot 4.0.3, Gradle 9.3.1, and several third-party libraries. The upgrade includes a workaround for a Groovy regression that affects the thymeleaf-layout-dialect library.
Changes:
- Upgraded Spring Boot from 4.0.2 to 4.0.3 and Gradle from 9.0.0 to 9.3.1
- Migrated WireMock from deprecated package to new org.wiremock artifact and upgraded springdoc-openapi to 3.0.1
- Implemented Groovy 5.0.3 pinning workaround to address GROOVY-11745 regression affecting thymeleaf-layout-dialect
Reviewed changes
Copilot reviewed 4 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| build.gradle | Updated Spring Boot, springdoc-openapi, WireMock, and hibernate-validator versions; added Groovy 5.0.3 workaround |
| compose.yaml | Updated MariaDB Docker image version |
| gradle/wrapper/gradle-wrapper.properties | Updated Gradle distribution URL to 9.3.1 |
| gradle/wrapper/gradle-wrapper.jar | Updated Gradle wrapper binary |
| gradlew | Updated Gradle wrapper script with new copyright, SPDX identifier, and execution changes |
| gradlew.bat | Updated Gradle wrapper batch script with SPDX identifier and error handling improvements |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
OAuth tokens expire periodically, requiring manual regeneration. API keys are stable and don't expire.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrades core dependencies to their latest versions:
com.github.tomakehurst:wiremock-jre8-standalonetoorg.wiremock:wiremock-standalone3.13.2jakarta.validation-apidependency)Groovy 5.0.4 workaround
Spring Boot 4.0.3 bumps Groovy from 5.0.3 to 5.0.4. Groovy 5.0.4 has a regression (GROOVY-11745) that causes an NPE when Groovy 5 code calls setters on objects from Groovy 4-compiled libraries. This breaks
thymeleaf-layout-dialect3.4.0 (compiled with Groovy 4.0.25) at runtime inDecorateProcessor.doProcess().The fix is committed upstream but Groovy 5.0.5 is not yet released. As a workaround, we exclude Groovy from
thymeleaf-layout-dialectand pin to 5.0.3 explicitly. This can be removed once Spring Boot adopts Groovy 5.0.5+.See also: ultraq/thymeleaf-layout-dialect#251
Test plan
./gradlew test— all tests passgroovy:5.0.3is resolved on the runtime classpath./gradlew bootRun