Upgrade Spring Boot 4.0.7 - #111
Conversation
c6432cf to
9894cec
Compare
|
Hi! Thanks for working on this upgrade. Just a heads up regarding recent Netty CVEs (CVE-2026-42584, CVE-2026-42579, CVE-2026-42581): Spring Boot 4.0.6 manages Netty at version |
|
The new Spring Boot version will be available in the next few days - I am going to update the PR. |
|
Update to Spring Boot 4.0.7. Local build and tests succeeded. |
Signed-off-by: Tobias Soloschenko <tsoloschenko@apache.org>
|
We already tested a custom build of Prometheus RSocket Proxy Server with Spring Boot 4.0.7 and Java 25 together with a client application with the changes of this PR and Java25. Everything is working fine. 👍 |
|
As long as this PR is not merged I want to provide a step by step workaround. For the client.
Note: If you have multiple projects you can add this to your parent project. Spring Boot will automatically start up this auto configuration in the child projects. @jonatan-ivanov / @shakuzen - is there any chance the project is updated soon? |
|
If you build a custom prometheus rsocket proxy server it is still working with: @SpringBootApplication(exclude = PrometheusRSocketClientAutoConfiguration.class)
@EnablePrometheusRSocketProxyServerand the following dependencies: <dependency>
<groupId>io.micrometer.prometheus</groupId>
<artifactId>prometheus-rsocket-spring</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-micrometer</artifactId>
</dependency> |
Fixes: #102