Spring Cloud 2025.0.0-M3 (又名 Northfields) 已釋出

版本釋出 | Ryan Baxter | 2025 年 4 月 8 日 | ...

我很高興代表社群宣佈,Spring Cloud 2025.0.0 釋出列車的里程碑 3 (M3) 今天已可用。該版本可在 Spring Milestone 倉庫中找到。您可以檢視 2025.0.0 的釋出說明以獲取更多資訊

2025.0.0釋出列車中的顯著變更

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

此版本基於 Spring Boot 3.5.0-M3。

Spring Cloud Stream

  • 新增使用 BindingsLifecycleController 動態定義繫結的功能
  • 新增使用 BindingsLifecycleController 修改現有繫結的功能
  • 修復 Actuator 的 SpEL 表示式序列化

Spring Cloud Function

  • 更改 MessageConverterHelper 的行為,以確保使用者可以在單個訊息轉換器上強制失敗
  • 確保標頭名稱處理不區分大小寫 (RFC 2616)
  • 修復 Kotlin 函式型別發現

Spring Cloud Commons

  • 管理 commons 中 okhttp 的版本 (#1470)

Spring Cloud Config

  • Config Server:S3 整合應與 Git 整合消耗相同的檔案 #1829

Spring Cloud Gateway

  • 在 server webmvc 中為函式新增對預設路由功能的支援 #3716
  • 請求限速器 Lua 指令碼的效能增強。 #3693
  • 預設函式路由的初始功能 #3691
  • 查詢引數路由謂詞 - QueryRoutePredicateFactory 的擴充套件 #3472
  • 向請求新增 Forwarded-by 標頭 #2658

以下模組已作為 2025.0.0-M3 的一部分進行更新

模組 版本 問題
Spring Cloud Stream 4.3.0-M3 (問題)
Spring Cloud Openfeign 4.3.0-M3 (問題)
Spring Cloud Netflix 4.3.0-M3 (問題)
Spring Cloud Commons 4.3.0-M3 (問題)
Spring Cloud Circuitbreaker 3.3.0-M3 (問題)
Spring Cloud Contract 4.3.0-M3 (問題)
Spring Cloud Consul 4.3.0-M3 (問題)
Spring Cloud Config 4.3.0-M3 (問題)
Spring Cloud Build 4.3.0-M3 (問題)
Spring Cloud Gateway 4.3.0-M3 (問題)
Spring Cloud Function 4.3.0-M3 (問題)
Spring Cloud Starter Build 2025.0.0-M3 (問題)
Spring Cloud Vault 4.3.0-M3 (問題)
Spring Cloud Task 3.3.0-M3 (問題)
Spring Cloud Kubernetes 3.3.0-M3 (問題)
Spring Cloud Zookeeper 4.3.0-M3 (問題)
Spring Cloud Bus 4.3.0-M3 (問題)

一如既往,我們歡迎大家在 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>2025.0.0-M3</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"
}
}

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

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

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

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

檢視所有