Andy Wilkinson
ce99db1902
Port the build to Gradle
...
Closes gh-19609
Closes gh-19608
5 years ago
Madhura Bhave
abe95fa8a7
Merge branch '2.2.x'
...
Closes gh-19600
5 years ago
Madhura Bhave
7f0573df49
Fallback on underlying server default when determining outcome tag
...
This commit also changed the default outcome to SUCCESS
Fixes gh-19367
5 years ago
Stephane Nicoll
7d6f4a6666
Merge branch '2.2.x'
...
Closes gh-19590
5 years ago
Stephane Nicoll
99c64b7cdf
Merge branch '2.1.x' into 2.2.x
...
Closes gh-19589
5 years ago
Matthias Stock
adfbbcc0f6
Simplify validation pattern of EndpointId
...
See gh-19584
5 years ago
Andy Wilkinson
4efd8ba587
Merge branch '2.2.x'
...
Closes gh-19574
5 years ago
Andy Wilkinson
02965e9744
Fix javadoc warnings
...
Fixes gh-19572
5 years ago
Stephane Nicoll
6fc52b0563
Polish
5 years ago
Stephane Nicoll
2c1e81adf0
Polish
5 years ago
Phillip Webb
695de2c6f5
Polish end-to-end configuration properties tracing
...
See gh-14880
5 years ago
Madhura Bhave
8dcf1e4033
Provide end-to-end traceability for config properties
...
Closes gh-14880
Co-authored-by: Andy Wilkinson <awilkinson@pivotal.io>
5 years ago
Stephane Nicoll
20bebdc07d
Merge branch '2.2.x'
...
Closes gh-19331
5 years ago
dreis2211
b1158bf35d
Simplify some Stream API usages
...
See gh-19291
5 years ago
Madhura Bhave
b42bc1b23d
Merge branch '2.2.x'
...
Closes gh-19314
5 years ago
Madhura Bhave
ed571bab24
Merge branch '2.1.x' into 2.2.x
...
Closes gh-19313
5 years ago
dreis2211
20ff764756
Increase cache ttl in CachingOperationInvokerTests
...
See gh-19193
5 years ago
Andy Wilkinson
ae5ec4e41a
Merge branch '2.2.x'
...
Closes gh-19300
5 years ago
Andy Wilkinson
758b80a0fe
Merge branch '2.1.x' into 2.2.x
...
Closes gh-19299
5 years ago
luoyuan
c6a184474c
Remove redundant hasText check as query always has text
...
See gh-19290
5 years ago
Madhura Bhave
0a2387ed0b
Merge branch '2.2.x'
...
Closes gh-19279
5 years ago
Madhura Bhave
2c4a1f1c15
Display @Validated constructor bound properties in configprops endpoint
...
Fixes gh-19219
5 years ago
Andy Wilkinson
b6fb251097
Merge branch '2.2.x'
...
Closes gh-19191
5 years ago
Andy Wilkinson
189f74220c
Merge branch '2.1.x' into 2.2.x
...
Closes gh-19190
5 years ago
Andy Wilkinson
e8eace2d5b
Polish "Fix Liquibase endpoint's output with multiple datasources"
...
See gh-19171
5 years ago
Leo Li
5302d91930
Fix Liquibase endpoint's output with multiple datasources
...
Previously, the endpoint used the same change log history service for
for each SpringLiquibase bean that it processed. This resulted in
pollution of the reported changes as the history of each bean was not
isolated.
This commit updates the endpoint to use a new history service for each
SpringLiquibase bean that is processed.
See gh-19171
5 years ago
Stephane Nicoll
79201b61b6
Merge branch '2.2.x'
...
Closes gh-19158
5 years ago
Stephane Nicoll
ce16c9e945
Merge branch '2.1.x' into 2.2.x
...
Closes gh-19157
5 years ago
Stephane Nicoll
2356462587
Polish "Remove '.' and '-' reference in the EndpointId javadoc"
...
See gh-19101
5 years ago
Lars Grefer
58e599b6c1
Remove '.' and '-' reference in the EndpointId javadoc
...
Endpoint ID's which contain '-' or '.' cause a deprecation warning.
Therefore they shouldn't be doumented as valid characters.
See gh-19101
5 years ago
dreis2211
8a730ff630
Use DateTimeFormatter in favor of SimpleDateFormat
...
See gh-19142
5 years ago
Stephane Nicoll
12c5cdceb1
Merge branch '2.2.x'
...
Closes gh-19104
5 years ago
thelproad
65ab82b3cd
Remove redundant code
...
See gh-19000
5 years ago
dreis2211
21dc7e9ca3
Fix StepVerifier usage in HealthIndicatorReactiveAdapterTests
5 years ago
dreis2211
0bdcd2ee67
Handle ApiVersion in CachingOperationInvoker
...
Prior to this commit, ApiVersion was treated as a mandatory parameter in
CachingOperationInvokerAdvisor and thus prevented the
CachingOperationInvoker to kick in. By skipping ApiVersion in the same
way we're skipping SecurityContext we can avoid this.
In order to not return the same cached response, this commit also
changes the cache handling in CachingOperationInvoker to account for
different ApiVersions being passed.
See gh-18961
5 years ago
Madhura Bhave
6e22ddc1a6
Merge branch '2.1.x' into 2.2.x
5 years ago
Madhura Bhave
849a76c6c2
Polish
5 years ago
Madhura Bhave
ff22bd4827
Merge branch '2.1.x' into 2.2.x
...
Closes gh-19059
5 years ago
Madhura Bhave
a3a53d299f
Check authorities when exposing health details
...
Fixes gh-18998
5 years ago
dreis2211
6b500d82b4
Polish
...
See gh-18918
5 years ago
Stephane Nicoll
86a1c96224
Make sure health endpoint is available with no contributor
...
This commit makes sure that the health endpoint returns a default health
status when no contributors are available. Previously, it was returning
`null` which leads to a 404 when exposed via HTTP.
Closes gh-18676
5 years ago
dreis2211
1b2112ea8c
Reduce method visibility in EndpointDiscovererTests
...
See gh-18884
5 years ago
Andy Wilkinson
ce01f7f150
Merge branch '2.1.x'
...
Closes gh-18882
5 years ago
Andy Wilkinson
ed50bf2494
Honour EndpointFilter configured on an endpoint's superclass
...
Previously, @EndpointFilter would only have an effect when used as
an annotation or meta-annotation on the endpoint class itself. It
would have no effect when used on a super-class of the endpoint
bean's class.
This commit updates EndpointDiscoverer so that an @EndpointFilter
annotation or meta-annotation on a super-class will be found and
applied to the discovery process. This is achieved by using find…
rather than get… when retrieving the attributes for the EndpointFilter
annotation.
Fixes gh-17866
5 years ago
Phillip Webb
b3e9a06476
Polish
5 years ago
Stephane Nicoll
d6d32ec01d
Polish
5 years ago
Stephane Nicoll
11e0045ec6
Polish contribution
...
See gh-18736
5 years ago
mattisonchao
f61da8b723
Polish
...
See gh-18736
5 years ago
dreis2211
9ece2e277f
Remove redundant explicit types
...
See gh-18754
5 years ago
dreis2211
911b12f28d
Fix JsonParser deprecation
...
See gh-18750
5 years ago