Spring Cloud Hoxton.SR11 已发布

发布 | Haytham Mohamed | 2021年4月22日 | ...

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

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

在此处查看此版本中包含的所有问题:https://github.com/orgs/spring-cloud/projects/57

这主要是一个错误修复和文档发布。Hoxton.SR11 与 Spring Boot 2.3.x 和 2.2.x 兼容。

Spring Cloud Commons

Spring Cloud Gateway

Spring Cloud OpenFeign

Spring Cloud Config

Spring Cloud CircuitBreaker

Spring Cloud Kubernetes

Spring Cloud Consul

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

模块 版本 问题
Spring Cloud Starter Build Hoxton.SR11
Spring Cloud Netflix 2.2.8.RELEASE (问题)
Spring Cloud Openfeign 2.2.8.RELEASE (问题)
Spring Cloud Config 2.2.8.RELEASE (问题)
Spring Cloud Gateway 2.2.8.RELEASE (问题)
Spring Cloud Gcp 1.2.8.RELEASE
Spring Cloud Commons 2.2.8.RELEASE (问题)
Spring Cloud Consul 2.2.7.RELEASE (问题)
Spring Cloud Contract 2.2.7.RELEASE (问题)
Spring Cloud Kubernetes 1.1.9.RELEASE (问题)
Spring Cloud Sleuth 2.2.8.RELEASE (问题)
Spring Cloud Stream Horsham.SR12
Spring Cloud Function 3.0.14.RELEASE
Spring Cloud Bus 2.2.4.RELEASE
Spring Cloud Circuit Breaker 1.0.5.RELEASE
Spring Cloud Security 2.2.5.RELEASE
Spring Cloud ZooKeeper 2.2.5.RELEASE (问题)

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

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

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Hoxton.SR11</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.SR11'
  }
}

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

查看所有