- 14 Jan, 2021 20 commits
-
-
Stephane Nicoll authored
Closes gh-24702
-
Stephane Nicoll authored
Closes gh-24701
-
Stephane Nicoll authored
Closes gh-24829
-
Stephane Nicoll authored
Closes gh-24828
-
Stephane Nicoll authored
Closes gh-24827
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-24826
-
Stephane Nicoll authored
Closes gh-24825
-
Stephane Nicoll authored
Closes gh-24824
-
Stephane Nicoll authored
Closes gh-24823
-
Stephane Nicoll authored
Closes gh-24822
-
Stephane Nicoll authored
Closes gh-24821
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Close gh-24742
-
Stephane Nicoll authored
Closes gh-24820
-
Stephane Nicoll authored
Closes gh-24819
-
Stephane Nicoll authored
Closes gh-24818
-
Madhura Bhave authored
See gh-24814
-
Madhura Bhave authored
See gh-24813
-
Madhura Bhave authored
See gh-24811
-
- 13 Jan, 2021 14 commits
-
-
Madhura Bhave authored
Closes gh-24814
-
Madhura Bhave authored
Closes gh-24813
-
Madhura Bhave authored
Fixes gh-24811
-
Madhura Bhave authored
Fixes gh-24719
-
Stephane Nicoll authored
Closes gh-24700
-
Stephane Nicoll authored
Closes gh-24803
-
Stephane Nicoll authored
Closes gh-24802
-
Stephane Nicoll authored
Closes gh-24786
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-24801
-
Stephane Nicoll authored
Closes gh-24785
-
Andy Wilkinson authored
Previously, the restart initializer that enables restart when -Dspring.devtools.restart.enabled=true is set had no effect when the ClassLoader's name did not contain AppClassLoader. This commit updates RestartApplicationListener to use the correct RestartInitializer when the system property has forcibly enabled restart. When restart is enabled a SilentExitException is thrown and it should be caught and handled by the SilentExitExceptionHandler. When the application is invoked via one of the loader's LauncherClasses reflection is used and this exception becomes wrapped in an InvocationTargetEception. Previously, this wrapping prevented SilentExitExceptionHandler from handling the exception. This commit updates the handler to look for an InvocationTargetException with a SilentExitException target in addition to continuing to look for a SilentExitException directly. Fixes gh-24797
-
Phillip Webb authored
Update `ConfigurationPropertiesReportEndpoint` so that supports constructor parameters annotated with `@Name`. Fixes gh-24713
-
Phillip Webb authored
-
- 12 Jan, 2021 6 commits
-
-
Scott Frederick authored
Previously, when an authenticated Docker builder registry was configured in the Maven or Gradle plugin and the builder and run images specified different registries, the authentication credentials would be sent to both registries. This could cause confusion if both registries don't recognize the same credentials. This commit enforces that both images are in the same registry when authentication is configured. Fixes gh-24552
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
Throw an `InvalidConfigDataPropertyException` if bad properties are detected in profile specific files. The following properties will now trigger an exception if used in a profile specific file: `spring.profiles.include` `spring.profiles.active` `spring.profiles.default` `spring.config.activate.on-profile` `spring.profiles` Prior to this commit, profile based properties in a profile specific file would be silently ignored, making them hard to find. Fixes gh-24733
-
Madhura Bhave authored
-
Andy Wilkinson authored
-