Spring Cloud Hoxton.SR9 已发布

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

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

Hoxton 发布列车的显著变化

查看此版本中包含的所有问题 此处

这主要是一个错误修复和文档发布。

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

Spring Cloud Gateway

Spring Cloud Commons

Spring Cloud Netflix

Spring Cloud OpenFeign

Spring Cloud Contract

Spring Cloud Sleuth

Spring Cloud Config

Spring Cloud Consul


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

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

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

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

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

查看全部