Spring Cloud 2020.0.5 (Ilford) Has Been Released

Releases | Ryan Baxter | December 16, 2021 | ...

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

Notable Changes in the 2020.0.5 Release Train

Spring Cloud Netflix

  • Upgraded Netflix/Eureka to 1.10.17 issue

Spring Cloud Config

  • Support Using HTTPS proxies for Git Repositories (1965)
  • Support ordering AWS, Redis, and CredHub Repositories (1980)

Spring Cloud Gateway

Spring Cloud Kubernetes

  • Specify User Agent for Kubernetes API Client (898)
  • Allow activeProfile not to be appended (508)
  • Upgrade to Kubernetes Java Client 11.0.3

Spring Cloud Openfeign

  • Added support for size = 0 in PageJacksonModule PR

Spring Cloud Sleuth

  • Cache Executor wrappers (2020)

Spring Cloud Vault

  • TOKEN auth from file (~/.vault_token) (609)
  • Usage of spring.cloud.vault.reactive.enabled property in VaultConfigDataLoader (619)
  • Add support for multiple database secrets generation (459)

The following modules were updated as part of 2020.0.5:

Module Version Issues
Spring Cloud Netflix 3.0.5 (issues)
Spring Cloud Config 3.0.6 (issues)
Spring Cloud Sleuth 3.0.5 (issues)
Spring Cloud Gateway 3.0.6 (issues)
Spring Cloud Cloudfoundry 3.0.3
Spring Cloud Contract 3.0.5 (issues)
Spring Cloud Kubernetes 2.0.5 (issues)
Spring Cloud Zookeeper 3.0.5 (issues)
Spring Cloud Cli 3.0.4
Spring Cloud Task 2.3.5 (issues)
Spring Cloud Starter Build 2020.0.5
Spring Cloud Openfeign 3.0.6 (issues)
Spring Cloud Vault 3.0.5 (issues)
Spring Cloud Commons 3.0.5 (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>2020.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.11.RELEASE'
    }
}

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

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

dependencies {
    implementation 'org.springframework.cloud:spring-cloud-starter-config'
    implementation '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