Spring Cloud 2021.0.4 (codename Jubilee) Has Been Released

Releases | Ryan Baxter | September 07, 2022 | ...

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

Notable Changes in the 2021.0.4 Release Train

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

Spring Cloud Config

  • Replace JSCH with Apache MINA to resolve a number of SSH issues (#1901)

Spring Cloud Gateway

  • Added native JSON to gRPC filter (#2657)
  • Support 'use-insecure-trust-manager' & 'trustedX509Certificates' for GRPC Filter (2699)

Spring Cloud Openfeign

Spring Cloud Circuitbreaker

  • Add the ability to disable the threadpool for Resilience4J Circuit Breakers (#147)

The following modules were updated as part of 2021.0.4:

Module Version Issues
Spring Cloud Netflix 3.1.4 (issues)
Spring Cloud Config 3.1.4 (issues)
Spring Cloud Build 3.1.4
Spring Cloud Sleuth 3.1.4 (issues)
Spring Cloud Gateway 3.1.4 (issues)
Spring Cloud Starter Build 2021.0.4
Spring Cloud Consul 3.1.2 (issues)
Spring Cloud Contract 3.1.4 (issues)
Spring Cloud Kubernetes 2.1.4 (issues)
Spring Cloud Zookeeper 3.1.3 (issues)
Spring Cloud Task 2.4.4
Spring Cloud Openfeign 3.1.4 (issues)
Spring Cloud Circuitbreaker 2.1.4
Spring Cloud Stream 3.2.5
Spring Cloud Commons 3.1.4 (issues)
Spring Cloud Function 3.2.7

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.4</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.4'
}
}

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