我很高兴地代表社区宣布,Spring Cloud 2023.0 Release Train 的里程碑 1 (M1) 今天正式发布。您可以在 Spring Milestone 版本库中找到该版本。您可以查看 2023.0 发布说明了解更多信息。
2023.0.0-M1 发布列车中的显著变更
在此查看所有问题和拉取请求。
Spring 云网关
初步支持 MVC 服务器。请参见 PR 2949 和问题 36。
Spring 云流
通过特殊处理器初步支持运行时 Kafka Streams 粘合剂错误处理
卡夫卡粘合剂健康检查改进
分区处理改进
Spring 云 Openfeign
支持 Java HttpClient (#689)
春季云 Kubernetes
由 @ryanjbaxter 升级 fabric8 至 6.7.2 (#1373)
作为 2023.0.0-M1 的一部分,更新了以下模块:
Module | Version | Issues |
---|---|---|
Spring Cloud Consul | 4.1.0-M1 | (issues) |
Spring Cloud Gateway | 4.1.0-M1 | (issues) |
Spring Cloud Zookeeper | 4.1.0-M1 | (issues) |
Spring Cloud Bus | 4.1.0-M1 | (issues) |
Spring Cloud Stream | 4.1.0-M1 | (issues) |
Spring Cloud Function | 4.1.0-M1 | (issues) |
Spring Cloud Openfeign | 4.1.0-M1 | (issues) |
Spring Cloud Vault | 4.1.0-M1 | (issues) |
Spring Cloud Commons | 4.1.0-M1 | (issues) |
Spring Cloud Task | 3.1.0-M1 | (issues) |
Spring Cloud Kubernetes | 3.1.0-M1 | (issues) |
Spring Cloud Starter Build | 2023.0.0-M1 | (issues) |
Spring Cloud Config | 4.1.0-M1 | (issues) |
Spring Cloud Build | 4.1.0-M1 | (issues) |
Spring Cloud Netflix | 4.1.0-M1 | (issues) |
Spring Cloud Circuitbreaker | 3.1.0-M1 | (issues) |
Spring Cloud Contract | 4.1.0-M1 | (issues) |
一如既往,我们欢迎在 GitHub、Gitter、Stack Overflow 或 Twitter 上提出反馈意见。
使用 BOM 开始使用 Maven(仅限依赖关系管理):
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2023.0.0-M1</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:
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.0-M1'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
ext {
set('springCloudVersion', "2023.0.0-M1")
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
转自 https://spring.io/blog/2023/08/10/spring-cloud-2023-0-0-m1-aka-leyton-has-been-released