Closed gexge closed 2 days ago
I have the same issue.
This can be traced to the SpringBootVersionVerifier
in spring-cloud-commons v4.1.5. This has already been fixed in this commit for v4.2.0-RC1 and can be found on their main branch.
So I'm thinking we need to wait for a spring-cloud-commons
v4.2.0 release.
FYI you may want to include
<repositories>
<repository>
<id>repository.spring.milestone</id>
<name>Spring Milestone Repository</name>
<url>http://repo.spring.io/milestone</url>
</repository>
</repositories>
and
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<version>4.2.0-RC1</version>
</dependency>
into your build for the time being.
The final release is planned for Dec 5th.
Hello @gexge, thanks for creating the issue. As you may see in our release calendar: https://spring.io/projects#release-calendar, Spring Cloud 2024.0.0 release is currently scheduled for 2nd Dec 2024. This release will be compatible with Spring Boot 3.4.0.
Describe the bug Having the following:
Sample