Spring Cloud Finchley SR4 Released

Releases | Marcin Grzejszczak | June 14, 2019 | ...

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

Notable Changes in the Finchley Release Train

Spring Cloud Commons

Bug Fixes

Spring Cloud Vault

Bug Fixes

Spring Cloud Config

Bug Fixes

Spring Cloud Gateway

Bug Fixes

Spring Cloud Netflix

Bug Fixes

Spring Cloud Sleuth

Bug Fixes

Spring Cloud Consul

Bug Fixes

Spring Cloud Contract

Bug Fixes

The following modules were updated as part of Finchley.SR4:

| Module | Version | Issues |--- |--- |--- |--- | Spring Cloud Commons | 2.0.4.RELEASE | (issues) | Spring Cloud Openfeign | 2.0.4.RELEASE |   | Spring Cloud Dependencies | Finchley.SR4 |   | Spring Cloud Release | Finchley.SR4 |   | Spring Cloud Starter | Finchley.SR4 |   | Spring Cloud Stream | Elmhurst.SR3 |   | Spring Cloud Cloudfoundry | 2.0.2.RELEASE |   | Spring Cloud Task | 2.0.2.RELEASE |   | Spring Cloud Build | 2.0.6.RELEASE |   | Spring Cloud Vault | 2.0.4.RELEASE | (issues) | Spring Cloud Zookeeper | 2.0.2.RELEASE |   | Spring Cloud Config | 2.0.5.RELEASE | (issues) | Spring Cloud Aws | 2.0.3.RELEASE |   | Spring Cloud Bus | 2.0.2.RELEASE |   | Spring Cloud | Finchley.SR4 |   | Spring Cloud Security | 2.0.2.RELEASE |   | Spring Cloud Gateway | 2.0.4.RELEASE | (issues) | Spring Cloud Netflix | 2.0.4.RELEASE | (issues) | Spring Cloud Sleuth | 2.0.4.RELEASE | (issues) | Spring Cloud Consul | 2.0.3.RELEASE | (issues) | Spring Cloud Contract | 2.0.4.RELEASE | (issues) | Spring Cloud Function | 1.0.2.RELEASE |  

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>Finchley.SR4</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:Finchley.SR4'
    }
}

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