Spring Cloud Finchley.RC2 已发布

版本发布 | Ryan Baxter | 2018年5月29日 | ...

我谨代表社区宣布,Spring Cloud Finchley 发布线的 RC2(Release Candidate 2)版本已于今日发布。您可以在 Spring Milestone 仓库中找到该版本。您可以查阅 Finchley 的 发布说明以获取更多信息

Finchley发布火车中的显著变化

Finchley.RC2 基于 Spring Boot 2.0.2。

Spring Cloud Task

Spring Cloud Config

  • 支持跳过 Git 和 Vault 仓库的 SSL 验证
  • 错误修复

Spring Cloud Bus

Spring Cloud Netflix

  • Spring Cloud Netflix Turbine Stream 现在使用 WebFlux
  • 错误修复

Spring Cloud Contract

Spring Cloud Consul

  • 依赖项和文档更新

Spring Cloud Gateway

Spring Cloud Stream

Spring Cloud Sleuth

  • Brave 已更新至 5.0,进行了小的增强和错误修复
  • 错误修复

Spring Cloud Commons

Spring Cloud Function

  • 首次发布版本,包含 Spring Cloud Function
  • 错误修复

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

模块 版本
Spring Cloud Task 2.0.0.RELEASE
Spring Cloud Config 2.0.0.RC2
Spring Cloud Bus 2.0.0.RC2
Spring Cloud Netflix 2.0.0.RC2
Spring Cloud CloudFoundry 2.0.0.RC1
Spring Cloud Security 2.0.0.RC1
Spring Cloud Build 2.0.1.RELEASE
Spring Cloud Contract 2.0.0.RC2
Spring Cloud Consul 2.0.0.RC2
Spring Cloud Gateway 2.0.0.RC2
Spring Cloud Zookeeper 2.0.0.RC1
Spring Cloud Stream Elmhurst.RELEASE
Spring Cloud Sleuth 2.0.0.RC2
Spring Cloud Aws 2.0.0.RC2
Spring Boot 2.0.2.RELEASE
Spring Cloud OpenFeign 2.0.0.RC2
Spring Cloud Vault 2.0.0.RC2
Spring Cloud Commons 2.0.0.RC2
Spring Cloud Function 1.0.0.RC2

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

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

<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>http://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Finchley.RC2</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.2.RELEASE"
    }
}

repositories {
    maven {
        url 'http://repo.spring.io/milestone'
    }
}

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

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

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

查看所有