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 1 (M1) of the Spring Cloud 2021 Release Train is available today. The release can be found in Spring Milestone repository. You can check out the 2021 release notes for more information.
This release is compatible with Spring Boot 2.6.0-M1.
The GitHub Project for this release can be found here.
1
instead of 0
#2033CacheRequestBodyFilter
#1943TaskJobLauncherCommandLineRunner
in favor of the TaskJobLauncherApplicationRunner
.The following modules were updated as part of 2021.0.0-M1:
Module | Version | Issues |
---|---|---|
Spring Cloud Consul | 3.1.0-M1 | (issues) |
Spring Cloud Gateway | 3.1.0-M1 | (issues) |
Spring Cloud Zookeeper | 3.1.0-M1 | |
Spring Cloud Sleuth | 3.1.0-M1 | (issues) |
Spring Cloud Cli | 3.1.0-M1 | |
Spring Cloud Starter Build | 2021.0.0-M1 | |
Spring Cloud Bus | 3.1.0-M1 | |
Spring Cloud Vault | 3.1.0-M1 | |
Spring Cloud Commons | 3.1.0-M1 | |
Spring Cloud Openfeign | 3.1.0-M1 | (issues) |
Spring Cloud Kubernetes | 2.1.0-M1 | (issues) |
Spring Cloud Task | 2.4.0-M1 | |
Spring Cloud Config | 3.1.0-M1 | (issues) |
Spring Cloud Netflix | 3.1.0-M1 | |
Spring Cloud Contract | 3.1.0-M1 | |
Spring Cloud Cloudfoundry | 3.1.0-M1 | |
Spring Cloud Circuitbreaker | 2.1.0-M1 |
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>2021.0.0-M1</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:2021.0.0-M1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}