Commit 5be84dd3 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '2.0.x'

parents 13835c5d cdbe6fa1
...@@ -451,6 +451,26 @@ that provides detailed upgrade instructions. Check also the ...@@ -451,6 +451,26 @@ that provides detailed upgrade instructions. Check also the
{github-wiki}["`release notes`"] for a list of "`new and noteworthy`" features for each {github-wiki}["`release notes`"] for a list of "`new and noteworthy`" features for each
release. release.
When upgrading to a new feature release, some properties may have been renamed or removed.
Spring Boot provides a way to analyze your application's environment and print diagnostics
at startup, but also temporarily migrate properties at runtime for you. To enable that
feature, add the following dependency to your project:
[source,xml,indent=0]
----
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-properties-migrator</artifactId>
<scope>runtime</scope>
</dependency>
----
WARNING: properties that are added late to the environment, such as when using
`@PropertySource`, will not be taken into account.
NOTE: Once you're done with the migration, please make sure to remove this module from
your project's dependencies.
To upgrade an existing CLI installation, use the appropriate package manager command (for To upgrade an existing CLI installation, use the appropriate package manager command (for
example, `brew upgrade`) or, if you manually installed the CLI, follow the example, `brew upgrade`) or, if you manually installed the CLI, follow the
<<getting-started-manual-cli-installation, standard instructions>>, remembering to update <<getting-started-manual-cli-installation, standard instructions>>, remembering to update
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment