- 07 Apr, 2021 5 commits
-
-
Andy Wilkinson authored
This reverts commit 586ce00e, reversing changes made to 563b8a8c. See gh-25839
-
Andy Wilkinson authored
-
Andy Wilkinson authored
This reverts commit da9d8d60. See gh-25838
-
Phillip Webb authored
-
Phillip Webb authored
Update the common build script to pull buildpack images early using the authenticated CLI. See gh-25838
-
- 06 Apr, 2021 3 commits
-
-
Andy Wilkinson authored
Closes gh-25895
-
Andy Wilkinson authored
Closes gh-25892
-
Phillip Webb authored
See gh-25766
-
- 05 Apr, 2021 3 commits
-
-
Phillip Webb authored
Update the `ConfigData` import support to allow individual property sources to be imported with a higher precedence than profile specific imports. Prior to this commit, imported sources would always have a higher precedence than the file that imported them, but a lower precedence than any profile-specific variant of the same file. For example, given an `application.properties` that imports `myconfig`, the contributor tree would be as follows: ROOT +- `application.properties` | +- myconfig +- `application-<profile>.properties` The precedence would be: 1) `application-<profile>.properties` 2) myconfig 3) `application.properties` This works well for most situations, but can be confusing if import is for a profile-specific property source. For example: ROOT +- `application.properties` | +- myconfig | +- myconfig-<profile> +- `application-<profile>.properties` Results in the order precedence of: 1) `application-<profile>.properties` 2) myconfig-<profile> 3) myconfig 4) `application.properties` This means that whilst `myconfig` overrides `application.properties`, `myconfig-profile` does not override `application-<profile>.properties`. For this specific situation, the preferable order would be: 1) myconfig-<profile> 2) `application-<profile>.properties` 3) myconfig 4) `application.properties` To support this alternative ordering a new `PROFILE_SPECIFIC` config data option has been added. Additionally, options may now be specified on a per-source basis by using the `PropertySourceOptions` interface. Fixes gh-25766
-
Stephane Nicoll authored
* pr/25882: Polish HealthIndicators table in docs Closes gh-25882
-
Tommy Ludwig authored
`=======` was showing up in the header of the table, which should not be there. See gh-25882
-
- 04 Apr, 2021 3 commits
-
-
Stephane Nicoll authored
* pr/25875: Polish contribution Polish Closes gh-25875
-
Stephane Nicoll authored
See gh-25875
-
izeye authored
See gh-25875
-
- 01 Apr, 2021 13 commits
-
-
Andy Wilkinson authored
Closes gh-25869
-
Andy Wilkinson authored
Fixes gh-25796
-
Andy Wilkinson authored
Closes gh-25866
-
Andy Wilkinson authored
Closes gh-25865
-
Andy Wilkinson authored
Closes gh-25863
-
Andy Wilkinson authored
* gh-25800: Polish "Fix no such bean definition with ancestor-defined Validator" Fix no such bean definition with ancestor-defined Validator Closes gh-25800
-
Andy Wilkinson authored
See gh-25800
-
MatejNedic authored
See gh-25800
-
Andy Wilkinson authored
Closes gh-25861
-
Andy Wilkinson authored
Closes gh-25859
-
Stephane Nicoll authored
Closes gh-25852
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-25851
-
- 31 Mar, 2021 2 commits
-
-
Andy Wilkinson authored
Closes gh-25844
-
Andy Wilkinson authored
Previously, would log an error for any exception and also stop publishing for an UnknownHostException. By constrast, Micrometer's PushMeterRegistry treats all exceptions the same, logging a warning and continuing with subsequent push attempts. This commit updates the push gateway manager's behaviour to match PushMeterRegistry. UknownHostExceptions no longer receive special treatment and push (and delete) failures are now logged as warnings rather than errors. Fixes gh-25804
-
- 30 Mar, 2021 11 commits
-
-
Scott Frederick authored
Closes gh-25839
-
Scott Frederick authored
This commit modifies the integration tests for the Maven and Gradle image building goal and task to use a custom builder as a test harness to verify that the plugins invoke the builder as expected. Fixes gh-25838
-
Andy Wilkinson authored
See gh-25836
-
Andy Wilkinson authored
See gh-25835
-
Andy Wilkinson authored
Closes gh-25836
-
Andy Wilkinson authored
Closes gh-25835
-
Andy Wilkinson authored
Closes gh-25832
-
Andy Wilkinson authored
* gh-25621: Polish "Document Failsafe configuration when not using starter parent" Document Failsafe configuration when not using starter parent Closes gh-25621
-
Andy Wilkinson authored
See gh-25621
-
robert-smith-911 authored
See gh-25621
-
Phillip Webb authored
-