Spring Cloud Greenwich.SR2 is available.
On behalf of the community, I am pleased to announce that Service Release 2 (SR2) 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 for more information.
Notable Changes in the Greenwich Release Train
All projects were updated in coordination with the Spring nohttp effort.
Spring Cloud Gateway
Many updates and fixes were included via Reactor and Reactor Netty. Gateway also efficiently caches the request body when Retry is enabled or if the Read Body Predicate is used.
Spring Cloud Config
Allows Vault to be used when running Config Server in embedded mode.
Spring Cloud Openfeign
Adds support for Spring HATEOAS Resources.
Spring Cloud Kubernetes
Adds support for including ConfigMaps based on active profiles.
Spring Cloud Contract
The Gradle plugin is now published to the Gradle plugin portal.
The following modules were updated as part of Greenwich.SR2:
Module | Version | Issues |
---|---|---|
Spring Cloud Task | 2.1.2.RELEASE | |
Spring Cloud Config | 2.1.3.RELEASE | (issues) |
Spring Cloud Stream | Fishtown.SR3 | (issues) |
Spring Cloud Sleuth | 2.1.2.RELEASE | (issues) |
Spring Cloud Commons | 2.1.2.RELEASE | (issues) |
Spring Cloud Openfeign | 2.1.2.RELEASE | (issues) |
Spring Cloud Kubernetes | 1.0.2.RELEASE | (issues) |
Spring Cloud Aws | 2.1.2.RELEASE | |
Spring Cloud Vault | 2.1.2.RELEASE | |
Spring Cloud Function | 2.0.2.RELEASE | (issues) |
Spring Cloud Bus | 2.1.2.RELEASE | (issues) |
Spring Cloud Build | 2.1.6.RELEASE | |
Spring Cloud Zookeeper | 2.1.2.RELEASE | |
Spring Cloud Gcp | 1.1.2.RELEASE | |
Spring Cloud Contract | 2.1.2.RELEASE | (issues) |
Spring Cloud Consul | 2.1.2.RELEASE | (issues) |
Spring Cloud Security | 2.1.3.RELEASE | |
Spring Cloud Gateway | 2.1.2.RELEASE | (issues) |
Spring Cloud Cloudfoundry | 2.1.2.RELEASE | |
Spring Cloud Netflix | 2.1.2.RELEASE | (issues) |
As always, we welcome feedback on GitHub, Gitter, Stack Overflow, or Twitter.
To get started using Maven with a BOM (dependency management only):
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR2</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 using Gradle:
buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.8.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Greenwich.SR2'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}