Spring Cloud 2022.0.4 (aka Kilburn) Is Available

Releases | Olga Maciaszek-Sharma | July 27, 2023 | ...

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

Notable Changes in the 2022.0.4 Release Train

This release is based on Spring Boot 3.0.9.

A complete list of issues resolved in this release can be found in this GitHub project.

Spring Cloud Commons

  • Support for retry-aware load-balancing for ServiceInstanceListSupplier delegates has been added (1221)

Spring Cloud OpenFeign

  • Upgraded OpenFeign/Feign 12.4 (878)

Spring Cloud Stream

Fix function auto-detection issues when single input/output bindings are defined. Fix type discovery issues in DefaultPollableMessageSource. Shared beans loading exception handling improvements (https://github.com/spring-cloud/spring-cloud-stream/issues/2744) Fix partition selector strategy issues when using reactive functions (https://github.com/spring-cloud/spring-cloud-stream/issues/2750) KafkaBinderHealthIndicator refactorings. Fix StreamBridge double partitioning issues (https://github.com/spring-cloud/spring-cloud-stream/issues/2759) Add new health indicator for Reactor Kafka Binder (https://github.com/spring-cloud/spring-cloud-stream/issues/2752) Address dynamic destination via sendto header issues causing partition key extractor invocation problems (https://github.com/spring-cloud/spring-cloud-stream/issues/2770) Address BindersHealthContributor thread-safety issues (https://github.com/spring-cloud/spring-cloud-stream/issues/2780)

Spring Cloud Netflix

  • Upgraded Netflix/Eureka to 2.0.1 which contains fixes necessary for using secured replicas (4161)

The following modules were updated as part of 2022.0.4:

Module Version Issues
Spring Cloud Zookeeper 4.0.1 (issues)
Spring Cloud Kubernetes 3.0.4 (issues)
Spring Cloud Function 4.0.5 (issues)
Spring Cloud Commons 4.0.4 (issues)
Spring Cloud CircuitBreaker 3.0.3 (issues)
Spring Cloud OpenFeign 4.0.4 (issues)
Spring Cloud Gateway 4.0.7 (issues)
Spring Cloud Stream 4.0.4 (issues)
Spring Cloud Consul 4.0.3 (issues)
Spring Cloud Build 4.0.5 (issues)
Spring Cloud Config 4.0.4 (issues)
Spring Cloud Contract 4.0.4 (issues)
Spring Cloud Starter Build 2022.0.4 (issues)
Spring Cloud Netflix 4.0.3 (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):


<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>2022.0.4</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.2.RELEASE"
}
}

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

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

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

Get the Spring newsletter

Thank you for your interest. Someone will get back to you shortly.

Get ahead

VMware offers training and certification to turbo-charge your progress.

Learn more

Get support

Tanzu Spring Runtime offers support and binaries for OpenJDK™, Spring, and Apache Tomcat® in one simple subscription.

Learn more

Upcoming events

Check out all the upcoming events in the Spring community.

View all