Spring Cloud 2021.0.8 (aka Jubilee) Is Available

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

Notable Changes in the 2021.0.8 release

Spring Cloud Commons

  • Spring Cloud LoadBalancer – allow chain filtering of instances based on requests (#1227 )

The following modules were updated as part of 2021.0.8:

Module Version Issues
Spring Cloud Kubernetes 2.1.8 (tag)
Spring Cloud Task 2.4.6 (tag)
Spring Cloud Function 3.2.11 (issues)
Spring Cloud Commons 3.1.7 (issues)
Spring Cloud Circuitbreaker 2.1.7 (tag)
Spring Cloud Openfeign 3.1.8 (issues)
Spring Cloud Gateway 3.1.8 (issues)
Spring Cloud Stream 3.2.9 (tag)
Spring Cloud Contract 3.1.8 (issues)
Spring Cloud Config 3.1.8 (issues)
Spring Cloud Build 3.1.8  
Spring Cloud Starter Build 2021.0.8  
Spring Cloud Netflix 3.1.7 (issues)

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

Roadmap

Please watch our Github Projects and Release Milestones to track our 2021.0 Release Train (aka Jubilee).

Getting Started With 2021.0.8

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



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


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

or with Gradle:

plugins {
  id 'java'
  id 'org.springframework.boot' version '2.6.15'
  id 'io.spring.dependency-management' version '1.1.0'
}

repositories {
  mavenCentral()
}

ext {
  set('springCloudVersion', "2021.0.8")
}

dependencies {
  implementation 'org.springframework.cloud:spring-cloud-starter-config'
  implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
}

dependencyManagement {
  imports {
    mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
  }
}
THE END
喜欢就支持一下吧
点赞2 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容