Spring Cloud 2023.0.3 (aka Leyton) 已發布

發布 | Olga Maciaszek-Sharma | 2024 年 7 月 11 日 | ...

我謹代表社群宣布 Spring Cloud 2023.0.3 Release Train 的正式發行 (RELEASE) 今天正式推出。此版本可在 Maven Central 找到。

2023.0.3 Release Train 的重點變更

此版本基於 Spring Boot 3.2.7,主要包含錯誤修復和相依性升級。

請參閱 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 社群中所有即將到來的活動。

查看全部