Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/changes-2.4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Apollo 2.4.0
* [Fix: support java.time.Instant serialization with gson](https://github.com/apolloconfig/apollo/pull/5298)
* [Feature: support to assign users management authority by the cluster (modify, publish)](https://github.com/apolloconfig/apollo/pull/5302)
* [Feature: notification by email when releasing by OpenApi also](https://github.com/apolloconfig/apollo/pull/5324)
* [Security: bump spring-boot from 2.7.11 to 2.7.18 to fix CVE-2024-38816](https://github.com/apolloconfig/apollo/pull/5455)

------------------
All issues and pull requests are [here](https://github.com/apolloconfig/apollo/milestone/15?closed=1)
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<apollo-java.version>2.5.0-SNAPSHOT</apollo-java.version>
<spring-boot.version>2.7.11</spring-boot.version>
<spring-boot.version>2.7.18</spring-boot.version>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we update spring-boot-maven-plugin or something else?
When relates to such a 'big' update, we have to be very cautious

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question! I've verified that the current approach is correct and follows Spring Boot best practices:

  1. spring-boot-maven-plugin already uses ${spring-boot.version} (line 451), so it automatically updates to 2.7.18
  2. spring-boot-dependencies BOM uses ${spring-boot.version} (line 264), which manages all Spring Boot dependency versions automatically
  3. Spring Cloud version 2021.0.5 is compatible with Spring Boot 2.7.x

The project's dependency management setup ensures all Spring Boot components are consistently versioned when the main property is updated. No additional updates are needed.

<spring-cloud.version>2021.0.5</spring-cloud.version>
<!-- sort by alphabet -->
<awaitility.version>4.2.0</awaitility.version>
Expand Down