Spring Cloud 2021.0.9 (aka Jubilee) Is Now Available

On behalf of the community, I am pleased to announce that the General Availability (RELEASE) of the Spring Cloud 2021.0.9 Release Train is available today. The release can be found in Maven Central. You can check out the 2021.0.9 release notes for more information.

Notable Changes in the 2021.0.9 Release Train

This release of Spring Cloud is based on Spring Boot 2.6.15 and is compatible with Spring Boot 2.7.18 and 3.0.13.

This will be last open source release of Spring Cloud 2021.0.x. All projects within this release train have reached end of life. We suggest you upgrade to Spring Cloud 2022.0.x or 2023.0.x.

The following modules were updated as part of 2021.0.9:

Module Version Issues
Spring Cloud Netflix 3.1.8 (issues)
Spring Cloud Stream 3.2.10 (issues)
Spring Cloud Starter Build 2021.0.9 (issues)
Spring Cloud Consul 3.1.5 (issues)
Spring Cloud Cloudfoundry 3.1.4 (issues)
Spring Cloud Contract 3.1.9 (issues)
Spring Cloud Zookeeper 3.1.5 (issues)
Spring Cloud Sleuth 3.1.10 (issues)
Spring Cloud Bus 3.1.3 (issues)
Spring Cloud Function 3.2.12 (issues)
Spring Cloud Openfeign 3.1.9 (issues)
Spring Cloud Config 3.1.9 (issues)
Spring Cloud Circuitbreaker 2.1.8 (issues)
Spring Cloud Build 3.1.9 (issues)
Spring Cloud Kubernetes 2.1.9 (issues)
Spring Cloud Commons 3.1.8 (issues)
Spring Cloud Vault 3.1.4 (issues)

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

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



    
        
            org.springframework.cloud
            spring-cloud-dependencies
            2021.0.9
            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.0.2.RELEASE"
}
}

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

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

dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}
THE END
喜欢就支持一下吧
点赞2 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容