Spring Cloud Hoxton.M1 is available.

Releases | Spencer Gibb | July 03, 2019 | ...

On behalf of the community, I am pleased to announce that Milestone 1 (M1) of the Spring Cloud Hoxton Release Train is available today. The release can be found in Spring Milestone repository. You can check out the Hoxton release notes for more information.

Notable Changes in the Hoxton Release Train

This milestone release is compatible with Spring Boot 2.2.0.M4.

Spring Cloud Gateway

Spring Cloud Gateway has added support for RSocket. Look for more in an upcoming blog post.

Spring Cloud Contract

Gradle support has been updated to 5.5, and Groovy to version 2.5. A major refactoring has happened, simplifying and rewriting to Java where possible.

Spring Cloud Cloudfoundry

An option to use Cloud Foundry DNS-based discovery was added. This is useful for container-to container-networking.

Spring Cloud Config

Support was added for Google Cloud Source (a Git host) and a new Redis environment repository.

Spring Cloud Sleuth

Sleuth now imports the Brave BOM.

Roadmap

The Spring Cloud Circuit Breaker project will move out of Incubator status. Spring Cloud Loadbalancer will be updated to plug holes left by Ribbon being placed in maintenance mode in Spring Cloud Netflix. Spring Cloud Gateway RSocket support will continue to improve.


The following modules were updated as part of Hoxton.M1:

| Module | Version | Issues |--- |--- |--- |--- | Spring Cloud Commons | 2.2.0.M1 | (issues) | Spring Cloud Contract | 2.2.0.M1 | (issues) | Spring Cloud Cloudfoundry | 2.2.0.M1 | (issues) | Spring Cloud Openfeign | 2.2.0.M1 | (issues) | Spring Cloud Security | 2.2.0.M1 |   | Spring Cloud Config | 2.2.0.M1 | (issues) | Spring Cloud Stream | Horsham.M2 |   | Spring Cloud Aws | 2.2.0.M1 |   | Spring Cloud Bus | 2.2.0.M1 |   | Spring Cloud Zookeeper | 2.2.0.M1 | (issues) | Spring Cloud Task | 2.2.0.M1 | (issues) | Spring Cloud Gateway | 2.2.0.M1 | (issues) | Spring Cloud Sleuth | 2.2.0.M1 | (issues) | Spring Cloud Consul | 2.2.0.M1 | (issues) | Spring Cloud Netflix | 2.2.0.M1 | (issues) | Spring Cloud Gcp | 1.2.0.M1 |   | Spring Cloud Function | 3.0.0.M1 |   | Spring Cloud Vault | 2.2.0.M1 |   | Spring Cloud Kubernetes | 1.1.0.M1 | (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):

<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Hoxton.M1</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.9.RELEASE"
    }
}

repositories {
    maven {
        url 'https://repo.spring.io/milestone'
    }
}

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

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

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