领先一步
VMware 提供培训和认证,助您快速提升。
了解更多我代表社区,很高兴地宣布 Spring Cloud 2020.0.0(代号:Ilford
)发布列车的里程碑 1(M1)版本今天已发布。该版本可以在 Spring Milestone 仓库中找到。您可以查看 2020 发布说明以获取更多信息。
我们更改了发布列车版本控制方案。我们现在遵循 日历版本控制,简称 calver。我们将遵循 YYYY.MINOR.MICRO
方案,其中 MINOR
是一个从每年零开始递增的数字。MICRO
段对应于以前使用的后缀:.0
等同于 .RELEASE
,.2
等同于 .SR2
。预发布后缀也将从使用 .
更改为使用 -
作为分隔符,例如 2020.0.0-M1
和 2020.0.0-RC2
。我们还将停止在快照前面加上 BUILD-
前缀,例如 2020.0.0-SNAPSHOT
。
我们将继续使用伦敦地铁站名称作为代号。当前代号为 Ilford
。这些名称将不再用于发布到 Maven 存储库的版本中。
Spring Cloud AWS 和 Spring Cloud GCP 不再是发布列车的一部分。它们将继续作为 Hoxton 的一部分,只要它得到支持,至少到 2021 年 6 月。Spring Cloud GCP 将继续作为一个独立的项目在 https://github.com/GoogleCloudPlatform 中进行开发。
初始里程碑版本基于 Spring Boot 2.3.x,但一旦该版本开始,将切换到 2.4.x。
一旦 Spring Boot 的下一个功能版本(2.4.0)开始开发,2020.0
发布列车将在 https://start.spring.io 上可用。有关将此版本包含在您的项目中的说明,请参见下面的 入门。
总共,此版本包含 183 个问题、增强功能、错误和拉取请求。有关详细信息,请参阅 GitHub 项目。
更新为支持最新版本的 Brave。
添加了对 Consul 服务元数据的支持,而不是使用标签作为元数据。
服务实例元数据现在已添加到路由元数据中。添加了对修改请求或响应主体(即使主体为空)的支持。添加了忽略路由定义错误的选项。
在 Maven 插件中添加了对增量测试生成的支持。在 stubrunner 中添加了对 Spring Cloud Loadbalancer 的支持。
以下模块已作为 2020.0.0-M1 的一部分进行了更新
| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Netflix | 3.0.0.M1 | (问题) | Spring Cloud Function | 3.1.0.M1 |
| Spring Cloud Sleuth | 3.0.0.M1 | (问题) | Spring Cloud Consul | 3.0.0.M1 | (问题) | Spring Cloud Kubernetes | 2.0.0.M1 |
| Spring Cloud Gateway | 3.0.0.M1 | (问题) | Spring Cloud Circuitbreaker | 2.0.0.M1 |
| Spring Cloud Contract | 3.0.0.M1 | (问题) | Spring Cloud Config | 3.0.0.M1 |
| Spring Cloud Build | 3.0.0.M1 |
| Spring Cloud Cloudfoundry | 3.0.0.M1 |
| Spring Cloud Security | 3.0.0.M1 |
| Spring Cloud Bus | 3.0.0.M1 |
| Spring Cloud Vault | 3.0.0.M1 |
| Spring Cloud Zookeeper | 3.0.0.M1 | (问题) | Spring Cloud Commons | 3.0.0.M1 | (问题) | Spring Cloud Openfeign | 3.0.0.M1 | (问题)
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 和 Twitter 上提供反馈。
<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-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>
使用 Gradle 入门
plugins {
id 'org.springframework.boot' version '2.3.0.M4'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
ext {
set('springCloudVersion', "2020.0.0-M1")
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}