Spring Cloud 2023.0.3 (aka Leyton) Has Been Released

On behalf of the community, I am pleased to announce that the General Availability (RELEASE) of the Spring Cloud 2023.0.3 Release Train is available today. The release can be found in Maven Central.

Notable Changes in the 2023.0.3 Release Train

This release is based on Spring Boot 3.2.7 and it primarily contains bugfixes and dependency upgrades.

See the GitHub project for all changes made in this release.

The following modules were updated as part of 2023.0.3:

Module Version Issues
Spring Cloud Vault 4.1.3
Spring Cloud Bus 4.1.2
Spring Cloud Zookeeper 4.1.2
Spring Cloud Kubernetes 3.1.3 (issues)
Spring Cloud Task 3.1.2 (issues)
Spring Cloud Function 4.1.3 (issues)
Spring Cloud Commons 4.1.4 (issues)
Spring Cloud OpenFeign 4.1.3 (issues)
Spring Cloud CircuitBreaker 3.1.2 (issues)
Spring Cloud Starter Build 2023.0.3
Spring Cloud Stream 4.1.3
Spring Cloud Gateway 4.1.5 (issues)
Spring Cloud Consul 4.1.2
Spring Cloud Contract 4.1.4 (issues)
Spring Cloud Config 4.1.3 (issues)
Spring Cloud Build 4.1.3
Spring Cloud Netflix 4.1.3 (issues)

As always, we welcome feedback on GitHub, on Stack Overflow, or on Twitter.

To get started with Maven with a BOM (dependency management only):



    
        
            org.springframework.cloud
            spring-cloud-dependencies
            2023.0.3
            pom
            import
        
    


    
        org.springframework.cloud
        spring-cloud-starter-config
    
    
        org.springframework.cloud
        spring-cloud-starter-netflix-eureka-client
    
    ...

or with 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'
...
}
THE END
喜欢就支持一下吧
点赞2 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容