Andy Wilkinson
28128a9577
Add support for ChronoUnit.WEEKS when using PeriodUnit
...
Fixes gh-22225
4 years ago
Andy Wilkinson
d1f074858e
Correct class name of StringToPeriodConverterTests
4 years ago
Andy Wilkinson
2007490ce7
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22234
4 years ago
Andy Wilkinson
4301580095
Improve testing of PropertyPlaceholderAutoConfiguration
...
Since Spring Framework 4.3.0.RC2, a default embedded value resolver
has been registered with the bean factory when one is not otherwise
configured. This meant that placeholders in `@Value` would be resolved
with or without PropertyPlaceholderAutoConfiguration defining a
PropertySourcesPlaceholderConfigurer bean. However, placeholders in
bean definitions would only be resolved if a
PropertySourcesPlaceholderConfigurer was defined.
This commit updates PropertyPlaceholderAutoConfigurationTests to align
with this change in Framework. We now test that placeholders are
resolved in `@Value` annotations with or without the auto-configuration
and that placeholders in bean definitions are only resolved with the
auto-configured.
Closes gh-22230
4 years ago
Andy Wilkinson
40fc90e343
Merge pull request #22227 from anshlykov
...
* gh-22227:
Update to Maven Shade Plugin 3.2.4
Closes gh-22227
4 years ago
anshlykov
683a7a851f
Update to Maven Shade Plugin 3.2.4
...
See gh-22227
4 years ago
Andy Wilkinson
dfea2f432a
Polish
...
See gh-21921
4 years ago
Brian Clozel
86d8366ee2
Polish support for reactive Elasticsearch healthcheck
...
Fixes gh-21042
4 years ago
Aleksander Lech
203878a16f
Add support for reactive Elasticsearch healthcheck
...
Prior to this commit, configuring a reactive Elasticsearch client would
auto-configure an Actuator Health check using a synchronous client, with
the default configuration properties (so tarting localhost:9200).
This would lead to false reports of unhealthy Elasticsearch clusters
when using reactive clients.
This commit reproduces the logic for MongoDB repositories: if a reactive
variant is available, it is selected for the health check
infrastructure.
See gh-21042
4 years ago
Andy Wilkinson
79770b9615
Use source sets to determine configurations deprecated for resolution
...
Fixes gh-22200
4 years ago
Andy Wilkinson
f6b3666b16
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22197
4 years ago
Andy Wilkinson
21453b5016
Ignore scoped targets when finding matching beans
...
Fixes gh-22038
4 years ago
Andy Wilkinson
81d6751ba7
Use ApplicationContextRunner in ConditionalOnSingleCandidateTests
4 years ago
Andy Wilkinson
f0b78fb3c4
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22190
4 years ago
Andy Wilkinson
1410ef2911
Merge branch '2.1.x' into 2.2.x
...
Closes gh-22193
4 years ago
Andy Wilkinson
c9958c2ab4
Upgrade CI to Docker 19.03.12
...
Closes gh-22189
4 years ago
Andy Wilkinson
b9bfcdd4e9
Merge pull request #21921 from eddumelendez
...
* gh-21921:
Reinstate metrics for Kafka Streams
Closes gh-21921
4 years ago
Eddú Meléndez
54e0a61b42
Reinstate metrics for Kafka Streams
...
See gh-21921
4 years ago
Andy Wilkinson
d64337013f
Upgrade to Spring Kafka 2.5.3.RELEASE
...
Closes gh-22185
4 years ago
Andy Wilkinson
f4cbdf556d
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22183
4 years ago
Andy Wilkinson
e44640de89
Merge branch '2.1.x' into 2.2.x
...
Closes gh-22182
4 years ago
Andy Wilkinson
25777360b2
Merge pull request #22110 from dreis2211
...
* gh-22110:
Improve error handling in JDK upgrade checks
Closes gh-22110
4 years ago
dreis2211
24072bed96
Improve error handling in JDK upgrade checks
...
See gh-22110
4 years ago
Andy Wilkinson
9360ba168b
Upgrade to Reactor Dysprosium-SR9
...
Closes gh-21938
4 years ago
Andy Wilkinson
f3b273b09e
Merge branch '2.2.x' into 2.3.x
4 years ago
Andy Wilkinson
a13acf9f2b
Upgrade to Reactor Dysprosium-SR9
...
Closes gh-21937
4 years ago
Andy Wilkinson
9317135690
Improve error handling when builder image isn't a builder
...
Fixes gh-22179
4 years ago
Andy Wilkinson
0e1ded6893
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22175
4 years ago
Andy Wilkinson
500d2bd9de
Merge pull request #22138 from dreis2211
...
* gh-22138:
Accept empty filter dispatcher types in auto-configurations
Closes gh-22138
4 years ago
dreis2211
8c0e302f2e
Accept empty filter dispatcher types in auto-configurations
...
Prior to this commit, the usage of EnumSet.copyOf resulted in exceptions when
the underlying collection was empty.
See gh-22138
4 years ago
Andy Wilkinson
4566ac5c25
Add package info to o.s.b.autoconfigure.elasticsearch.rest
...
Closes gh-22147
4 years ago
Andy Wilkinson
48e607f4d2
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22171
4 years ago
Andy Wilkinson
abeab73b2c
Merge branch '2.1.x' into 2.2.x
...
Closes gh-22170
4 years ago
Andy Wilkinson
bca5ef4ac8
Merge pull request #22163 from XenoAmess
...
* gh-22163:
Remove duplicated icon from git-repo-windows resource definition
Closes gh-22163
4 years ago
XenoAmess
89d4cda855
Remove duplicated icon from git-repo-windows resource definition
...
See gh-22163
4 years ago
Andy Wilkinson
75fc140e2d
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22167
4 years ago
Andy Wilkinson
64aa418baa
Merge pull request #22141 from im47cn
...
* gh-22141:
Polish "Avoid NPE when binder is closed before started event"
Avoid NPE when binder is closed before started event
Closes gh-22141
4 years ago
Andy Wilkinson
3922fb7164
Polish "Avoid NPE when binder is closed before started event"
...
See gh-22141
4 years ago
im47cn
b34c268547
Avoid NPE when binder is closed before started event
...
Previously, if TomcatMetricsBinder destroy() was called before it had
received an ApplicationStartedEvent an NPE would be thrown due to
TomcatMetrics being null. This NPE was then caught and logged at
warning level by the disposable bean adapter.
This prevents the NPE by checking that the TomcatMetrics instance is
null before calling close() on it.
See gh-22141
4 years ago
Andy Wilkinson
f86831da9c
Use TCCL at time of access for resource loading
...
Fixes gh-22119
4 years ago
Madhura Bhave
f19f2b8714
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22155
4 years ago
Madhura Bhave
9c732fa2b6
Merge pull request #22082 from thenx-wei
...
* pr/22082:
Simplify logic in ErrorPage's equals method
Closes gh-22082
4 years ago
May
c1b9d3c226
Simplify logic in ErrorPage's equals method
...
See gh-22082
4 years ago
Madhura Bhave
affb2da07a
Merge branch '2.2.x' into 2.3.x
4 years ago
Madhura Bhave
67060731bc
Merge branch '2.1.x' into 2.2.x
4 years ago
Madhura Bhave
4a55a414e7
Fix typo
4 years ago
Madhura Bhave
550ff443df
Merge pull request #22090 from izeye
...
* pr/22090:
Polish
Closes gh-22090
4 years ago
Johnny Lim
43aee1bddd
Polish
...
See gh-22090
4 years ago
Madhura Bhave
62f5e44324
Fix typo
4 years ago
Madhura Bhave
7a81cea513
Update layers.idx file example in docs
...
Fixes gh-21510
4 years ago