Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the community, I am pleased to announce that the Service Release 1 (SR1) 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.
This milestone was primarily a bugfix release.
Please see the Hoxton.SR1 Github Project for all issues closed.
This milestone release is built with Spring Boot 2.2.2.RELEASE.
Besides bug fixes, Vault authentication was changed to use the Spring Vault project providing more options. Plain text resources are now available through the AWS S3 environment repository.
Mappings may now be reset after each test.
Support was added for zone awareness in Spring Cloud Loadbalancer.
Support was added for Spring Cloud Circuitbreaker
Besides bug fixes, support was added for new configuration properties.
Eureka support for zone awareness in Spring Cloud Loadbalancer was added.
The following modules were updated as part of Hoxton.SR1:
| Module | Version | Issues
|--- |--- |--- |---
| Spring Cloud Config | 2.2.1.RELEASE | (issues)
| Spring Cloud Cloudfoundry | 2.2.0.RELEASE |
| Spring Cloud Vault | 2.2.1.RELEASE | (issues)
| Spring Cloud Aws | 2.2.1.RELEASE |
| Spring Cloud Bus | 2.2.0.RELEASE |
| Spring Cloud Cli | 2.2.1.RELEASE |
| Spring Cloud Gcp | 1.2.1.RELEASE |
| Spring Cloud Contract | 2.2.1.RELEASE | (issues)
| Spring Cloud Consul | 2.2.1.RELEASE |
| Spring Cloud Starter | Hoxton.SR1 |
| Spring Cloud Dependencies | Hoxton.SR1 |
| Spring Cloud Starter Parent | Hoxton.SR1 |
| Spring Cloud Sleuth | 2.2.1.RELEASE | (issues)
| Spring Cloud Commons | 2.2.1.RELEASE | (issues)
| Spring Cloud Openfeign | 2.2.1.RELEASE | (issues)
| Spring Cloud Zookeeper | 2.2.0.RELEASE | (issues)
| Spring Cloud Kubernetes | 1.1.1.RELEASE |
| Spring Cloud Security | 2.2.0.RELEASE |
| Spring Cloud Circuitbreaker | 1.0.0.RELEASE | (issues)
| Spring Cloud Stream | Horsham.SR1 | (issues)
| Spring Cloud Gateway | 2.2.1.RELEASE | (issues)
| Spring Cloud Netflix | 2.2.1.RELEASE | (issues)
| Spring Cloud Function | 3.0.1.RELEASE | (issues)
| Spring Cloud Task | 2.2.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>Hoxton.SR1</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.8.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.SR1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}