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 Milestone 6 (M6) of the Spring Cloud 2020 Release Train is available today. The release can be found in Spring Milestone repository. You can check out the 2020 release notes for more information.
This release is compatible with Spring Boot 2.4.0.
This release requires Spring Boot 2.4.0.
Please 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.
Click here for the list of tasks done for this release
Click here for the list of tasks done for this release.
Click here for the list of tasks done for this release.
A new implementation of Spring Cloud Kuberentes Config was added based on the Kubernetes Java Client (PR)
A new implementation of Spring Cloud Kubernetes Discovery Client was added based on the Kubernetes Java Client (PR)
Click here for the list of tasks done for this release.
Click here for the list of tasks done for this release.
/pause
endpoint (PR)Click here for the list of tasks done for this release.
The following modules were updated as part of 2020.0.0-M6:
| Module | Version | Issues
|--- |--- |--- |---
| Spring Cloud Sleuth | 3.0.0-M6 | (issues)
| Spring Cloud Consul | 3.0.0-M6 |
| Spring Cloud Gateway | 3.0.0-M6 |
| Spring Cloud Zookeeper | 3.0.0-M6 |
| Spring Cloud Config | 3.0.0-M6 |
| Spring Cloud Cloudfoundry | 3.0.0-M6 |
| Spring Cloud Netflix | 3.0.0-M6 |
| Spring Cloud Kubernetes | 2.0.0-M6 | (issues)
| Spring Cloud Circuitbreaker | 2.0.0-M6 |
| Spring Cloud Contract | 3.0.0-M6 | (issues)
| Spring Cloud Starter Build | 2020.0.0-M6 |
| Spring Cloud Security | 3.0.0-M6 |
| Spring Cloud Bus | 3.0.0-M6 |
| Spring Cloud Cli | 3.0.0-M6 |
| Spring Cloud Vault | 3.0.0-M6 |
| Spring Cloud Openfeign | 3.0.0-M6 |
| Spring Cloud Commons | 3.0.0-M6 |
| Spring Cloud Task | 3.0.0-M4 |
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):
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2020.0.0-M6</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"
}
}
repositories {
maven {
url 'https://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2020.0.0-M6'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}