Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the community, I am pleased to announce that the General Availability (RELEASE) of the Spring Cloud 2023.0.6 Release Train is available today. The release can be found in Maven Central. You can check out the 2023.0.6 release notes for more information.
This release is based on Spring Boot 3.3.13.
In addition to the enhancements below, there are a number of bugs that have been addressed in this release. To see the complete list of issues addressed in this release, see this GitHub project.
This is the final open source release of Spring Cloud 2023.0.x. Spring Cloud 2023.0.x will enter commercial support only on July 1st 2025.
openTimeout
& resetTimeout
when using Spring Retry (#238)spring-cloud-stub-runner-boot
will no longer be available on Maven Central beginning with Spring Cloud Contact 4.1.6. There are restrictions in place from Maven Central that no longer allow the publication of executable jar files since these files are typically not used as dependencies. If you require the use of spring-cloud-stub-runner-boot
you can use the Spring Cloud Contract Docker image or build the artifact from source.The following modules were updated as part of 2023.0.6:
Module | Version | Issues |
---|---|---|
Spring Cloud Gateway | 4.1.9 | (issues) |
Spring Cloud Starter Build | 2023.0.6 | (issues) |
Spring Cloud Netflix | 4.1.6 | (issues) |
Spring Cloud Config | 4.1.7 | (issues) |
Spring Cloud Openfeign | 4.1.5 | (issues) |
Spring Cloud Circuitbreaker | 3.1.5 | (issues) |
Spring Cloud Kubernetes | 3.1.6 | (issues) |
Spring Cloud Stream | 4.1.6 | (issues) |
Spring Cloud Function | 4.1.6 | (issues) |
Spring Cloud Contract | 4.1.6 | (issues) |
As always, we welcome feedback on GitHub, on Gitter, on Stack Overflow, or on Twitter.
To get started with Maven with a BOM (dependency management only):
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2023.0.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
...
</dependencies>
or with Gradle:
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.13'
id 'io.spring.dependency-management' version '1.1.7'
}
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2023.0.6")
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}