Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn 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.
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.
ConfigData
(#1689)spring.config.import=consul:
. (#703)HttpClient
proxy type is customizable. (#2140)Message
as well as additional routing mechanism via user provided callbackSleuthFeignBuilder
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'
//...
}