Spring Cloud 2020.0.0-M4 (aka Ilford) Is Available
On behalf of the community, I am pleased to announce that the Milestone 4 (M4) of the Spring Cloud 2020 Release Train is available today. The release can be found in Spring Milestone repository. You can check out the 2020 release notes for more information.
Notable Changes in the 2020 Release Train
This release requires Spring Boot 2.4.0-M3.
Please see [the wiki] for a list of all breaking changes in this release train.
See all of the included issues and pull requests at the Github project.
Spring Cloud Commons
-
The bootstrap phase is no longer enabled by default. If your project requires it, it can be re-enabled by properties or by a new starter. To re-enable by properties set
spring.cloud.bootstrap.enabled=true
orspring.config.use-legacy-processing=true
. These need to be set as an environment variable, java system property or a command line argument. The other option is to include the newspring-cloud-starter-bootstrap
. Bootstrap is mostly used to import configuration from remote sources. To do this without boostrap see the new features in Config, Consul, Vault and Zookeeper. - …