Stephane Nicoll
626c21e7a1
Upgrade to Netty tcNative 2.0.39.Final
...
Closes gh-26492
2021-05-17 07:46:32 +02:00
Stephane Nicoll
fc1d0af5d2
Upgrade to Neo4j OGM 3.2.22
...
Closes gh-26491
2021-05-17 07:46:32 +02:00
Stephane Nicoll
a721493c88
Upgrade to MySQL 8.0.25
...
Closes gh-26490
2021-05-17 07:46:30 +02:00
Stephane Nicoll
5348a20ff5
Upgrade to Johnzon 1.2.11
...
Closes gh-26489
2021-05-17 07:46:29 +02:00
Stephane Nicoll
bd73166023
Upgrade to Jetty 9.4.40.v20210413
...
Closes gh-26488
2021-05-17 07:46:28 +02:00
Stephane Nicoll
ecbf7cb417
Upgrade to Jetty Reactive HTTPClient 1.1.8
...
Closes gh-26487
2021-05-17 07:46:27 +02:00
Stephane Nicoll
96e4dcc103
Upgrade to JBoss Transaction SPI 7.6.1.Final
...
Closes gh-26486
2021-05-17 07:46:26 +02:00
Stephane Nicoll
7739c3337d
Upgrade to Janino 3.1.4
...
Closes gh-26485
2021-05-17 07:46:25 +02:00
Stephane Nicoll
48daeec522
Upgrade to Hibernate 5.4.31.Final
...
Closes gh-26484
2021-05-17 07:46:24 +02:00
Stephane Nicoll
7f51e43d60
Upgrade to Ehcache 2.10.9.2
...
Closes gh-26483
2021-05-17 07:46:23 +02:00
Stephane Nicoll
ba863e4a5b
Upgrade to Dropwizard Metrics 4.1.21
...
Closes gh-26482
2021-05-17 07:46:22 +02:00
Stephane Nicoll
5a71fa073e
Upgrade to ActiveMQ 5.15.15
...
Closes gh-26481
2021-05-17 07:46:21 +02:00
Stephane Nicoll
691bbcfdfd
Update copyright year of changed files
...
See gh-26448
2021-05-16 15:29:48 +02:00
weixsun
d115361980
Remove redundant suppression
...
See gh-26448
2021-05-16 15:10:48 +02:00
weixsun
aa8323f915
Remove unused imports
...
See gh-26477
2021-05-16 15:03:36 +02:00
Andy Wilkinson
a623dab0aa
Merge branch '2.4.x'
...
Closes gh-26474
2021-05-15 08:57:23 +01:00
Andy Wilkinson
3295b59563
Merge branch '2.3.x' into 2.4.x
...
Closes gh-26473
2021-05-15 08:56:09 +01:00
Andy Wilkinson
47626bebd1
Note that the heapdump endpoint requires a HotSpot JVM
...
Closes gh-26467
2021-05-15 08:55:59 +01:00
Andy Wilkinson
01d3aa5fba
Upgrade to Spring LDAP 2.3.4.RELEASE
...
Closes gh-26394
2021-05-15 08:50:00 +01:00
Andy Wilkinson
fbc629a8e7
Upgrade to Spring LDAP 2.3.4.RELEASE
...
Closes gh-26393
2021-05-15 08:48:24 +01:00
Andy Wilkinson
f8bf09ff02
Upgrade to Spring LDAP 2.3.4.RELEASE
...
Closes gh-25528
2021-05-15 08:44:26 +01:00
Andy Wilkinson
1db8ca60aa
Test our Gradle plugin against Gradle 7.0.2
...
Closes gh-26464
2021-05-14 13:58:46 +01:00
Andy Wilkinson
07e319d139
Upgrade to Spring Data 2021.0.1
...
Closes gh-26382
2021-05-14 13:52:43 +01:00
Andy Wilkinson
77bb7f6139
Upgrade to Spring Data 2020.0.9
...
Closes gh-26381
2021-05-14 13:50:31 +01:00
Andy Wilkinson
a3d68e29c2
Merge branch '2.4.x'
...
Closes gh-26463
2021-05-14 13:45:46 +01:00
Andy Wilkinson
9f279e0e96
Merge branch '2.3.x' into 2.4.x
...
Closes gh-26462
2021-05-14 13:45:29 +01:00
Andy Wilkinson
5984d4ee2b
Index @ConfigurationProperties so they can be found by scanning
...
Previously, @ConfigurationProperties was not annotated with @Indexed.
This meant that @ConfigurationPropertiesScan would not be able to
find them when the underlying
ClassPathScanningCandidateComponentProvider is using a
CandidateComponentsIndex.
This commit annotated @ConfigurationProperties with @Indexed so that
they can be found by index-based scanning.
Fixes gh-26459
2021-05-14 13:41:24 +01:00
Andy Wilkinson
000d84eedd
Merge branch '2.4.x'
...
Closes gh-26461
2021-05-14 11:58:31 +01:00
Andy Wilkinson
c2ef7578e8
Merge branch '2.3.x' into 2.4.x
...
Closes gh-26460
2021-05-14 11:41:24 +01:00
Andy Wilkinson
444474926c
Configure JTA tests to write logs beneath build/
...
Closes gh-26440
2021-05-14 11:40:43 +01:00
Phillip Webb
83668f96af
Merge branch '2.4.x'
...
Closes gh-26458
2021-05-13 23:38:41 -07:00
Phillip Webb
73131e99da
Make BufferingApplicationStartup thread safe
...
Update `BufferingApplicationStartup` to use thread safe data structures.
Prior to this commit, it was possible for calls from different threads
(for example due to request scope beans) to cause a
NoSuchElementException to be thrown.
Closes gh-25792
2021-05-13 23:35:36 -07:00
Andy Wilkinson
f44c99df26
Merge branch '2.4.x'
...
Closes gh-26452
2021-05-13 14:01:37 +01:00
Andy Wilkinson
fd3d619670
Recommend default Servlet when using Jersey as a Filter
...
Closes gh-25733
2021-05-13 13:58:07 +01:00
Andy Wilkinson
89b5ece9b4
Use resource loader's class loader in config loading
...
Previously, classes involved in config loading used a variety of
potentially different class loaders when calling SpringFactoriesLoader.
Some classes would use their own class loader and others would use null
which results in SpringFactoriesLoader's class loader being used.
This commit updates the config loading classes to consistently use the
resource loader's class loader.
Fixes gh-26126
2021-05-13 13:25:47 +01:00
Andy Wilkinson
f92510e39d
Merge branch '2.4.x'
...
Closes gh-26451
2021-05-13 11:44:27 +01:00
Andy Wilkinson
970f933806
Merge branch '2.3.x' into 2.4.x
...
Closes gh-26450
2021-05-13 11:44:01 +01:00
Andy Wilkinson
2dd94b5554
Polish "Use try-with-resources statement"
...
See gh-26449
2021-05-13 11:37:10 +01:00
weixsun
5ba9db391f
Use try-with-resources statements
...
See gh-26449
2021-05-13 11:36:14 +01:00
Scott Frederick
e9adb1ab88
Handle long file names in buildpack images
...
Fixes gh-26445
2021-05-12 18:14:56 -05:00
Scott Frederick
b62905b91d
Merge branch '2.4.x'
...
Closes gh-25840
2021-05-12 15:48:59 -05:00
Scott Frederick
8ac297d6f3
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25839
2021-05-12 14:57:40 -05:00
Scott Frederick
32d378a348
Use test harness for image building integration tests
...
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
2021-05-12 14:51:45 -05:00
Andy Wilkinson
e5af3dbfc7
Upgrade to Spring HATEOAS 1.2.6
...
Closes gh-26442
2021-05-12 17:57:54 +01:00
Andy Wilkinson
07de9e3920
Merge branch '2.4.x'
2021-05-12 17:40:58 +01:00
Andy Wilkinson
e29d2e208e
Merge branch '2.3.x' into 2.4.x
2021-05-12 17:40:48 +01:00
Andy Wilkinson
b3af6d6403
Polish
...
See gh-25798
2021-05-12 17:40:33 +01:00
Andy Wilkinson
19fa1a6107
Upgrade to Spring HATEOAS 1.3.1
...
Closes gh-26380
2021-05-12 16:28:11 +01:00
Andy Wilkinson
827e0cf80a
Upgrade to Micrometer 1.7.0
...
Closes gh-26379
2021-05-12 16:27:35 +01:00
Andy Wilkinson
0e68f3c303
Upgrade to Spring Framework 5.3.7
...
Closes gh-26361
2021-05-12 16:26:53 +01:00