Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the community, I am pleased to announce that the Service Release 5 (SR5) of the Spring Cloud Greenwich Release Train is available today. The release can be found in Maven Central. You can check out the Greenwich release notes or the Spring Cloud Project for more information.
This release contains bug fixes, minor enhancements and documentation updates.
This is the final scheduled release for the Greenwich Release Train (see here for more details). We reccomend you upgrade to Hoxton as soon as possible. Greenwich.SR5 is based on Spring Boot 2.1.12.
In order to support merging lists from YAML in config client, a change was made so that each PropertySource
is added to the environment individually rather than to a composite.
The following modules were updated as part of Greenwich.SR5:
| Module | Version | Issues
|--- |--- |--- |---
| Spring Cloud Build | 2.1.10.RELEASE |
| Spring Cloud Sleuth | 2.1.7.RELEASE | (issues)
| Spring Cloud Consul | 2.1.5.RELEASE | (issues)
| Spring Cloud Gateway | 2.1.5.RELEASE | (issues)
| Spring Cloud Contract | 2.1.5.RELEASE | (issues)
| Spring Cloud Netflix | 2.1.5.RELEASE | (issues)
| Spring Cloud Gcp | 1.1.5.RELEASE |
| Spring Cloud Config | 2.1.6.RELEASE | (issues)
| Spring Cloud Openfeign | 2.1.5.RELEASE | (issues)
| Spring Cloud Commons | 2.1.5.RELEASE | (issues)
| Spring Cloud Aws | 2.1.4.RELEASE |
| Spring Cloud Vault | 2.1.5.RELEASE |
| Spring Cloud Bus | 2.1.4.RELEASE | (issues)
| Spring Cloud Kubernetes | 1.0.5.RELEASE | (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>Greenwich.SR5</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:
plugins {
id 'org.springframework.boot' version '2.1.12.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
// ...
}