Andy Wilkinson
0af8c35428
Auto-configure Rabbit CF with credentials provider and refresh service
...
Closes gh-22016
2020-07-07 13:07:40 +01:00
Johnny Lim
4ab4c61761
Polish ErrorPage.equals()
...
See gh-22240
2020-07-07 14:01:16 +02:00
Andy Wilkinson
1b85ce0769
Streamline OAuth2 resource server auto-config class conditions
...
Fixes gh-22233
2020-07-07 12:22:27 +01:00
Andy Wilkinson
247fd59422
Merge branch '2.3.x'
...
Closes gh-22252
2020-07-07 11:52:50 +01:00
Andy Wilkinson
b8bc219b25
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22251
2020-07-07 11:52:34 +01:00
Andy Wilkinson
4e79bb1cff
Disable bean method proxying in SpringBootJdbcConfiguration
...
Closes gh-22231
2020-07-07 11:51:07 +01:00
Andy Wilkinson
29b69bfbdf
Merge branch '2.3.x'
...
Closes gh-22250
2020-07-07 11:43:17 +01:00
Andy Wilkinson
da319f5f59
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22249
2020-07-07 11:43:03 +01:00
Andy Wilkinson
14f24dbecc
Merge branch '2.1.x' into 2.2.x
...
Closes gh-22248
2020-07-07 11:42:43 +01:00
Andy Wilkinson
26f591264c
Fix handling of NestedServletException with no root cause
...
Fixes gh-22169
2020-07-07 11:34:25 +01:00
dreis2211
507eb9498b
Use Class.getDeclaredConstructor().newInstance()
...
See gh-21913
2020-07-07 11:12:35 +01:00
Andy Wilkinson
fbfb7df3e1
Merge branch '2.3.x'
...
Closes gh-22247
2020-07-07 10:54:00 +01:00
Andy Wilkinson
24e1a1dddf
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22246
2020-07-07 10:53:45 +01:00
Andy Wilkinson
a8d3f9af31
Polish "Rename NoneOfNestedConditions to NoneNestedConditions in example docs"
...
See gh-22207
2020-07-07 10:46:32 +01:00
Clayton Walker
7fee70a625
Rename NoneOfNestedConditions to NoneNestedConditions in example docs
...
See gh-22207
2020-07-07 10:46:20 +01:00
Andy Wilkinson
7864a7da52
Polish "Remove redundant bitwise operations"
...
See gh-22212
2020-07-07 10:37:44 +01:00
XenoAmess
de46d4bfd3
Remove redundant bitwise operations
...
See gh-22212
2020-07-07 10:37:26 +01:00
XenoAmess
7c73ed69e1
Use valueOf rather than parseInt as result is assigned to an int
...
See gh-22209
2020-07-07 10:26:25 +01:00
Andy Wilkinson
3c7f54b97f
Polish "Remove redundant close() call from JarResourceManagerTests"
...
See gh-22213
2020-07-07 10:17:22 +01:00
XenoAmess
623b3ab96e
Remove redundant close() call from JarResourceManagerTests
...
See gh-22213
2020-07-07 10:16:20 +01:00
Andy Wilkinson
cd8081f952
Polish "Use new ArrayList(Collection) rather than new and addAll"
...
See gh-22211
2020-07-07 10:09:48 +01:00
XenoAmess
fb70c529d4
Use new ArrayList(Collection) rather than new and addAll
...
See gh-22211
2020-07-07 10:07:29 +01:00
XenoAmess
90d8480ffe
Use new ArrayList(Collection) rather than new, iterate, and add
...
See gh-22210
2020-07-07 10:04:13 +01:00
XenoAmess
66dc24062f
Fix typos in test code
...
See gh-22218
2020-07-07 10:01:48 +01:00
Andy Wilkinson
2a9193f6d9
Merge branch '2.3.x'
...
Closes gh-22244
2020-07-07 09:56:34 +01:00
Andy Wilkinson
96e6b74894
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22243
2020-07-07 09:56:21 +01:00
Andy Wilkinson
a0f1424393
Polish "Fix unwrapping of captured PrintStream in test support's OutputCapture"
...
See gh-22214
2020-07-07 09:54:52 +01:00
XenoAmess
75a64bd901
Fix unwrapping of captured PrintStream in test support's OutputCapture
...
See gh-22214
2020-07-07 09:53:34 +01:00
Andy Wilkinson
b627918011
Polish "Optionally ignore routing data sources when creating DB health indicators"
...
See gh-22222
2020-07-07 09:42:36 +01:00
Julio Gomez Diaz
13d1d2393d
Optionally ignore routing data sources when creating DB health indicators
...
See gh-22222
2020-07-07 09:36:06 +01:00
Andy Wilkinson
523dd937cd
Merge branch '2.3.x'
...
Closes gh-22238
2020-07-06 19:58:45 +01:00
Andy Wilkinson
28128a9577
Add support for ChronoUnit.WEEKS when using PeriodUnit
...
Fixes gh-22225
2020-07-06 19:57:26 +01:00
Andy Wilkinson
0141f554b8
Merge branch '2.3.x'
2020-07-06 16:00:10 +01:00
Andy Wilkinson
d1f074858e
Correct class name of StringToPeriodConverterTests
2020-07-06 15:59:32 +01:00
Andy Wilkinson
aca609c4c5
Merge branch '2.3.x'
...
Closes gh-22235
2020-07-06 14:25:13 +01:00
Andy Wilkinson
2007490ce7
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22234
2020-07-06 14:24:53 +01:00
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
2020-07-06 14:24:36 +01:00
Andy Wilkinson
6331a27822
Merge branch '2.3.x'
...
Closes gh-22228
2020-07-06 09:51:44 +01:00
anshlykov
683a7a851f
Update to Maven Shade Plugin 3.2.4
...
See gh-22227
2020-07-06 09:51:08 +01:00
Andy Wilkinson
b356bc830d
Merge branch '2.3.x'
2020-07-06 09:47:08 +01:00
Andy Wilkinson
dfea2f432a
Polish
...
See gh-21921
2020-07-06 09:41:39 +01:00
Brian Clozel
3f93978e99
Merge branch '2.3.x'
...
Closes gh-22215
2020-07-03 15:52:35 +02:00
Brian Clozel
86d8366ee2
Polish support for reactive Elasticsearch healthcheck
...
Fixes gh-21042
2020-07-03 15:25:18 +02:00
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
2020-07-03 15:16:38 +02:00
Andy Wilkinson
ecbc8ea2df
Merge branch '2.3.x'
...
Closes gh-22202
2020-07-02 15:17:04 +01:00
Andy Wilkinson
79770b9615
Use source sets to determine configurations deprecated for resolution
...
Fixes gh-22200
2020-07-02 15:14:00 +01:00
Andy Wilkinson
ecc50d179d
Merge branch '2.3.x'
...
Closes gh-22198
2020-07-02 10:41:09 +01:00
Andy Wilkinson
f6b3666b16
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22197
2020-07-02 10:40:54 +01:00
Andy Wilkinson
21453b5016
Ignore scoped targets when finding matching beans
...
Fixes gh-22038
2020-07-02 10:39:56 +01:00
Andy Wilkinson
81d6751ba7
Use ApplicationContextRunner in ConditionalOnSingleCandidateTests
2020-07-02 10:10:28 +01:00
Andy Wilkinson
d85774ea77
Merge branch '2.3.x'
...
Closes gh-22196
2020-07-02 09:32:11 +01:00
Eddú Meléndez
54e0a61b42
Reinstate metrics for Kafka Streams
...
See gh-21921
2020-07-01 14:03:11 +01:00
Andy Wilkinson
d64337013f
Upgrade to Spring Kafka 2.5.3.RELEASE
...
Closes gh-22185
2020-07-01 14:01:39 +01:00
Andy Wilkinson
9360ba168b
Upgrade to Reactor Dysprosium-SR9
...
Closes gh-21938
2020-07-01 11:51:54 +01:00
Andy Wilkinson
a13acf9f2b
Upgrade to Reactor Dysprosium-SR9
...
Closes gh-21937
2020-07-01 11:49:39 +01:00
Andy Wilkinson
160d8e49e3
Merge branch '2.3.x'
...
Closes gh-22180
2020-07-01 11:44:00 +01:00
Andy Wilkinson
9317135690
Improve error handling when builder image isn't a builder
...
Fixes gh-22179
2020-07-01 11:42:36 +01:00
Andy Wilkinson
8c341df73b
Polish "Add properties to control exceptions ignored by LdapTemplate"
...
See gh-21289
2020-07-01 10:03:34 +01:00
Filip Hrisafov
6853320661
Add properties to control exceptions ignored by LdapTemplate
...
See gh-21289
2020-07-01 09:33:39 +01:00
dreis2211
20debcd471
Remove redundant deprecation suppression
...
See gh-22178
2020-07-01 09:03:28 +01:00
Andy Wilkinson
568f41e8e2
Merge branch '2.3.x'
...
Closes gh-22176
2020-06-30 17:40:02 +01:00
Andy Wilkinson
0e1ded6893
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22175
2020-06-30 17:39:52 +01:00
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
2020-06-30 17:39:21 +01:00
Andy Wilkinson
6da52a0d08
Suggest iso-offset as value for WebFlux time and date-time properties
...
Closes gh-22174
2020-06-30 17:35:45 +01:00
Andy Wilkinson
9230ea4ab7
Polish "Support iso-offset for date-time and time formatting with MVC"
...
See gh-21630
2020-06-30 17:25:16 +01:00
Gaurav Pareek
c3b1172aea
Support iso-offset for date-time and time formatting with MVC
...
See gh-21630
2020-06-30 17:05:17 +01:00
Andy Wilkinson
bb1a0ffbd5
Merge branch '2.3.x'
...
Closes gh-22173
2020-06-30 17:02:10 +01:00
Andy Wilkinson
4566ac5c25
Add package info to o.s.b.autoconfigure.elasticsearch.rest
...
Closes gh-22147
2020-06-30 17:01:21 +01:00
Andy Wilkinson
4ea07f432d
Merge branch '2.3.x'
...
Closes gh-22168
2020-06-30 14:13:07 +01:00
Andy Wilkinson
75fc140e2d
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22167
2020-06-30 14:09:57 +01:00
Andy Wilkinson
3922fb7164
Polish "Avoid NPE when binder is closed before started event"
...
See gh-22141
2020-06-30 13:26:30 +01:00
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
2020-06-30 13:23:58 +01:00
Andy Wilkinson
62aa8ce107
Support incremental annotation processing with Gradle
...
Closes gh-22150
2020-06-30 11:27:32 +01:00
Andy Wilkinson
27c458ca26
Merge branch '2.3.x'
...
Closes gh-22160
2020-06-30 10:53:49 +01:00
Andy Wilkinson
f86831da9c
Use TCCL at time of access for resource loading
...
Fixes gh-22119
2020-06-30 10:51:13 +01:00
Madhura Bhave
255f8197ab
Merge branch '2.3.x'
...
Closes gh-22156
2020-06-29 17:09:05 -07:00
Madhura Bhave
f19f2b8714
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22155
2020-06-29 17:08:37 -07:00
May
c1b9d3c226
Simplify logic in ErrorPage's equals method
...
See gh-22082
2020-06-29 17:06:49 -07:00
Madhura Bhave
75abb9cc18
Merge branch '2.3.x'
...
Closes gh-22153
2020-06-29 16:36:25 -07:00
Johnny Lim
43aee1bddd
Polish
...
See gh-22090
2020-06-29 16:35:23 -07:00
Madhura Bhave
a963bba0e4
Merge branch '2.3.x'
2020-06-29 16:29:32 -07:00
Madhura Bhave
62f5e44324
Fix typo
2020-06-29 16:29:09 -07:00
Madhura Bhave
fbf2beef6e
Merge branch '2.3.x'
...
Closes gh-22152
2020-06-29 16:26:30 -07:00
Madhura Bhave
7a81cea513
Update layers.idx file example in docs
...
Fixes gh-21510
2020-06-29 16:25:23 -07:00
Andy Wilkinson
d33a01a13f
Only create effective bom artifact when needed
...
Closes gh-22143
2020-06-29 13:39:54 +01:00
Andy Wilkinson
c000ccdaea
Upgrade to Spring Session 2020.0.0-M1
...
Closes gh-21928
2020-06-29 10:02:13 +01:00
Andy Wilkinson
77eb5f7794
Polish "Add StatsD transport protocol configuration option"
...
See gh-22125
2020-06-29 09:47:17 +01:00
Lee Dobryden
5d41f60e45
Add StatsD transport protocol configuration option
...
See gh-22125
2020-06-29 09:47:08 +01:00
Kedar Joshi
6c29b29bd5
Upgrade to Flyway 6.5.0 and support createSchemas
...
See gh-22120
2020-06-29 09:40:16 +01:00
Andy Wilkinson
f6400e95ee
Switch to a RuntimeException as NPE has a message on Java 15
...
Closes gh-22136
2020-06-27 09:31:39 +01:00
Andy Wilkinson
12add61504
Upgrade to WebJars Locator Core 0.46
...
Closes gh-22135
2020-06-26 23:27:45 +01:00
Andy Wilkinson
9d7cea0286
Upgrade to Spring Kafka 2.5.3.RELEASE
...
Closes gh-22134
2020-06-26 23:27:45 +01:00
Andy Wilkinson
872ccddd52
Upgrade to Oracle Database 19.7.0.0
...
Closes gh-22133
2020-06-26 23:27:44 +01:00
Andy Wilkinson
c91565b412
Upgrade to Micrometer 1.5.2
...
Closes gh-22132
2020-06-26 23:23:45 +01:00
Andy Wilkinson
ee5e35f3fd
Upgrade to MariaDB 2.6.1
...
Closes gh-22131
2020-06-26 23:23:43 +01:00
Andy Wilkinson
8c974c0480
Upgrade to Jackson Bom 2.11.1
...
Closes gh-22130
2020-06-26 23:23:42 +01:00
Andy Wilkinson
d2a53e4811
Upgrade to Hazelcast 3.12.8
...
Closes gh-22129
2020-06-26 23:23:40 +01:00
Andy Wilkinson
46b10fd46f
Upgrade to Spring AMQP 2.3.0-M1
...
Closes gh-22127
2020-06-26 23:11:25 +01:00
Andy Wilkinson
c18896ed5a
Upgrade to Spring Batch 4.3.0-M1
...
Closes gh-22126
2020-06-26 23:11:25 +01:00
Andy Wilkinson
7c1a8c1041
Drop back to Spring Security 5.4.0-M1
...
See gh-21932
2020-06-26 23:11:25 +01:00
Andy Wilkinson
742ac877c6
Upgrade to Spring Integration 5.4.0-M1
...
Closes gh-21931
2020-06-26 22:45:26 +01:00
Scott Frederick
a73af52496
Merge branch '2.3.x'
...
Closes gh-22121
2020-06-26 11:51:45 -05:00
Scott Frederick
9a083584b8
Improve validation of layertools input
...
This commit improves the validation performed on the user
input provided to the layertools jarmode to provide more
clear error messages when the input is not correct and
reduce the chance of ambiguity.
Fixes gh-22042
2020-06-26 11:51:07 -05:00
Madhura Bhave
c3ddfcdbf5
Trim trailing whitespace from value of logging.config
...
Closes gh-22078
2020-06-25 15:18:40 -07:00
Andy Wilkinson
d12b6b3a86
Disable LogbackLoggingSystem's XML support when spring.xml.ignore=true
...
Closes gh-22106
2020-06-25 13:01:45 +01:00
Andy Wilkinson
308e337009
Polish "Disable XML reader when spring.xml.ignore is true"
...
See gh-22093
2020-06-25 11:52:43 +01:00
Sébastien Deleuze
8d5cf79675
Disable XML reader when spring.xml.ignore is true
...
This commit allows to set the XmlBeanDefinitionReader field from
BeanDefinitionLoader to null in a way that allows the GraalVM native
compiler to remove it from the native image when the spring.xml.ignore
flag introduced by spring-projects/spring-framework#25151
is set to true.
The purpose of this change is to allow smaller footprint on native
images without requiring to use GraalVM native substitutions
which are unmaintainable by nature and also to increase the consistency
between JVM and native images.
In order to effective, this optimization requires BeanDefinitionLoader
class to be initialized at build time.
See gh-22093
2020-06-25 11:51:27 +01:00
Andy Wilkinson
ea30c096dd
Polish 16263e3
...
See gh-22105
2020-06-25 11:49:35 +01:00
Andy Wilkinson
263adf1cde
Upgrade to Spring Data Bom 2020.0.0-M1
...
Closes gh-21930
2020-06-25 11:36:53 +01:00
Andy Wilkinson
6cdd8942e7
Upgrade to Spring Framework 5.3.0-M1
...
Closes gh-21929
2020-06-25 11:36:15 +01:00
Andy Wilkinson
920e961f9b
Upgrade to Reactor Bom 2020.0.0-M1
...
Closes gh-21927
2020-06-25 11:35:15 +01:00
Andy Wilkinson
16263e342c
Move bean definition counting only used in tests into test code
...
Closes gh-22105
2020-06-25 11:33:09 +01:00
Andy Wilkinson
fe78be240a
Merge branch '2.3.x'
...
Closes gh-22103
2020-06-25 10:33:07 +01:00
Andy Wilkinson
a2f7ce0564
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22102
2020-06-25 10:32:32 +01:00
Andy Wilkinson
5475f10657
Remove WebClient's in-memory buffer size limit for endpoint tests
...
Previously, the thread dump endpoint's response could exceed
WebClient's in-memory buffer limt when there were a large number of
threads or the threads had large stacks.
This commit disables WebClient's in-memory buffer size limit so that
the test passing is not dependent on the number of active threads and
their stack sizes.
Closes gh-22101
2020-06-25 10:21:43 +01:00
Scott Frederick
3b587449a6
Provide cluster info in RedisReactiveHealthIndicator
...
This commit changes the information provided by
RedisReactiveHealthIndicator to include cluster details when Spring
Data Redis detects that Redis is running in a clustered configuration.
This brings the reactive and non-reactive Redis health indicators
into alignment.
Fixes gh-21514
2020-06-24 16:45:26 -05:00
Scott Frederick
dba8ca2848
Merge branch '2.3.x'
...
Closes gh-22095
2020-06-24 13:40:57 -05:00
Scott Frederick
72f37c41fb
Merge branch '2.2.x' into 2.3.x
...
Fixes gh-22061 in 2.3.2
2020-06-24 13:37:16 -05:00
Scott Frederick
b27303704f
Fix RedisReactiveHealthIndicator in clustered configuration
...
Prior to Spring Data Redis version 2.2.8, the contents of the
Properties object returned from the
ReactiveRedisConnection.ServerCommands.info API were the same
for clustered and non-clustered Redis configurations, containing a set
of key/value pairs. This allowed ReactiveRedisHealthIndicator to get
a version property using a well-known key. Starting with Spring Data
Redis 2.2.8, the info property keys contain a host:port prefix in a
clustered Redis configuration. This prevented
ReactiveRedisHealthIndicator from getting the version property as
before and resulted in the health always being reported as DOWN.
This commit adjusts ReactiveRedisHealthIndicator to detect the
clustered configuration from Spring Data Redis and find the version
property for one of the reported cluster nodes.
Fixes gh-22061
2020-06-24 13:34:22 -05:00
Andy Wilkinson
c3aa494ba3
Start building against Spring Session 2020.0.0-M1 snapshots
...
See gh-21928
2020-06-24 11:36:53 +01:00
Andy Wilkinson
a92d64cb80
Start building against Spring Security 5.4.0-M2 snapshots
...
See gh-21932
2020-06-24 11:36:53 +01:00
Andy Wilkinson
c54918e46d
Start building against Spring Integration 5.4.0-M1 snapshots
...
See gh-21931
2020-06-24 11:06:30 +01:00
Andy Wilkinson
360d44ac04
Restrict JLine version to 2.11 to avoid breaking changes in 2.12+
...
Closes gh-22072
2020-06-24 11:02:23 +01:00
Andy Wilkinson
9b26c67627
Merge branch '2.3.x'
...
Closes gh-22088
2020-06-24 10:53:15 +01:00
Andy Wilkinson
fc2e3770de
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22087
2020-06-24 10:52:55 +01:00
Andy Wilkinson
3fed27fd90
Merge branch '2.1.x' into 2.2.x
...
Closes gh-22085
2020-06-24 10:17:57 +01:00
Andy Wilkinson
0b4533659f
Use Groovy's bom in spring-boot-dependencies
...
Closes gh-22084
2020-06-24 10:17:06 +01:00
Andy Wilkinson
63e1e7365e
Upgrade to Testcontainers 1.14.3
...
Closes gh-22076
2020-06-23 12:20:54 +01:00
Andy Wilkinson
549f6abc9a
Upgrade to MockK 1.10.0
...
Closes gh-22075
2020-06-23 12:20:53 +01:00
Andy Wilkinson
5e7917e33a
Upgrade to Maven Shade Plugin 3.2.4
...
Closes gh-22074
2020-06-23 12:20:53 +01:00
Andy Wilkinson
66b84ac7e6
Upgrade to Maven Resolver 1.4.2
...
Closes gh-22073
2020-06-23 12:00:17 +01:00
Andy Wilkinson
ae4ebbe685
Upgrade to Commons Compress 1.20
...
Closes gh-22071
2020-06-23 11:32:43 +01:00
Andy Wilkinson
6215336602
Upgrade to Testcontainers 1.14.3
...
Closes gh-22069
2020-06-23 10:50:18 +01:00
Andy Wilkinson
345d33c6a1
Upgrade to Maven Shade Plugin 3.2.4
...
Closes gh-22068
2020-06-23 10:50:17 +01:00
Andy Wilkinson
2d779adca6
Upgrade to Maven Resolver 1.4.2
...
Closes gh-22067
2020-06-23 10:50:15 +01:00
Andy Wilkinson
4c0d2686ad
Merge branch '2.3.x'
...
Closes gh-22066
2020-06-23 10:45:43 +01:00
Andy Wilkinson
12d3f14e15
Use bom plugin to configure spring-boot-parent
...
Closes gh-21439
2020-06-23 10:43:59 +01:00
Phillip Webb
efe84356b7
Merge branch '2.3.x'
...
Closes gh-22064
2020-06-22 23:16:02 -07:00
Phillip Webb
03b0a373ab
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22063
2020-06-22 23:15:48 -07:00
Phillip Webb
e6eb02603c
Polish 'Inherit show-details property in health groups'
...
Rework the inheritance so that the property metadata JSON more
accurately reflects the default value.
See gh-22022
2020-06-22 23:01:37 -07:00
Leo Li
10de88884f
Inherit show-details property in health groups
...
Update `Group` properties so that the `showDetails` value does not
inherit `Show.NEVER`. Prior to this commit, the `Group` properties
would not correctly inherit a `showDetails` value from the main
`management.endpoint.health.show-details` property.
See gh-22022
2020-06-22 22:54:34 -07:00
Phillip Webb
301ec12a0c
Merge branch '2.3.x'
2020-06-22 22:37:25 -07:00
Phillip Webb
f296f57401
Rename ImageReferenceParser to Regex
...
Rename `ImageReferenceParser` to `Regex` and remove state. The regular
expressions are now used directly by the `ImageName` and
`ImageReference` classes with the values accessed directly from the
`Matcher`.
See gh-21495
2020-06-22 22:36:46 -07:00
Andy Wilkinson
5ec7745b96
Upgrade to SQLite JDBC 3.32.3
...
Closes gh-22058
2020-06-22 20:55:49 +01:00
Andy Wilkinson
1d44eb68b7
Upgrade to Jetty Reactive HTTPClient 1.1.4
...
Closes gh-22057
2020-06-22 20:55:49 +01:00
Andy Wilkinson
b65f7f2b31
Upgrade to Jakarta Servlet 4.0.4
...
Closes gh-22056
2020-06-22 20:55:48 +01:00
Andy Wilkinson
5de7919a56
Upgrade to Hibernate 5.4.18.Final
...
Closes gh-22055
2020-06-22 20:55:48 +01:00
Andy Wilkinson
06de6625f8
Upgrade to Byte Buddy 1.10.12
...
Closes gh-22054
2020-06-22 20:55:48 +01:00
Phillip Webb
82ed255bb1
Merge branch '2.3.x'
...
Closes gh-22060
2020-06-22 12:14:58 -07:00
Phillip Webb
9843888714
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22059
2020-06-22 12:14:35 -07:00
Phillip Webb
3b3a49db1f
Polish 'Fix infinite loop in FieldValues'
...
See gh-22040
2020-06-22 12:01:04 -07:00
Konrado85
39a853c57b
Fix infinite loop in FieldValues
...
Update `FieldValues` test object so that it doesn't cause an infinite
loop if it is actually created.
See gh-22040
2020-06-22 11:58:22 -07:00
Andy Wilkinson
a6784e3bea
Upgrade to Cassandra Driver 4.7.2
...
Closes gh-22052
2020-06-22 18:04:30 +01:00
Andy Wilkinson
96f748949d
Starting building against Spring Data 2020.0.0 snapshots
...
See gh-21930
2020-06-22 18:02:59 +01:00
Andy Wilkinson
0d6ea79007
Start building against Spring Framework 5.3.0 snapshots
...
See gh-21929
2020-06-22 18:02:21 +01:00
Andy Wilkinson
a0946c8923
Start building against Reactor 2020.0.0 snapshots
...
See gh-21927
2020-06-22 17:34:56 +01:00
Andy Wilkinson
632d9bab21
Merge branch '2.3.x'
...
Closes gh-22048
2020-06-22 10:00:13 +01:00
Andy Wilkinson
73aa8f1434
Enforce spring-boot-parent's platform dependencies
...
Closes gh-22047
2020-06-22 09:59:21 +01:00
Scott Frederick
39b2d01541
Merge branch '2.3.x'
...
Closes gh-22037
2020-06-19 15:43:59 -05:00
dreis2211
a6e8561391
Catch more generic FileSystemException in NamedPipeSocket
...
See gh-22035
2020-06-19 15:41:20 -05:00
Stephane Nicoll
51e9a5dae0
Merge branch '2.3.x'
...
Closes gh-22029
2020-06-19 14:15:32 +02:00
Johnny Lim
b218a89862
Remove Javadoc throw for ConfigurationPropertyName.ofIfValid()
...
See gh-22018
2020-06-19 14:14:57 +02:00
Stephane Nicoll
ea63984f93
Merge branch '2.3.x'
...
Closes gh-22024
2020-06-19 11:38:16 +02:00
Stephane Nicoll
d5385a7b64
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22023
2020-06-19 11:37:52 +02:00
Stephane Nicoll
9b803af3c3
Polish "Document how to exclude an annotation processor with Maven"
...
See gh-22000
2020-06-19 11:36:25 +02:00
Marco Pens
627c0b1031
Document how to exclude an annotation processor with Maven
...
See gh-22000
2020-06-19 11:35:48 +02:00
Andy Wilkinson
ca76b60de2
Merge branch '2.3.x'
...
Closes gh-22021
2020-06-19 08:23:30 +01:00
Andy Wilkinson
136c9b1af8
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22020
2020-06-19 08:23:15 +01:00
Andy Wilkinson
c37fd865c0
Merge branch '2.3.x'
...
Closes gh-22019
2020-06-19 08:22:48 +01:00
Andy Wilkinson
1e97ff834e
Only consider current context when finding lifecycle processor
...
Previously, LifecycleAutoConfiguration would check the current context
and all of its ancestors for a lifecycle processor bean, only
configuring a custom processor if one was not found. Every context
has a lifecycle processor so this check meant that lifecycle processing
timeout could not be customized in any context with a parent.
This commit updates the auto-configuration to only check the current
context.
Closes gh-22014
2020-06-19 08:19:57 +01:00
Andy Wilkinson
41173f7c40
Polish "Use Awaitility instead of Thread.sleep"
...
See gh-21988
2020-06-19 08:18:01 +01:00
Tomek Szmytka
c13385ea74
Use Awaitility instead of Thread.sleep
...
See gh-21988
2020-06-19 08:17:53 +01:00
Scott Frederick
73b737c7d8
Merge branch '2.3.x'
...
Closes gh-22017
2020-06-18 15:11:07 -05:00
Scott Frederick
28643e4d2d
Validate image references before passing to CNB builder
...
Prior to this commit, an image name or run image name derived from
the project name or provided by the user would be passed to the CNB
builder without validation by the Maven plugin build-image goal or
Gradle plugin bootBuildImage task. This could lead to error messages
from the plugins that are difficult to understand and diagnose.
This commit makes parsing of the image names more strict, based on
the grammar implemented by the Docker go library. This provides
validation of the image names before passing them to the builder,
with a more descriptive error message when parsing and validation
fails.
Fixes gh-21495
2020-06-18 15:09:57 -05:00
Andy Wilkinson
67604a5416
Only process main metadata as it already includes additional metadata
...
Previously, the configuration property table generation was reading
both the main metadata and the additional metadata from each project.
This was unnecessary as the annotation processor will have already
merged the additional metadata into the main metadata before writing
it to disk. Processing both the main and additional metadata led to
a clash as the metadata overlapped. When the entry in the additional
metadata won the clash, the resulting entry in the configuration
property table would lose any details that aren't contained in the
additional metadata.
This commit updates the property table generation code to only use
the main metadata files.
Fixes gh-21131
2020-06-18 15:49:34 +01:00
Andy Wilkinson
01c270d54b
Merge branch '2.3.x'
...
Closes gh-22011
2020-06-18 11:03:49 +01:00
Andy Wilkinson
ce907b129c
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22010
2020-06-18 11:03:32 +01:00
Andy Wilkinson
1b62abab9a
Configure context on SizeAndTimeBasedRollingPolicy
...
Previously, when file-based logging was enabled, Logback would output
the following during logging system initialization:
LOGBACK: No context given for c.q.l.core.rolling.SizeAndTimeBasedRollingPolicy
This commit updates the default logback configuration to set the
context on the SizeAndTimeBasedRollingPolicy that it creates.
Fixes gh-21056
2020-06-18 11:01:26 +01:00
Andy Wilkinson
cd47bece7f
Merge branch '2.3.x'
...
Closes gh-22009
2020-06-18 10:34:16 +01:00
Andy Wilkinson
8a7c32fff7
Prevent oauth2-oidc-sdk from downgrading json-smart in Maven projects
...
Fixes gh-21939
2020-06-18 10:34:12 +01:00
Stephane Nicoll
f0f8424191
Merge branch '2.3.x'
...
Closes gh-22008
2020-06-18 11:31:00 +02:00
dreis2211
855d596c2a
Use lazy lambda instead of explicit argument
...
See gh-21986
2020-06-18 11:29:49 +02:00
Andy Wilkinson
f3220b16fe
Merge branch '2.3.x'
2020-06-18 09:23:40 +01:00
Andy Wilkinson
8f7d71ca11
Merge branch '2.2.x' into 2.3.x
2020-06-18 09:23:21 +01:00
Andy Wilkinson
907b64a5eb
Remove redundant stop() calls from LiveReloadServerTests
2020-06-18 09:23:02 +01:00
Madhura Bhave
f47e06c4ef
Merge branch '2.3.x'
...
Closes gh-22007
2020-06-17 17:27:10 -07:00
Madhura Bhave
f4ad30c448
Merge branch '2.2.x' into 2.3.x
...
Closes gh-22006
2020-06-17 17:26:40 -07:00
Madhura Bhave
615cf63a82
Make MockBean resolve right type for abstract test class
...
Fixes gh-20916
2020-06-17 17:25:03 -07:00
Andy Wilkinson
57b9286c84
Merge branch '2.3.x'
2020-06-17 11:53:29 +01:00
Andy Wilkinson
2d1dffa3ad
Correct additions to spring-boot-starter-parent's pom
...
Following the fix for gh-21989, spring-boot-starter-parent no longer
contains an <issueManagement> element. As a result the additional
content was no longer being added to the pom. This commit updates
the additions so that they are now added after the <scm> element
that is still present.
See gh-21989
2020-06-17 11:51:54 +01:00
Andy Wilkinson
22fd2005b4
Remove plugin management for Flatten Maven Plugin
...
Closes gh-21984
2020-06-16 12:57:07 +01:00
Andy Wilkinson
9e08490522
Merge branch 'gh-21271'
...
Closes gh-21271
2020-06-16 12:52:17 +01:00
Andy Wilkinson
753bea64c6
Enable varargs compilation warnings
...
See gh-21271
2020-06-16 12:50:53 +01:00
Andy Wilkinson
9636350b0b
Enable rawtypes compilation warnings
...
See gh-21271
2020-06-16 12:50:50 +01:00
Andy Wilkinson
056d5f3120
Enable deprecation compilation warnings
...
See gh-21271
2020-06-16 12:50:47 +01:00
Andy Wilkinson
c64649a6d9
Enable unchecked compilation warnings
...
See gh-21271
2020-06-16 12:50:44 +01:00
Andy Wilkinson
47874d8c6a
Treat warnings as errors when compiling
...
See gh-21271
2020-06-16 12:50:41 +01:00
Andy Wilkinson
0f1ada5e29
Upgrade to Undertow 2.1.3.Final
...
Closes gh-21983
2020-06-16 10:42:24 +01:00
Andy Wilkinson
2e54da04e2
Upgrade to Tomcat 9.0.36
...
Closes gh-21982
2020-06-16 10:42:24 +01:00
Andy Wilkinson
8115619021
Upgrade to Spring Retry 1.3.0
...
Closes gh-21981
2020-06-16 10:42:21 +01:00
Andy Wilkinson
c00e751910
Upgrade to Spring Kafka 2.5.2.RELEASE
...
Closes gh-21980
2020-06-16 10:42:08 +01:00
Andy Wilkinson
37c9d13946
Upgrade to Spring Batch 4.2.4.RELEASE
...
Closes gh-21979
2020-06-16 10:42:08 +01:00
Andy Wilkinson
dfd32e7a54
Upgrade to Spring AMQP 2.2.7.RELEASE
...
Closes gh-21978
2020-06-16 10:42:07 +01:00
Andy Wilkinson
030a01192d
Upgrade to SendGrid 4.6.0
...
Closes gh-21977
2020-06-16 10:42:07 +01:00
Andy Wilkinson
f1a7730698
Upgrade to Selenium HtmlUnit 2.41.0
...
Closes gh-21976
2020-06-16 10:42:07 +01:00
Andy Wilkinson
9000f047bd
Upgrade to RSocket 1.0.1
...
Closes gh-21975
2020-06-16 10:42:07 +01:00
Andy Wilkinson
aad6c3d6c9
Upgrade to R2DBC Bom Arabba-SR5
...
Closes gh-21974
2020-06-16 10:42:06 +01:00
Andy Wilkinson
9db3f9adbf
Upgrade to Postgresql 42.2.14
...
Closes gh-21973
2020-06-16 10:42:06 +01:00
Andy Wilkinson
5fd2b85b48
Upgrade to Oracle Database 19.6.0.0
...
Closes gh-21972
2020-06-16 10:42:06 +01:00
Andy Wilkinson
5365e41e4c
Upgrade to OkHttp3 3.14.9
...
Closes gh-21971
2020-06-16 10:42:06 +01:00
Andy Wilkinson
0bb7b0f243
Upgrade to OAuth2 OIDC SDK 7.5
...
Closes gh-21970
2020-06-16 10:42:03 +01:00
Andy Wilkinson
909b7db6f1
Upgrade to Netty tcNative 2.0.31.Final
...
Closes gh-21969
2020-06-16 10:41:54 +01:00
Andy Wilkinson
7ed98bcde8
Upgrade to Netty 4.1.50.Final
...
Closes gh-21968
2020-06-16 10:41:53 +01:00
Andy Wilkinson
9241e488e8
Upgrade to Neo4j OGM 3.2.12
...
Closes gh-21967
2020-06-16 10:41:53 +01:00
Andy Wilkinson
914af4a9f0
Upgrade to MongoDB 4.0.4
...
Closes gh-21966
2020-06-16 10:41:53 +01:00
Andy Wilkinson
1266738522
Upgrade to Maven War Plugin 3.3.0
...
Closes gh-21965
2020-06-16 10:41:53 +01:00
Andy Wilkinson
40c9029e3c
Upgrade to Log4j2 2.13.3
...
Closes gh-21964
2020-06-16 10:41:53 +01:00
Andy Wilkinson
5bb661c95f
Upgrade to Liquibase 3.10.0
...
Closes gh-21963
2020-06-16 10:41:52 +01:00
Andy Wilkinson
87afd8dc62
Upgrade to Lettuce 5.3.1.RELEASE
...
Closes gh-21962
2020-06-16 10:41:52 +01:00
Andy Wilkinson
4345c1c9fb
Upgrade to Kotlin Coroutines 1.3.7
...
Closes gh-21961
2020-06-16 10:41:52 +01:00
Andy Wilkinson
9fa4e92fbb
Upgrade to Johnzon 1.2.7
...
Closes gh-21960
2020-06-16 10:41:52 +01:00
Andy Wilkinson
07cd868ca5
Upgrade to Jetty 9.4.30.v20200611
...
Closes gh-21959
2020-06-16 10:41:51 +01:00
Andy Wilkinson
2cc950065a
Upgrade to Jetty Reactive HTTPClient 1.1.3
...
Closes gh-21958
2020-06-16 10:41:51 +01:00
Andy Wilkinson
43a7a4af13
Upgrade to Jersey 2.31
...
Closes gh-21957
2020-06-16 10:41:49 +01:00
Andy Wilkinson
1fa41ee4ee
Upgrade to Jaybird 3.0.9
...
Closes gh-21956
2020-06-16 10:41:21 +01:00
Andy Wilkinson
0d48b049d9
Upgrade to Javax Money 1.1
...
Closes gh-21955
2020-06-16 10:41:17 +01:00
Andy Wilkinson
73e00ee929
Upgrade to InfluxDB Java 2.19
...
Closes gh-21954
2020-06-16 10:37:15 +01:00
Andy Wilkinson
78a72bb6c3
Upgrade to HtmlUnit 2.41.0
...
Closes gh-21953
2020-06-16 10:37:15 +01:00
Andy Wilkinson
262554a65b
Upgrade to Hibernate 5.4.17.Final
...
Closes gh-21952
2020-06-16 10:37:14 +01:00
Andy Wilkinson
1fdabbc5f7
Upgrade to Groovy 2.5.12
...
Closes gh-21951
2020-06-16 10:37:14 +01:00
Andy Wilkinson
06eda713ee
Upgrade to Flyway 6.4.4
...
Closes gh-21950
2020-06-16 10:37:14 +01:00
Andy Wilkinson
0e0b6c98e0
Upgrade to Elasticsearch 7.7.1
...
Closes gh-21948
2020-06-16 10:32:58 +01:00
Andy Wilkinson
9bbad6fb25
Upgrade to Dropwizard Metrics 4.1.9
...
Closes gh-21947
2020-06-16 10:32:56 +01:00
Andy Wilkinson
d4c5f54f11
Upgrade to Couchbase Client 3.0.5
...
Closes gh-21946
2020-06-16 10:32:54 +01:00
Andy Wilkinson
c366afea6e
Upgrade to Caffeine 2.8.4
...
Closes gh-21945
2020-06-16 10:32:53 +01:00
Andy Wilkinson
d914a6f713
Upgrade to Byte Buddy 1.10.11
...
Closes gh-21944
2020-06-16 10:32:51 +01:00
Andy Wilkinson
3435f5ea3b
Upgrade to Awaitility 4.0.3
...
Closes gh-21943
2020-06-16 10:32:49 +01:00
Andy Wilkinson
1ed5bc72fd
Upgrade to Artemis 2.13.0
...
Closes gh-21942
2020-06-16 10:32:47 +01:00
Andy Wilkinson
07fb4b065d
Merge branch '2.3.x'
...
Closes gh-21940
2020-06-16 10:10:38 +01:00
Andy Wilkinson
0de466e06e
Require dependency on s-b-dependencies to use its constraints
...
Previously, Spring Boot's modules published Gradle Module Metadata
(GMM) the declared a platform dependency on spring-boot-dependencies.
This provided versions for each module's own dependencies but also had
they unwanted side-effect of pulling in spring-boot-dependencies
constraints which would influence the version of other dependencies
declared in the same configuration. This was undesirable as users
should be able to opt in to this level of dependency management, either
by using the dependency management plugin or by using Gradle's built-in
support via a platform dependency on spring-boot-dependencies.
This commit reworks how Spring Boot's build uses
spring-boot-dependencies and spring-boot-parent to provide its own
dependency management. Configurations that aren't seen by consumers are
configured to extend a dependencyManagement configuration that has an
enforced platform dependency on spring-boot-parent. This enforces
spring-boot-parent's version constraints on Spring Boot's build without
making them visible to consumers. To ensure that the versions that
Spring Boot has been built against are visible to consumers, the
Maven publication that produces pom files and GMM for the published
modules is configured to use the resolved versions from the module's
runtime classpath.
Fixes gh-21911
2020-06-16 08:50:21 +01:00
Stephane Nicoll
e30b8bf742
Start building against Reactor Dysprosium-SR9 snapshots
...
See gh-21938
2020-06-16 07:58:28 +02:00
Stephane Nicoll
58974ab9cf
Start building against Reactor Dysprosium-SR9 snapshots
...
See gh-21937
2020-06-16 07:57:31 +02:00
Scott Frederick
838cfc529f
Merge branch '2.3.x'
...
Closes gh-21933
2020-06-15 16:17:39 -05:00
Scott Frederick
6119d69679
Add runImage option for image building
...
This commit adds a runImage property to the Maven plugin build-image
goal and the Gradle bootBuildImage task. The property allows the user
to override the run image reference provided in the builder metadata
with an alternate run image. The runImage property can be specified
in the build file or on the command line.
Fixes gh-21534
2020-06-15 16:08:56 -05:00
Stephane Nicoll
164a992d6e
Fix assertion for startup info format
...
See gh-21926
2020-06-15 20:17:07 +02:00
Brian Clozel
33b61e698e
Merge branch '2.3.x'
2020-06-15 18:22:05 +02:00
Brian Clozel
a480f6e2ee
Polish
2020-06-15 18:21:36 +02:00
Brian Clozel
e438864ad9
Merge branch '2.3.x'
...
Closes gh-21925
2020-06-15 18:08:51 +02:00
Brian Clozel
af2666df79
Fix welcome page support in WebFlux
...
Prior to this commit, the welcome page support implemented in gh-9785
would override existing index views in both annotation and functional
variants.
This comes from the fact that the feature was implemented as a
`RouterFunction` configured in the main `RouterFunctionMapping` bean.
Due to ordering issues between mappings, this would override existing
application mappings in some cases.
This commit ensures that the welcome page `RouterFunction` is
contributed to the context in its own handler mapping, ordered after the
application ones.
Fixes gh-21909
2020-06-15 18:03:55 +02:00
Stephane Nicoll
e87c3193ce
Polish "Add Java 15 CI"
...
See gh-21713
2020-06-15 17:08:12 +02:00