Spring Cloud Finchley.SR2 现已发布

版本发布 | Ryan Baxter | 2018年10月24日 | ...

代表社区,我很高兴地宣布 Spring Cloud Finchley Release Train 的 SR2 (Service Release) 版本现已发布。您可以在 Maven Central 中找到该版本。您可以查看 Finchley 的 发布说明以获取更多信息

Spring Cloud Gateway

  • 支持 Hystrix 超时中的 WebFlux 错误处理 #553
  • 读取 PEM 文件中的多个证书 #583
  • 支持配置 TLS 超时 #578
  • ModifyRequestBodyGatewayFilterFactory 正确更新标头 #492
  • 支持重定向过滤器中的相对重定向 #468
  • 错误修复

Spring Cloud Sleuth

Spring Cloud Config

Spring Cloud Netflix

  • 支持在 Sidecars 中接受所有证书 #3224
  • HystrixCommands.fallback 现在支持接收导致 fallback 被调用的 Throwable #3210
  • 错误修复

Spring Cloud Commons

  • 在使用 @LoadBalanced WebClient 时提供更好的错误处理 #386
  • 服务注册 之前触发 InstancePreRegisteredEvent
  • 错误修复

Spring Cloud Contract

Spring Cloud Vault

Spring Cloud Openfeign

Spring Cloud Security

  • 依赖更新

Spring Cloud AWS

作为 Finchley.SR2 的一部分,以下模块已更新

模块 版本
Spring Cloud Gateway 2.0.2.RELEASE
Spring Cloud Sleuth 2.0.2.RELEASE
Spring Cloud Config 2.0.2.RELEASE
Spring Cloud Netflix 2.0.2.RELEASE
Spring Cloud Commons 2.0.2.RELEASE
Spring Cloud Contract 2.0.2.RELEASE
Spring Cloud Vault 2.0.2.RELEASE
Spring Cloud Openfeign 2.0.2.RELEASE
Spring Cloud AWS 2.0.1.RELEASE
Spring Cloud Cloud Foundry 2.0.1.RELEASE
Spring Cloud Security 2.0.1.RELEASE

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

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


<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Finchley.SR2</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.5.RELEASE"
    }
}



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

dependencyManagement {
    imports {
        mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR2'
    }
}

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

查看所有