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

发布 | Ryan Baxter | 2020年10月7日 | ...

我代表社区很高兴地宣布,Spring Cloud 2020 发布列车的里程碑版本 4 (M4) 今天已发布。此版本可以在 Spring Milestone 存储库中找到。您可以查看 2020 年的 发行说明以获取更多信息

2020 发布列车的显著变化

此版本需要 Spring Boot 2.4.0-M3。

请参阅 [wiki] 以获取此发布列车中所有重大更改的列表。

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

Spring Cloud Commons

  • 引导阶段不再默认启用。如果您的项目需要它,可以通过属性或新的启动器重新启用它。要通过属性重新启用,请设置 spring.cloud.bootstrap.enabled=truespring.config.use-legacy-processing=true。这些需要设置为环境变量、Java 系统属性或命令行参数。另一个选项是包含新的 spring-cloud-starter-bootstrap。引导主要用于从远程源导入配置。要无需引导执行此操作,请参阅 Config、Consul、Vault 和 Zookeeper 中的新功能。

  • 添加了 避免在同一实例上重试的机制

Spring Cloud Sleuth

Spring Cloud Consul

  • 针对 Spring Boot 的 Config Data API 的集成允许导入默认的 consul 路径(spring.config.import=consul:)或单个路径(spring.config.import=consul:myhost:8500/my-app,myprofile;other-context-path)。
  • 现在使用 Testcontainers 进行集成测试。

Spring Cloud Config

Spring Cloud Kubernetes

  • 来自 spring-cloud-kubernetes-core 的通用接口已移动到一个新模块 (#649)

  • 重构 ConfigurationChangeListener (#643)

  • 添加对 Spring Cloud LoadBalancer 的支持 (#562)

Spring Cloud Gateway

  • spring-cloud-gateway-core 模块移动到 spring-cloud-gateway-server
  • 禁用过滤器和谓词的属性。
  • 添加执行器端点以列出 RouteDefinition(s)。

Spring Cloud Contract

Spring Cloud Bus

  • 迁移为使用 Spring Cloud Function 作为 Spring Cloud Stream 编程接口 而不是旧版注释
  • 执行器端点从 bus-env 移动到 busenv,以及从 bus-refresh 移动到 busrefresh

Spring Cloud Zookeeper

  • 针对 Spring Boot 的 Config Data API 的集成允许导入默认的 zookeeper 路径(spring.config.import=zookeeper:)或单个路径(spring.config.import=zookeeper:myhost:2181/my-app,myprofile;other-context-path)。

Spring Cloud Openfeign

Spring Cloud Vault

以下模块已在 2020.0.0-M4 中更新

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Sleuth | 3.0.0-M4 | (问题) | Spring Cloud Consul | 3.0.0-M4 | (问题) | Spring Cloud Config | 3.0.0-M4 | (问题) | Spring Cloud Kubernetes | 2.0.0-M4 | (问题) | Spring Cloud Gateway | 3.0.0-M4 |
| Spring Cloud Circuitbreaker | 2.0.0-M4 |
| Spring Cloud Contract | 3.0.0-M4 | (问题) | Spring Cloud Starter Build | 2020.0.0-M4 |
| Spring Cloud Netflix | 3.0.0-M4 | (问题) | Spring Cloud Cloudfoundry | 3.0.0-M4 |
| Spring Cloud Security | 3.0.0-M4 |
| Spring Cloud Cli | 3.0.0-M4 |
| Spring Cloud Bus | 3.0.0-M4 | (问题) | Spring Cloud Zookeeper | 3.0.0-M4 | (问题) | Spring Cloud Commons | 3.0.0-M4 | (问题) | Spring Cloud Openfeign | 3.0.0-M4 | (问题) | Spring Cloud Vault | 3.0.0-M4 | (问题)

一如既往,我们欢迎您在 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-M4</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-M4'
  }
}

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

查看全部