Spring Cloud 2020.0.0-M3(代号 Ilford)现已发布

发布 | Spencer Gibb | 2020 年 7 月 28 日 | ...

发布

我代表社区很高兴地宣布,Spring Cloud 2020.0 发布列车(代号 Ilford)的里程碑 3(M3)版本今天发布。该版本可以在 Spring Milestone 存储库中找到。您可以查看 2020.0 的 发布说明以获取更多信息

2020.0 发布列车的显著变化

此版本需要 Spring Boot 2.4.0-M1。

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

Spring Cloud Sleuth

  • 改进了与 Reactor 的集成 问题
  • 与 Spring Cloud Function 集成
  • 与 MongoDB 集成 问题

Spring Cloud Kubernetes

  • 现在,当 ConfigMaps 或 Secrets 中的值发生变化时,可以刷新应用程序配置,而无需依赖 Kubernetes API。参见 #567
  • 改进了维护绑定到 java.util.Map 的属性的数据类型和定义顺序。参见 #554

Spring Cloud Consul

在 Consul Bus 中添加了对非字符串有效负载类型的支持。

Spring Cloud Config

JDBC 环境存储库现在可以使用属性禁用。

Spring Cloud Function

除了少量增强和错误修复之外,此版本还包括对 RSocket 集成的初始支持。稍后将发布单独的博文。

Spring Cloud Gateway

  • 添加了根据返回的状态码触发断路器功能。参见 #1836

Spring Cloud Contract

  • 将 WireMock 升级到 2.27.0 问题
  • 将 Rest Assured 版本与 Boot 对齐 问题
  • 大量库升级 问题

Spring Cloud Commons

Spring Cloud Loadbalancer 生命周期已 完成。这允许用户以类型安全的方式轻松响应负载均衡器生命周期事件。

Spring Cloud Openfeign

添加了对 OpenFeign 集合格式的支持 问题

Spring Cloud Stream

与 Spring Cloud Function 的更紧密集成,TestBinder 中的一些新功能允许您发送到和接收来自命名目标,动态目标的显著性能改进,以及框架中的众多增强和错误修复。

Spring Cloud Task

Spring Cloud Task 已将 JdbcCursorItemReaderJdbcItemWriter 添加到单步批处理作业功能的启动器中。此功能允许用户仅通过属性配置单步 Spring Batch 作业。有关如何使用此功能的示例,请参见 此处


以下模块已在 2020.0.0-M3 版本中更新

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Bus | 3.0.0-M3 |
| Spring Cloud Circuitbreaker | 2.0.0-M3 |
| Spring Cloud Cloudfoundry | 3.0.0-M3 |
| Spring Cloud Commons | 3.0.0-M3 |
| Spring Cloud Config | 3.0.0-M3 | (问题) | Spring Cloud Consul | 3.0.0-M3 |
| Spring Cloud Contract | 3.0.0-M3 | (问题) | Spring Cloud Function | 3.1.0-M2 |   | Spring Cloud Gateway | 3.0.0-M3 |
| Spring Cloud Kubernetes | 2.0.0-M3 |
| Spring Cloud Netflix | 3.0.0-M3 |
| Spring Cloud Openfeign | 3.0.0-M3 |
| Spring Cloud Security | 3.0.0-M3 |
| Spring Cloud Sleuth | 3.0.0-M3 |
| Spring Cloud Stream | 3.1.0-M2 |   | Spring Cloud Task | 2.3.0-M2 |   | Spring Cloud Vault | 3.0.0-M3 |
| Spring Cloud Zookeeper | 3.0.0-M3 |

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

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

<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://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>2020.0.0-M3</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"
  }
}

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

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

dependencyManagement {
  imports {
    mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2020.0.0-M3'
  }
}

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

查看全部