Conversation
https://github.com/spring-projects/spring-boot/releases/tag/v3.5.12 Signed-off-by: Ivan Hrasko <ivan.hrasko@pantheon.tech> (cherry picked from commit 9fab116)
There was a problem hiding this comment.
Code Review
This pull request updates the Spring Boot version from 3.5.11 to 3.5.12 in both the core dependency management and the example project. Feedback indicates that version 3.5.12 is not an official Spring Boot release, which could lead to build failures and dependency resolution issues if a custom repository is not configured.
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-dependencies</artifactId> | ||
| <version>3.5.11</version> | ||
| <version>3.5.12</version> |
There was a problem hiding this comment.
The specified Spring Boot version 3.5.12 does not correspond to a public release. The official Spring Boot release trains are, for example, 3.3.x and 3.2.x. Using a non-standard version that could conflict with future official releases can lead to dependency issues and confusion. This will likely cause the build to fail if a custom repository hosting this artifact is not configured. It is strongly recommended to use an official release version. If this is a custom build, its versioning should be distinct from official release versioning schemes.
There was a problem hiding this comment.
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-parent</artifactId> | ||
| <version>3.5.11</version> | ||
| <version>3.5.12</version> |
There was a problem hiding this comment.
The specified spring-boot-starter-parent version 3.5.12 is not an official Spring Boot release. This will likely cause dependency resolution to fail unless a private repository is available. It is recommended to align with an official Spring Boot release train, such as 3.3.x or 3.2.x, to ensure build stability and avoid confusion with official releases.
There was a problem hiding this comment.
https://github.com/spring-projects/spring-boot/releases/tag/v3.5.12
(cherry picked from commit 9fab116)