Spring Cloud 2021.0.9 (aka Jubilee) Is Now Available

Releases | Ryan Baxter | December 20, 2023 | ...

On behalf of the community, I am pleased to announce that the General Availability (RELEASE) of the Spring Cloud 2021.0.9 Release Train is available today. The release can be found in Maven Central. You can check out the 2021.0.9 release notes for more information.

Notable Changes in the 2021.0.9 Release Train

This release of Spring Cloud is based on Spring Boot 2.6.15 and is compatible with Spring Boot 2.7.18 and 3.0.13.

This will be last open source release of Spring Cloud 2021.0.x. All projects within this release train have reached end of life. We suggest you upgrade to Spring Cloud 2022.0.x or 2023.0.x.

The following modules were updated as part of 2021.0.9:

Module Version Issues
Spring Cloud Netflix 3.1.8 (issues)
Spring Cloud Stream 3.2.10 (issues)
Spring Cloud Starter Build 2021.0.9 (issues)
Spring Cloud Consul 3.1.5 (issues)
Spring Cloud Cloudfoundry 3.1.4 (issues)
Spring Cloud Contract 3.1.9 (issues)
Spring Cloud Zookeeper 3.1.5 (issues)
Spring Cloud Sleuth 3.1.10 (issues)
Spring Cloud Bus 3.1.3 (issues)
Spring Cloud Function 3.2.12 (issues)
Spring Cloud Openfeign 3.1.9 (issues)
Spring Cloud Config 3.1.9 (issues)
Spring Cloud Circuitbreaker 2.1.8 (issues)
Spring Cloud Build 3.1.9 (issues)
Spring Cloud Kubernetes 2.1.9 (issues)
Spring Cloud Commons 3.1.8 (issues)
Spring Cloud Vault 3.1.4 (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>2021.0.9</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:

buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.2.RELEASE"
}
}

apply plugin: "io.spring.dependency-management"

dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2021.0.9'
}
}

dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}

Get the Spring newsletter

Thank you for your interest. Someone will get back to you shortly.

Get ahead

VMware offers training and certification to turbo-charge your progress.

Learn more

Get support

Tanzu Spring Runtime offers support and binaries for OpenJDK™, Spring, and Apache Tomcat® in one simple subscription.

Learn more

Upcoming events

Check out all the upcoming events in the Spring community.

View all