Spring Cloud 2023.0.3 (又名 Leyton) 已釋出

版本釋出 | Olga Maciaszek-Sharma | 2024年7月11日 | ...

我很高興代表社群宣佈,Spring Cloud 2023.0.3 釋出列車的通用可用性 (RELEASE) 版本於今日釋出。該版本可在 Maven Central 找到。

2023.0.3 釋出列車中的顯著變化

此版本基於 Spring Boot 3.2.7,主要包含 bug 修復和依賴項升級。

在此版本的GitHub 專案中可以找到所有更改的完整列表。

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

模組 版本 問題
Spring Cloud Vault 4.1.3
Spring Cloud Bus 4.1.2
Spring Cloud Zookeeper 4.1.2
Spring Cloud Kubernetes 3.1.3 (問題)
Spring Cloud Task 3.1.2 (問題)
Spring Cloud Function 4.1.3 (問題)
Spring Cloud Commons 4.1.4 (問題)
Spring Cloud OpenFeign 4.1.3 (問題)
Spring Cloud CircuitBreaker 3.1.2 (問題)
Spring Cloud Starter Build 2023.0.3
Spring Cloud Stream 4.1.3
Spring Cloud Gateway 4.1.5 (問題)
Spring Cloud Consul 4.1.2
Spring Cloud Contract 4.1.4 (問題)
Spring Cloud Config 4.1.3 (問題)
Spring Cloud Build 4.1.3
Spring Cloud Netflix 4.1.3 (問題)

一如既往,我們歡迎大家在 GitHubStack OverflowTwitter 上提出反饋意見。

Maven 起步使用 BOM(僅依賴管理)


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

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

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

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

檢視所有