Spring Cloud 2020.0.3 (aka Ilford) Is Available

Releases | Marcin Grzejszczak | May 28, 2021 | ...

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

Notable Changes in the 2020.0.3 Release Train

The biggest change in this release was support for Spring Boot 2.5. Besides that, this release is primarily for bug fixes and dependency upgrades.

See all of the included issues and pull requests at the Github project.

Spring Cloud Commons

  • Added the possibility to disable load-balancing by property (#940)

Spring Cloud Config

  • Several bug fixes related to spring.config.import with Spring Cloud Config Server

Spring Cloud Consul

  • Fix profile specific behavior relative to remote and local configuration with spring.config.import (#706)

Spring Cloud Kubernetes

  • Informer based DiscoveryClient now defaults to using the current namespace (#678)

Spring Cloud CircuitBreaker

  • Reactive Resilience4J CircuitBreakers can now be configured using configuration properties (#107)

Spring Cloud Netflix

  • JDK 16 compatibility issues fixed (#3982)

Spring Cloud OpenFeign

  • Fixed creating circuits with SC CircuitBreaker so that the group is added as well (#514)
  • Added support for refreshing connectTimeout and readTimeout (#468)
  • Exposed request attributes for circuit breaker async invocation (#193)

Spring Cloud Sleuth

  • Update WebFlux integration to leverage Brave's NettyHttpTracing (#1690)
  • Fixed the new decorate_queues Reactor instrumentation option (#1900)

The following modules were updated as part of 2020.0.3:

Module Version Issues
Spring Cloud Bus 3.0.3
Spring Cloud Circuitbreaker 2.0.2
Spring Cloud Cli 3.0.3
Spring Cloud Cloudfoundry 3.0.2
Spring Cloud Commons 3.0.3 issues
Spring Cloud Config 3.0.4 issues
Spring Cloud Consul 3.0.3 issues
Spring Cloud Contract 3.0.3 issues
Spring Cloud Gateway 3.0.3 issues
Spring Cloud Kubernetes 2.0.3 issues
Spring Cloud Netflix 3.0.3 issues
Spring Cloud Openfeign 3.0.3 issues
Spring Cloud Sleuth 3.0.3 issues
Spring Cloud Task 2.3.2
Spring Cloud Vault 3.0.3
Spring Cloud Zookeeper 3.0.3 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.3</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.3'
  }
}

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