Spring Cloud Hoxton.SR8 has been released

Releases | Spencer Gibb | August 28, 2020 | ...

On behalf of the community, I am pleased to announce that the Service Release 8 (SR8) 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

This was primarily a bug fix and documentation release.

See all of the included issues and pull requests at the GitHub project. Hoxton.SR8 is compatible with Spring Boot 2.3.x and 2.2.x.

Spring Cloud Netflix

Added support for TLS configuration to Eureka Client.

Spring Cloud Config

Added support for TLS configuration to Config Client.

Spring Cloud Kubernetes

Adds support for Spring Cloud Loadbalancer. Automatically adds namespace to Service Instance metadata.


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

| Module | Version | Issues |--- |--- |--- |--- | Spring Cloud Starter Build | Hoxton.SR8 |
| Spring Cloud Netflix | 2.2.5.RELEASE |
| Spring Cloud Openfeign | 2.2.5.RELEASE | (issues) | Spring Cloud Config | 2.2.5.RELEASE |
| Spring Cloud Aws | 2.2.4.RELEASE |
| Spring Cloud Kubernetes | 1.1.6.RELEASE | (issues) | Spring Cloud Gateway | 2.2.5.RELEASE | (issues) | Spring Cloud Gcp | 1.2.5.RELEASE |
| Spring Cloud Commons | 2.2.5.RELEASE | (issues) | Spring Cloud Sleuth | 2.2.5.RELEASE | (issues) | Spring Cloud Vault | 2.2.5.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>Hoxton.SR8</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.10.RELEASE"
  }
}

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

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

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