Spring Cloud Hoxton.SR8 发布

Spring Cloud Hoxton.SR8 发布,Maven仓库已经更新

Maven

<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>

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'
  //...
}

Hoxton发布系列的重大变化

这主要是一个错误修复和文档发布。

GitHub项目中查看所有包含的问题和请求请求。Hoxton.SR8与Spring Boot 2.3.x和2.2.x兼容。

Spring Cloud Netflix

向Eureka Client添加了对TLS配置的支持。

Spring Cloud Config

向Config Client添加了对TLS配置的支持。

Spring Cloud Kubernetes

添加了对Spring Cloud Loadbalancer的支持。自动将名称空间添加到服务实例元数据。

依赖的更新

模块 版本号 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

与往常一样,我们欢迎在GitHubGitterStack OverflowTwitter上提供反馈。

新闻来源