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 社区所有即将举行的活动。

查看所有