Spring Cloud Hoxton.SR7 已发布

发布 | Spencer Gibb | 2020年8月4日 | ...

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

Hoxton 发布列车中的重大更改

GitHub 项目 中查看所有包含的问题和拉取请求。

Spring Cloud Netflix

CVE-2020-5412:spring-cloud-netflix-hystrix-dashboard 中的 Hystrix Dashboard 代理

Spring Cloud Cloud Foundry

将 CF Java 客户端升级到 3.25.0.RELEASE。

Spring Cloud Consul

在 Consul 绑定器中添加了对 byte[] 消息的支持。

Spring Cloud Gateway

添加了根据 HTTP 状态代码触发 Spring Cloud 断路器的支持。

Spring Cloud Config

添加了通过属性禁用 JDBC 支持的功能。

Spring Cloud Contract

添加了 ReactiveDiscoveryClient 的基于 StubRunner 的实现。

Spring Cloud OpenFeign

添加了对 CollectionFormat 的支持,并在使用 @FeignClient 时进行了改进。

Spring Cloud AWS

这是在新的社区维护者领导下的第一个 GA 版本。

Spring Cloud GCP

此版本包含许多优秀的社区贡献

  • 新的 Spring Cloud GCP 启动器 spring-cloud-gcp-starter-metrics 配置 Micrometer Stackdriver 以自动获取项目 ID 和凭据(感谢 @eddumelendez)。
  • 用于管理 SecretManagerTemplate 上的密钥版本的其他操作(感谢 @kioie)。
  • 其他 GCS Spring Integration 文件过滤器 GcsAcceptModifiedAfterFileListFilterGcsDiscardRecentModifiedFileListFilter(感谢 @hosainnet)。

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

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Starter Build | Hoxton.SR7 |
| Spring Cloud Cloudfoundry | 2.2.3.RELEASE |
| Spring Cloud Kubernetes | 1.1.5.RELEASE |
| Spring Cloud Consul | 2.2.4.RELEASE | (问题) | Spring Cloud Gateway | 2.2.4.RELEASE | (问题) | Spring Cloud Config | 2.2.4.RELEASE | (问题) | Spring Cloud Contract | 2.2.4.RELEASE | (问题) | Spring Cloud Netflix | 2.2.4.RELEASE | (问题) | Spring Cloud Gcp | 1.2.4.RELEASE |
| Spring Cloud Security | 2.2.4.RELEASE |
| Spring Cloud Sleuth | 2.2.4.RELEASE | (问题) | Spring Cloud Openfeign | 2.2.4.RELEASE | (问题) | Spring Cloud Cli | 2.2.2.RELEASE |
| Spring Cloud Commons | 2.2.4.RELEASE | (问题) | Spring Cloud Aws | 2.2.3.RELEASE | (问题) | Spring Cloud Vault | 2.2.4.RELEASE |
| Spring Cloud Zookeeper | 2.2.3.RELEASE | (问题) | Spring Cloud Circuitbreaker | 1.0.4.RELEASE |
| Spring Cloud Bus | 2.2.3.RELEASE |

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

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

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

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

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

dependencies {
  compile 'org.springframework.cloud:spring-cloud-starter-config'
  compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
  //...
}

获取 Spring 时事通讯

与 Spring 时事通讯保持联系

订阅

获得支持

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

了解更多信息

即将举行的活动

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

查看全部