抢先一步
VMware 提供培训和认证,助你快速提升。
了解更多我代表社区,很高兴地宣布 Spring Cloud Hoxton 发布列车的 Service Release 10 (SR10) 今天可用。该版本可在 Maven Central 找到。你可以查阅 Hoxton 发布说明以获取更多信息。
查看此版本中包含的所有问题 此处。
这主要是一个错误修复和文档版本。Hoxton.SR10 与 Spring Boot 2.3.x 和 2.2.x 兼容。
此版本包含对 CVE-2021-22113 的修复。请在此处找到报告:此处。
RetryableLoadBalancerExchangeFilterFunction
以下模块作为 Hoxton.SR10 的一部分进行了更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Starter Build | Hoxton.SR10 | |
Spring Cloud Netflix | 2.2.7.RELEASE | (问题) |
Spring Cloud Openfeign | 2.2.7.RELEASE | (问题) |
Spring Cloud Config | 2.2.7.RELEASE | (问题) |
Spring Cloud Aws | 2.2.6.RELEASE | (问题) |
Spring Cloud Gateway | 2.2.7.RELEASE | (问题) |
Spring Cloud Gcp | 1.2.7.RELEASE | |
Spring Cloud Commons | 2.2.7.RELEASE | (问题) |
Spring Cloud Consul | 2.2.6.RELEASE | (问题) |
Spring Cloud Contract | 2.2.6.RELEASE | (问题) |
Spring Cloud Kubernetes | 1.1.8.RELEASE | |
Spring Cloud Sleuth | 2.2.7.RELEASE | (问题) |
Spring Cloud Vault | 2.2.7.RELEASE | (问题) |
Spring Cloud CLI | 2.2.4.RELEASE |
一如既往,我们欢迎在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
使用 BOM(仅依赖管理)开始使用 Maven
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR10</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>
或使用 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.SR10'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}