Spring Cloud Hoxton 服务版 1 (SR1) 已发布。

发布 | Spencer Gibb | 2019年12月21日 | ...

我代表社区欣然宣布,Spring Cloud Hoxton 发布列车的服务版 1 (SR1) 今日已发布。此版本可在 Maven Central 中找到。您可以查看 Hoxton 的 发行说明以了解更多信息

Hoxton 发布列车中的显著更改

此里程碑版本主要是一个 bug 修复版本。

请参阅 Hoxton.SR1 的 Github 项目 以查看所有已关闭的问题。

此里程碑版本使用 Spring Boot 2.2.2.RELEASE 构建。

Spring Cloud Config

除了错误修复外,Vault 身份验证已更改为使用 Spring Vault 项目,从而提供更多选项。现在可以通过 AWS S3 环境存储库访问纯文本资源。

Spring Cloud Contract

现在可以在每次测试后重置映射。

Spring Cloud Commons

在 Spring Cloud Loadbalancer 中添加了对区域感知的支持。

Spring Cloud Sleuth

添加了对 Spring Cloud Circuitbreaker 的支持

Spring Cloud Gateway

除了错误修复外,还添加了对新配置属性的支持。

Spring Cloud Netflix

添加了在 Spring Cloud Loadbalancer 中对区域感知的 Eureka 支持。

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

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Config | 2.2.1.RELEASE | (问题) | Spring Cloud Cloudfoundry | 2.2.0.RELEASE |
| Spring Cloud Vault | 2.2.1.RELEASE | (问题) | Spring Cloud Aws | 2.2.1.RELEASE |
| Spring Cloud Bus | 2.2.0.RELEASE |
| Spring Cloud CLI | 2.2.1.RELEASE |
| Spring Cloud GCP | 1.2.1.RELEASE |
| Spring Cloud Contract | 2.2.1.RELEASE | (问题) | Spring Cloud Consul | 2.2.1.RELEASE |
| Spring Cloud Starter | Hoxton.SR1 |
| Spring Cloud Dependencies | Hoxton.SR1 |
| Spring Cloud Starter Parent | Hoxton.SR1 |
| Spring Cloud Sleuth | 2.2.1.RELEASE | (问题) | Spring Cloud Commons | 2.2.1.RELEASE | (问题) | Spring Cloud Openfeign | 2.2.1.RELEASE | (问题) | Spring Cloud Zookeeper | 2.2.0.RELEASE | (问题) | Spring Cloud Kubernetes | 1.1.1.RELEASE |
| Spring Cloud Security | 2.2.0.RELEASE |
| Spring Cloud Circuitbreaker | 1.0.0.RELEASE | (问题) | Spring Cloud Stream | Horsham.SR1 | (问题) | Spring Cloud Gateway | 2.2.1.RELEASE | (问题) | Spring Cloud Netflix | 2.2.1.RELEASE | (问题) | Spring Cloud Function | 3.0.1.RELEASE | (问题) | Spring Cloud Task | 2.2.2.RELEASE |

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

要开始使用带有 BOM(仅依赖项管理)的 Maven


<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Hoxton.SR1</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.8.RELEASE"
}
}



apply plugin: "io.spring.dependency-management"

dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.SR1'
}
}

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 社区中所有即将举行的活动。

查看全部