-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Spring Boot to 3.3.6 and bump other dependencies #586
Update Spring Boot to 3.3.6 and bump other dependencies #586
Conversation
12dda25
to
82877a3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @corneil. I have some concerns PTAL.
stream-applications-build/pom.xml
Outdated
<spring-cloud-function.version>4.1.2</spring-cloud-function.version> | ||
<spring-cloud-stream-dependencies.version>4.1.2</spring-cloud-stream-dependencies.version> | ||
<spring-javaformat-checkstyle.version>0.0.43</spring-javaformat-checkstyle.version> | ||
<spring-boot.version>3.2.12</spring-boot.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can't downgrade to a minor version of Boot in a patch release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prepared with the same versions as in spring-functions-catalog so that Artem can see if he can find the error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be very likely that the problem comes from Debezium itself: they are very prone to ignore compatibility between even between patch versions. I mean we look into some set of Spring versions where it could be just narrowed to Debezium itself .
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
<version>${commons-compress.version}</version> | ||
</dependency> | ||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why has this needed now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a compile failure in one module.
applications/sink/xmpp-sink/pom.xml
Outdated
@@ -45,7 +45,7 @@ | |||
<dependency> | |||
<groupId>commons-codec</groupId> | |||
<artifactId>commons-codec</artifactId> | |||
<version>1.16.1</version> | |||
<version>1.17.1</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a minor bump, I think we should stick to patch versions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed
Updates to Spring Boot 3.3.6 Updates to Spring Framework 6.1.15 Updates to Spring Cloud 2023.0.4 Updates to Spring Cloud Stream 4.1.4 Updates to Spring Cloud Starters 4.1.5 Updates to Spring Cloud Functions 4.1.4 Updates to Spring Functions Catalog 5.0.1 Remove jetbrains NotNull annotation.
82877a3
to
75538d1
Compare
<java-functions.version>5.0.1-SNAPSHOT</java-functions.version> | ||
<prometheus-rsocket.version>2.0.0-M1</prometheus-rsocket.version> | ||
<java-functions.version>5.0.1</java-functions.version> | ||
<prometheus-rsocket.version>2.0.0-M2</prometheus-rsocket.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just realized that I updated this from 1.5.2
to 2.0.0-M1
in 726d7cd.
One of two things needs to happen:
- we put this version back to
1.5.x
and release w/ that (5.0.x
released w/1.5.2
). - OR we get a GA for
2.0.0
as we can't release w/ a milestone.
@@ -74,16 +72,16 @@ | |||
|
|||
<dependencyManagement> | |||
<dependencies> | |||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice cleanup!
@@ -135,13 +133,6 @@ | |||
<artifactId>ivy</artifactId> | |||
<version>${apache-ivy.version}</version> | |||
</dependency> | |||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice cleanup!
Updates Spring Functions Catalog to 5.0.1
Updates Spring Boot to 3.3.6
Updates RabbitMQ Http Client to 5.2.0
Updates NoHttp Checkstyle to 0.0.11
Updates Spring Java Format Checkstyle to 0.0.43
Updates Spring Framework to 6.1.15
Updates Spring Cloud Release Train to 2023.0.4
Updates Spring Cloud Starters to 4.1.5
Updates Spring Cloud Function to 4.1.4
Updates Spring Cloud Stream to 4.1.4
Updates Groovy to 4.0.24
Removes spring-integration-aws.version property now manage in Spring Functions Catalog Removes json-path.version as it is managed in Spring Boot dependencies.
Removes Jetbrains
@NotNull
from a Test class.See #584