Spring Cloud Greenwich.SR4 Released
On behalf of the community, I am pleased to announce that the Service Release 4 (SR4) 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
Spring Cloud Greenwich.SR4 is built upon Spring Boot 2.1.10.RELEASE.
Spring Cloud Kubernetes
Spring Cloud Commons
Spring Cloud Openfeign
- Upgraded to OpenFeign 10.4.0
- Bug Fixes
Spring Cloud Contract
Spring Cloud Vault
- Dependency and documentation changes
- Bug Fixes
Spring Cloud Netflix
Spring Cloud Sleuth
Spring Cloud Config
Spring Cloud Gateway
- Added support for Spring Cloud LoadBalancer
- Bug Fixes
The following modules were updated as part of Greenwich.SR4:
Module | Version | Issues |
---|---|---|
Spring Cloud Security | 2.1.5.RELEASE | |
Spring Cloud Starter | Greenwich.SR4 | |
Spring Cloud Kubernetes | 1.0.4.RELEASE | (issues) |
Spring Cloud Commons | 2.1.4.RELEASE | (issues) |
Spring Cloud Openfeign | 2.1.4.RELEASE | (issues) |
Spring Cloud Dependencies Parent | 2.1.9.RELEASE | |
Spring Cloud Stream | Fishtown.SR4 | |
Spring Cloud Contract | 2.1.4.RELEASE | (issues) |
Spring Cloud Consul | 2.1.4.RELEASE | (issues) |
Spring Cloud Vault | 2.1.4.RELEASE | (issues) |
Spring Cloud Dependencies | Greenwich.SR4 | |
Spring Cloud Zookeeper | 2.1.4.RELEASE | |
Spring Cloud Task | 2.1.3.RELEASE | |
Spring Cloud Bus | 2.1.4.RELEASE | (issues) |
Spring Cloud Release | Greenwich.SR4 | |
Spring Cloud Cloudfoundry | 2.1.4.RELEASE | |
Spring Cloud Build | 2.1.9.RELEASE | |
Spring Cloud Netflix | 2.1.4.RELEASE | (issues) |
Spring Cloud | Greenwich.SR4 | |
Spring Cloud Sleuth | 2.1.6.RELEASE | (issues) |
Spring Cloud Config | 2.1.5.RELEASE | (issues) |
Spring Cloud Gateway | 2.1.4.RELEASE | (issues) |
Spring Cloud Function | 2.0.2.RELEASE | (issues) |
Spring Cloud Gcp | 1.1.4.RELEASE | |
Spring Cloud Starter Parent | Greenwich.SR4 | |
Spring Cloud Aws | 2.1.4.RELEASE |
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.SR4</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.2.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Greenwich.SR4'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}