On behalf of the community, I am pleased to announce that the General Availability (RELEASE) of the Spring Cloud 2023.0.6 Release Train is available today. The release can be found in Maven Central. You can check out the 2023.0.6 release notes for more information.
Notable Changes in the 2023.0.6 Release Train
This release is based on Spring Boot 3.3.13.
In addition to the enhancements below, there are a number of bugs that have been addressed in this release. To see the complete
list of issues aaddressed in this release, see this GitHub project.
Spring Cloud Gateway
- Support for reloading httpClient connectTimeout Configuration (#3679)
Spring Cloud Circuitbreaker
- Add the ability to customize
openTimeout
&resetTimeout
when using Spring Retry (#238)
The following modules were updated as part of 2023.0.6:
Module | Version | Issues |
---|---|---|
Spring Cloud Gateway | 4.1.9 | (issues) |
Spring Cloud Starter Build | 2023.0.6 | (issues) |
Spring Cloud Netflix | 4.1.6 | (issues) |
Spring Cloud Config | 4.1.7 | (issues) |
Spring Cloud Openfeign | 4.1.5 | (issues) |
Spring Cloud Circuitbreaker | 3.1.5 | (issues) |
Spring Cloud Kubernetes | 3.1.6 | (issues) |
Spring Cloud Stream | 4.1.6 | (issues) |
Spring Cloud Function | 4.1.6 | (issues) |
Spring Cloud Contract | 4.1.6 | (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
2023.0.6
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 '3.3.13'
id 'io.spring.dependency-management' version '1.1.7'
}
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2023.0.6")
}
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}"
}
}
暂无评论内容