Spring Cloud 2021.0.0-RC1(代号Jubilee)已发布

版本发布 | Marcin Grzejszczak | 2021年11月3日 | ...

我代表社区高兴地宣布,代号为Jubilee的Spring Cloud 2021.0发行列车第一个候选版本(RC1)现已推出。此版本可以在Spring Milestone仓库中找到。您可以查看2021.0的发行说明以了解更多信息

2021.0发行列车的显著变化

RC1与Spring Boot 2.6.0-RC1兼容

查看项目页面以了解此版本中包含的所有问题和拉取请求。

Spring Cloud Commons

  • 添加了对每个负载均衡器客户端属性的支持。(问题)
  • 使用负载均衡的RestTemplate时添加X-Forwarded-*标头。(问题)

Spring Cloud Kubernetes

  • 添加了在spring.cloud.kubernetes.enabled=false时禁用发现的支持。(问题)
  • 当无法读取ConfigMap时,改进了错误处理。(问题)
  • 添加了对读取配置的快速失败和重试的支持。(问题)

Spring Cloud Openfeign

  • 添加了对每个负载均衡器客户端属性的支持。(问题)
  • 添加了对Feign客户端的@Cachable的支持。(问题)

Spring Cloud Sleuth

  • 添加了对检测Mongo的响应式驱动程序的支持。(问题)
  • 添加了对Spring Cloud Stream响应式功能的支持。(问题)

Spring Cloud Contract

  • 添加了对每个负载均衡器客户端属性的支持。(问题)

Spring Cloud Gateway

  • 添加了对每个负载均衡器客户端属性的支持。(问题)
  • 添加了对路由谓词访问者模式的支持。(问题)

以下模块已作为2021.0.0-RC1的一部分更新

模块 版本 问题
Spring Cloud Vault 3.1.0-RC1
Spring Cloud Bus 3.1.0-RC1
Spring Cloud CLI 3.1.0-RC1
Spring Cloud Zookeeper 3.1.0-RC1
Spring Cloud Circuitbreaker 2.1.0-RC1
Spring Cloud Commons 3.1.0-RC1 (问题)
Spring Cloud Kubernetes 2.1.0-RC1 (问题)
Spring Cloud Openfeign 3.1.0-RC1 (问题)
Spring Cloud Task 2.4.0-RC1 (问题)
Spring Cloud Sleuth 3.1.0-RC1 (问题)
Spring Cloud Contract 3.1.0-RC1 (问题)
Spring Cloud Consul 3.1.0-RC1
Spring Cloud Gateway 3.1.0-RC1 (问题)
Spring Cloud Config 3.1.0-RC1 (问题)
Spring Cloud Cloud Foundry 3.1.0-RC1
Spring Cloud Starter Build 2021.0.0-RC1
Spring Cloud Netflix 3.1.0-RC1

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

要使用具有BOM(仅依赖项管理)的Maven开始


<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>2021.0.0-RC1</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

plugins {
  id 'org.springframework.boot' version '2.6.0-RC1'
  id 'io.spring.dependency-management' version '1.0.11.RELEASE'
  id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

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

ext {
  set('springCloudVersion', "2021.0.0-RC1")
}

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

dependencyManagement {
  imports {
    mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
  }
}

获取Spring新闻

通过Spring新闻保持联系

订阅

领先一步

VMware提供培训和认证,以加快您的进度。

了解更多

获取支持

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

了解更多

即将举行的活动

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

查看全部