内容简介:Spring Cloud Function 的第三个 Milestone 3 已发布,该版本的各个模块现可在 Spring Milestone 存储库中使用。 主要更改 此版本与 Spring Boot 2.1.0.RELEASE 兼容,并已对 Java 11 兼容性进行了更改。 Spring...
Spring Cloud Function 的第三个 Milestone 3 已发布,该版本的各个模块现可在 Spring Milestone 存储库中使用。
主要更改
此版本与 Spring Boot 2.1.0.RELEASE 兼容,并已对 Java 11 兼容性进行了更改。
Spring Cloud Bus
Fixed a compatiblity issue with Spring Cloud Stream.
Spring Cloud Commons
Added
instanceId
toServiceInstance
interface. Also added aReactiveLoadBalancer
interface and implementation using Reactor.
Spring Cloud Config
Various bug fixes and small enhancements.
Spring Cloud Contract
Support was added for
WebTestClient
and JUnit 5 extensions.
Spring Cloud Consul
Bug fixes.
Spring Cloud Function
Minor enhacements and bug fixes.
Spring Cloud Gateway
Added a rewrite response header filter and bug fixes.
Spring Cloud Gcp
Minor enhacements and bug fixes.
Spring Cloud Kubernetes
ServiceInstance
metadata can now be configured to come from Kubernetes Labels, Annotations and Ports. Some other smal enhacements and bug fixes.
Spring Cloud Netflix
Various version upgrades.
Spring Cloud Openfeign
Added missing configuration metadata.
Spring Cloud Sleuth
Various improvements to Reactor and Reactor Netty instrumentation and other minor enhancements.
Spring Cloud Stream
Minor enhacements and bug fixes.
Spring Cloud Task
Now enabled thru auto-configuration.
Spring Cloud Vault
Adds support for Azure and GCP authentication and some dependency updates.
以下模块已作为 Greenwich.M3 的一部分进行了更新:
MODULE | VERSION | ISSUES |
---|---|---|
Spring Cloud | Greenwich.M3 | |
Spring Cloud Aws | 2.0.1.RELEASE | (issues) |
Spring Cloud Bus | 2.1.0.M2 | (issues) |
Spring Cloud Cloudfoundry | 2.1.0.M1 | |
Spring Cloud Commons | 2.1.0.M2 | (issues) |
Spring Cloud Config | 2.1.0.M3 | (issues) |
Spring Cloud Contract | 2.1.0.M2 | (issues) |
Spring Cloud Consul | 2.1.0.M2 | (issues) |
Spring Cloud Function | 2.0.0.RC2 | (issues) |
Spring Cloud Gateway | 2.1.0.M3 | (issues) |
Spring Cloud Gcp | 1.1.0.M3 | |
Spring Cloud Kubernetes | 1.0.0.M2 | (issues) |
Spring Cloud Netflix | 2.1.0.M3 | (issues) |
Spring Cloud Openfeign | 2.1.0.M2 | |
Spring Cloud Security | 2.1.0.M1 | |
Spring Cloud Sleuth | 2.1.0.M2 | (issues) |
Spring Cloud Stream | Fishtown.RC2 | Blog post |
Spring Cloud Task | 2.1.0.M1 | (issues) |
Spring Cloud Vault | 2.1.0.M2 | (issues) |
Spring Cloud Zookeeper | 2.1.0.M1 |
Maven (dependency management only):
<repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>http://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>Greenwich.M3</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.2.RELEASE" } } repositories { maven { url 'http://repo.spring.io/milestone' } } apply plugin: "io.spring.dependency-management" dependencyManagement { imports { mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Greenwich.M3' } } dependencies { compile 'org.springframework.cloud:spring-cloud-starter-config' compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client' ... }
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- IJPay 0.8 版本发布,兼容低版本 JDK
- fastjson 1.2.55 版本发布,Bug 修复版本
- Apache Ignite 2.9.1 版本发布,小版本更新
- Swoole v4.6.1 版本发布,Bug 修复版本
- Swoole v4.6.2 版本发布,Bug 修复版本
- Swoole v4.6.4 版本发布,Bug 修复版本
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数学建模算法与应用
司守奎、孙玺菁 / 国防工业出版社 / 2011-8 / 49.00元
《数学建模算法与应用》主要内容简介:作者司守奎、孙玺菁根据多年数学建模竞赛辅导工作的经验编写《数学建模算法与应用》,涵盖了很多同类型书籍较少涉及的新算法和热点技术,主要内容包括时间序列、支持向量机、偏最小二乘面归分析、现代优化算法、数字图像处理、综合评价与决策方法、预测方法以及数学建模经典算法等内容。《数学建模算法与应用》系统全面,各章节相对独立。《数学建模算法与应用》所选案例具有代表性,注重从不......一起来看看 《数学建模算法与应用》 这本书的介绍吧!