Spring Cloud 2021.0.9 (又名 Jubilee) 現已可用

釋出 | Ryan Baxter | 2023 年 12 月 20 日 | ...

我謹代表社群宣佈,Spring Cloud 2021.0.9 釋出列車今天已正式釋出(RELEASE)。 該版本可在 Maven Central 中找到。 您可以檢視 2021.0.9 發行說明以獲取更多資訊

2021.0.9 釋出列車中的顯著變化

此版本的 Spring Cloud 基於 Spring Boot 2.6.15,並且與 Spring Boot 2.7.18 和 3.0.13 相容。

這將是 Spring Cloud 2021.0.x 的最後一個開源版本。此版本列車中的所有專案均已達到生命週期結束。我們建議您升級到 Spring Cloud 2022.0.x 或 2023.0.x。

以下模組已作為 2021.0.9 的一部分進行更新

模組 版本 問題
Spring Cloud Netflix 3.1.8 (問題)
Spring Cloud Stream 3.2.10 (問題)
Spring Cloud Starter Build 2021.0.9 (問題)
Spring Cloud Consul 3.1.5 (問題)
Spring Cloud Cloudfoundry 3.1.4 (問題)
Spring Cloud Contract 3.1.9 (問題)
Spring Cloud Zookeeper 3.1.5 (問題)
Spring Cloud Sleuth 3.1.10 (問題)
Spring Cloud Bus 3.1.3 (問題)
Spring Cloud Function 3.2.12 (問題)
Spring Cloud Openfeign 3.1.9 (問題)
Spring Cloud Config 3.1.9 (問題)
Spring Cloud Circuitbreaker 2.1.8 (問題)
Spring Cloud Build 3.1.9 (問題)
Spring Cloud Kubernetes 2.1.9 (問題)
Spring Cloud Commons 3.1.8 (問題)
Spring Cloud Vault 3.1.4 (問題)

與往常一樣,我們歡迎您在 GitHubGitterStack OverflowTwitter 上提供反饋。

開始使用 Maven 和 BOM(僅依賴管理)


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

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

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

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 社群中所有即將舉行的活動。

檢視所有