Spring Cloud Greenwich.SR4 发布

发布 | Ryan Baxter | 2019 年 11 月 19 日 | ...

我代表社区,很高兴地宣布 Spring Cloud Greenwich 发布列车 Service Release 4 (SR4) 今天已发布。此版本可以在 Maven Central 中找到。您可以查看 Greenwich 的 发行说明以获取更多信息

Greenwich 发布列车中的重大更改

Spring Cloud Greenwich.SR4 基于 Spring Boot 2.1.10.RELEASE 构建。

Spring Cloud Kubernetes

Spring Cloud Commons

Spring Cloud Openfeign

Spring Cloud Contract

Spring Cloud Vault

Spring Cloud Netflix

Spring Cloud Sleuth

Spring Cloud Config

Spring Cloud Gateway

以下模块已作为 Greenwich.SR4 的一部分进行了更新

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Security | 2.1.5.RELEASE |
| Spring Cloud Starter | Greenwich.SR4 |
| Spring Cloud Kubernetes | 1.0.4.RELEASE | (问题) | Spring Cloud Commons | 2.1.4.RELEASE | (问题) | Spring Cloud Openfeign | 2.1.4.RELEASE | (问题) | Spring Cloud Dependencies Parent | 2.1.9.RELEASE |
| Spring Cloud Stream | Fishtown.SR4 |
| Spring Cloud Contract | 2.1.4.RELEASE | (问题) | Spring Cloud Consul | 2.1.4.RELEASE | (问题) | Spring Cloud Vault | 2.1.4.RELEASE | (问题) | 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 | (问题) | 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 | (问题) | Spring Cloud | Greenwich.SR4 |
| Spring Cloud Sleuth | 2.1.6.RELEASE | (问题) | Spring Cloud Config | 2.1.5.RELEASE | (问题) | Spring Cloud Gateway | 2.1.4.RELEASE | (问题) | Spring Cloud Function | 2.0.2.RELEASE | (问题) | Spring Cloud Gcp | 1.1.4.RELEASE |
| Spring Cloud Starter Parent | Greenwich.SR4 |
| Spring Cloud Aws | 2.1.4.RELEASE |

与往常一样,我们欢迎您在 GitHubGitterStack OverflowTwitter 上提供反馈。

要使用 Maven 和 BOM(仅限依赖项管理)开始使用


<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>

或使用 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'
...
}

获取 Spring 新闻通讯

与 Spring 新闻通讯保持联系

订阅

领先一步

VMware 提供培训和认证,以加速您的进步。

了解更多

获得支持

Tanzu Spring 在一个简单的订阅中提供对 OpenJDK™、Spring 和 Apache Tomcat® 的支持和二进制文件。

了解更多

即将举行的活动

查看 Spring 社区中所有即将举行的活动。

查看全部