Spring Cloud 2020.0.2 (aka Ilford) Is Available

Releases | Spencer Gibb | March 18, 2021 | ...

On behalf of the community, I am pleased to announce that Service Release 2 of the Spring Cloud 2020.0 Release Train (2020.0.2) 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.2 Release Train

This release was primarliy for bug fixes and dependency upgrades.

See this page for a list of Known Issues.

See the wiki for a list of all breaking changes in this release train.

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

Spring Cloud Commons

  • Hint-based instance selection for SC LoadBalancer added (#672)
  • Request-based sticky-session support added in blocking LoadBalancer client (#901)

Spring Cloud Config

  • TLS support added when using ConfigData (#1689)

Spring Cloud Consul

  • Retry support was added for spring.config.import=consul:. (#703)
  • Attempts regegistration if the service is deregistered from local agent. (#703)
  • Adds support for multiple default query tags. (#684)

Spring Cloud Gateway

  • Support added for adding service instance id cookies (#2070)
  • The HttpClient proxy type is customizable. (#2140)

Spring Cloud Function

  • Improved RSocket Support with added ability to send and receive Spring Message as well as additional routing mechanism via user provided callback
  • New and improved FunctionInvoker for Microsoft Azure adapter with updated sample showcasing it's usage.
  • Initial support for Kotlin Coroutines (thanks to Adrien Poupard).

Spring Cloud Kubernetes

  • Add the ability to configure the primary port used for a service (#733)
  • Update Kubernetes Java Client To 11.0.1 (#708)

Spring Cloud CircuitBreaker

  • Add the ability to use Resilience4J Bulkhead module (#86)
  • Add the ability to configure Resilience4J via configuration properties (#61)

Spring Cloud OpenFeign

Spring Cloud Sleuth

  • SleuthFeignBuilder now allows the ability to provide a custom delegate (#1865)

The following modules were updated as part of 2020.0.2:

Module Version Issues
Spring Cloud Bus 3.0.2
Spring Cloud Circuitbreaker 2.0.1
Spring Cloud Cli 3.0.2
Spring Cloud Cloudfoundry 3.0.1
Spring Cloud Commons 3.0.2
Spring Cloud Config 3.0.3
Spring Cloud Consul 3.0.2
Spring Cloud Contract 3.0.2
Spring Cloud Gateway 3.0.2
Spring Cloud Kubernetes 2.0.2
Spring Cloud Netflix 3.0.2
Spring Cloud Openfeign 3.0.2
Spring Cloud Sleuth 3.0.2
Spring Cloud Task 2.3.1
Spring Cloud Vault 3.0.2
Spring Cloud Zookeeper 3.0.2

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

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