Spring Cloud 2021.0.5 (codename Jubilee) Has Been Released

Releases | Oleg Zhurakousky | November 08, 2022 | ...

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

Notable Changes in the 2021.0.5 Release Train

See the project page for all the issues and pull requests included in this release.

Spring Cloud Function

  • Add support for Azure Timer Trigger in spring-cloud-function-azure

  • Enhancement to AWS Function Invoker in spring-cloud-function-aws to programmatically inject function definition

  • Add support for Azure Timer Trigger in spring-cloud-function-azure

Spring Cloud Config

  • Align Jdbc Repository's behavior with Git Repository (#2171)

Spring Cloud Commons

  • Allow setting attributes in LoadBalancer RequestData (#1142)

Spring Cloud OpenFeign

  • Spring Security OAuth2 support has been added (#644)

The following modules were updated as part of 2021.0.4:

Module Version
Spring Cloud Netflix 3.1.4
Spring Cloud Config 3.1.5
Spring Cloud Build 3.1.5
Spring Cloud Sleuth 3.1.5
Spring Cloud Gateway 3.1.4
Spring Cloud Starter Build 2021.0.5
Spring Cloud Consul 3.1.2
Spring Cloud Contract 3.1.5
Spring Cloud Kubernetes 2.1.5
Spring Cloud Zookeeper 3.1.3
Spring Cloud Task 2.4.5
Spring Cloud Openfeign 3.1.5
Spring Cloud Circuitbreaker 2.1.5
Spring Cloud Stream 3.2.6
Spring Cloud Commons 3.1.5
Spring Cloud Function 3.2.8

As always, we welcome feedback on GitHub, on Gitter, on Stack Overflow, and 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.5</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.5'
}
}

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