抢先一步
VMware 提供培训和认证,以加速您的进步。
了解更多信息我代表社区,很高兴地宣布 Spring Cloud Hoxton 发布列车 Service Release 7 (SR7) 今天已发布。该版本可以在 Maven Central 中找到。您可以查看 Hoxton 的 发行说明以获取更多信息。
在 GitHub 项目 中查看所有包含的问题和拉取请求。
CVE-2020-5412:spring-cloud-netflix-hystrix-dashboard 中的 Hystrix Dashboard 代理
将 CF Java 客户端升级到 3.25.0.RELEASE。
在 Consul 绑定器中添加了对 byte[]
消息的支持。
添加了根据 HTTP 状态代码触发 Spring Cloud 断路器的支持。
添加了通过属性禁用 JDBC 支持的功能。
添加了 ReactiveDiscoveryClient
的基于 StubRunner
的实现。
添加了对 CollectionFormat
的支持,并在使用 @FeignClient
时进行了改进。
这是在新的社区维护者领导下的第一个 GA 版本。
此版本包含许多优秀的社区贡献
spring-cloud-gcp-starter-metrics
配置 Micrometer Stackdriver 以自动获取项目 ID 和凭据(感谢 @eddumelendez)。SecretManagerTemplate
上的密钥版本的其他操作(感谢 @kioie)。GcsAcceptModifiedAfterFileListFilter
和 GcsDiscardRecentModifiedFileListFilter
(感谢 @hosainnet)。以下模块已作为 Hoxton.SR7 的一部分进行了更新
| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Starter Build | Hoxton.SR7 |
| Spring Cloud Cloudfoundry | 2.2.3.RELEASE |
| Spring Cloud Kubernetes | 1.1.5.RELEASE |
| Spring Cloud Consul | 2.2.4.RELEASE | (问题) | Spring Cloud Gateway | 2.2.4.RELEASE | (问题) | Spring Cloud Config | 2.2.4.RELEASE | (问题) | Spring Cloud Contract | 2.2.4.RELEASE | (问题) | Spring Cloud Netflix | 2.2.4.RELEASE | (问题) | Spring Cloud Gcp | 1.2.4.RELEASE |
| Spring Cloud Security | 2.2.4.RELEASE |
| Spring Cloud Sleuth | 2.2.4.RELEASE | (问题) | Spring Cloud Openfeign | 2.2.4.RELEASE | (问题) | Spring Cloud Cli | 2.2.2.RELEASE |
| Spring Cloud Commons | 2.2.4.RELEASE | (问题) | Spring Cloud Aws | 2.2.3.RELEASE | (问题) | Spring Cloud Vault | 2.2.4.RELEASE |
| Spring Cloud Zookeeper | 2.2.3.RELEASE | (问题) | Spring Cloud Circuitbreaker | 1.0.4.RELEASE |
| Spring Cloud Bus | 2.2.3.RELEASE |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 和 Twitter 上提供反馈。
要使用带有 BOM 的 Maven 入门(仅依赖项管理)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR7</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.9.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.SR7'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}