Revert accidental Spring Boot 4 / Spring AI 1.1 major bump (broke main)#44
Merged
Conversation
A Dependabot "spring group" PR (created by the initial dependabot.yml before it was hardened to ignore majors) bundled a MAJOR jump — spring-boot 3.4.13 -> 4.0.6 and spring-ai 1.0.7 -> 1.1.7 — and was merged. That left main uncompilable: the spring-framework override still pinned 6.2.x against a Boot 4 BOM, and the Spring AI 1.1 API changed (AssistantMessage / ToolResponseMessage constructors) so agentflow4j-checkpoint no longer built. Revert to the known-good combo: - spring-boot 4.0.6 -> 3.4.13 - spring-ai 1.1.7 -> 1.0.7 Full clean build + every module green again. The Boot 4 / Spring AI 1.1+ upgrade is a deliberate migration to be done on its own, not via an auto-merged dependency bump. The hardened dependabot.yml (already on main) now ignores major updates so this cannot recur.
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.
A Dependabot "spring group" PR (created by the initial dependabot.yml before it was hardened to ignore majors) bundled a MAJOR jump — spring-boot 3.4.13 -> 4.0.6 and spring-ai 1.0.7 -> 1.1.7 — and was merged. That left main uncompilable: the spring-framework override still pinned 6.2.x against a Boot 4 BOM, and the Spring AI 1.1 API changed (AssistantMessage / ToolResponseMessage constructors) so agentflow4j-checkpoint no longer built.
Revert to the known-good combo:
Full clean build + every module green again. The Boot 4 / Spring AI 1.1+ upgrade is a deliberate migration to be done on its own, not via an auto-merged dependency bump. The hardened dependabot.yml (already on main) now ignores major updates so this cannot recur.