Spring Cloud Hoxton.SR12 has been released
On behalf of the community, I am pleased to announce that the Service Release 12 (SR12) of the Spring Cloud Hoxton Release Train is available today. The release can be found in Maven Central. You can check out the Hoxton release notes for more information.
Notable Changes in the Hoxton Release Train
See all issues included in this release here.
This was primarily a bug fix and documentation release. Hoxton.SR12 is compatible with Spring Boot 2.3.x and 2.2.x.
NOTE: This will be the last regularly scheduled release of the Hoxton Release Train. It now enters a special maintenance period for security fixes and critical bugs until the end of Feb 2022 (which follows the lifecycle of Spring Boot 2.3.x). See the wiki for more information.
Spring Cloud Commons
- Added
TaskSchedulerWrapper
(#974)
Spring Cloud Gateway
- Enabled disabling
GatewayRedisAutoConfiguration
(#2052) - Made the scheme of the URI for the route should be case-insensitive (#2207)
Spring Cloud OpenFeign
- Improved support for
SpringFormEncoder
(#549)
Spring Cloud Netflix
- Special characters support added for
TraceProxyRequestHelper
(#3873) - Fixed propagating status to registry when
eureka.client.healthcheck.enabled= true
(#1571)
Spring Cloud CircuitBreaker
- Reactive Resilience4J CircuitBreakers can now be configured via configuration properties (#107)
The following modules were updated as part of Hoxton.SR12:
Module | Version | Issues |
---|---|---|
Spring Cloud Starter Build | Hoxton.SR12 | |
Spring Cloud Netflix | 2.2.9.RELEASE | (issues) |
Spring Cloud Openfeign | 2.2.9.RELEASE | (issues) |
Spring Cloud Gateway | 2.2.9.RELEASE | (issues |
Spring Cloud Commons | 2.2.9.RELEASE | (issues) |
Spring Cloud Contract | 2.2.8.RELEASE | |
Spring Cloud Kubernetes | 1.1.10.RELEASE | (issues) |
Spring Cloud CircuitBreaker | 1.0.6.RELEASE | (issues) |
Spring Cloud Stream | Horsham.SR13 |
As always, we welcome feedback on GitHub, on Stack Overflow, or on Twitter.
To get started with Maven with a BOM (dependency management only):
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR12</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>
or with Gradle:
buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.SR12'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}