Spring Cloud Hoxton.SR9 已发布

版本发布 | Olga Maciaszek-Sharma | 2020年11月10日 | ...

我谨代表社区,很高兴地宣布 Spring Cloud Hoxton 发布列车的 Service Release 9 (SR9) 今日发布。您可以在 Maven Central 找到该版本。您可以查看 Hoxton 版本说明以获取更多信息

Hoxton 发行版列车中的显著更改

在此版本中包含的所有问题,请 点击此处 查看。

这主要是一个错误修复和文档更新版本。

请在 GitHub 项目 查看所有包含的问题和拉取请求。Hoxton.SR9 与 Spring Boot 2.3.x 和 2.2.x 兼容。

Spring Cloud Gateway

Spring Cloud Commons

  • 在 SC 负载均衡器中增加了对 阻塞重试 的支持

Spring Cloud Netflix

  • 升级了各种依赖项
  • 增加了对 ReactiveHealthIndicator支持

Spring Cloud OpenFeign

Spring Cloud Contract

  • 增加了在 git URL 中禁用 .git 后缀的 选项

Spring Cloud Sleuth

  • 增加了对 RetryableFeignBlockingLoadBalancerClient仪表盘支持

Spring Cloud Config

Spring Cloud Consul


作为 Hoxton.SR9 更新的一部分,以下模块已更新:

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Starter Build | Hoxton.SR9 |
| Spring Cloud Netflix | 2.2.6.RELEASE | (issues) | Spring Cloud Openfeign | 2.2.5.RELEASE | (issues) | Spring Cloud Config | 2.2.6.RELEASE | (issues) | Spring Cloud Aws | 2.2.5.RELEASE | (issues) | Spring Cloud Gateway | 2.2.6.RELEASE | (issues) | Spring Cloud Gcp | 1.2.6.RELEASE |
| Spring Cloud Commons | 2.2.6.RELEASE | (issues) | Spring Cloud Consul | 2.2.5.RELEASE | (issues) | Spring Cloud Contract | 2.2.5.RELEASE | (issues) | Spring Cloud Kubernetes | 1.1.7.RELEASE | (issues) | Spring Cloud Sleuth | 2.2.6.RELEASE | (issues) | Spring Cloud Vault | 2.2.6.RELEASE |
| Spring Cloud Zookeeper | 2.2.4.RELEASE |
| Spring Cloud CLI | 2.2.3.RELEASE |

一如既往,我们欢迎大家在 GitHubGitterStack OverflowTwitter 上提供反馈。

Maven 起步使用 BOM(仅依赖管理)

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

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

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

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

查看所有