Andy Wilkinson
029c28d923
Merge branch '3.1.x'
...
Closes gh-37925
2023-10-18 11:30:35 +01:00
Andy Wilkinson
8f18b116de
Merge branch '3.0.x' into 3.1.x
...
Closes gh-37924
2023-10-18 11:17:41 +01:00
Andy Wilkinson
ece239f421
Merge branch '2.7.x' into 3.0.x
...
Closes gh-37923
2023-10-18 11:01:23 +01:00
Andy Wilkinson
4cc3aec587
Consider @ComponentScan in imports context cache key
...
Fixes gh-31577
2023-10-18 10:40:23 +01:00
Andy Wilkinson
9460f301b4
Merge branch '3.1.x'
...
Closes gh-37921
2023-10-18 10:07:14 +01:00
Andy Wilkinson
60a0b7eedb
Merge branch '3.0.x' into 3.1.x
...
Closes gh-37920
2023-10-18 10:07:01 +01:00
Andy Wilkinson
85c186a764
Merge branch '2.7.x' into 3.0.x
...
Closes gh-37919
2023-10-18 10:01:49 +01:00
Andy Wilkinson
1f0e311cb8
Completely disable restart when running tests
...
Fixes gh-37373
2023-10-18 09:52:47 +01:00
Andy Wilkinson
fa954c0c87
Upgrade to Spring Pulsar 1.0.0-RC1
...
Closes gh-37918
2023-10-18 07:59:28 +01:00
Andy Wilkinson
4d0e614f5f
Upgrade to Spring Integration 6.2.0-RC1
...
Closes gh-37711
2023-10-18 07:58:38 +01:00
Andy Wilkinson
94500f41e9
Upgrade to Spring Integration 6.1.4
...
Closes gh-37914
2023-10-17 18:00:25 +01:00
Andy Wilkinson
f645ef5fa5
Upgrade to Spring Integration 6.0.8
...
Closes gh-37795
2023-10-17 17:59:36 +01:00
Andy Wilkinson
daa903ab31
Add filters to MockMvc with their init params and dispatcher types
...
Closes gh-37835
2023-10-17 17:54:36 +01:00
Andy Wilkinson
02c49b0287
When virtual threads are enabled, configure Pulsar to use them
...
Closes gh-36347
2023-10-17 15:59:41 +01:00
Andy Wilkinson
8b115c8ceb
Upgrade to Spring Session 3.2.0-RC1
...
Closes gh-37716
2023-10-17 14:24:42 +01:00
Andy Wilkinson
f0cdc57a2c
Upgrade to Spring Authorization Server 1.2.0-RC1
...
Closes gh-37707
2023-10-17 14:24:42 +01:00
Andy Wilkinson
84d83c1964
Upgrade to Elasticsearch Client 8.10.4
...
Closes gh-37912
2023-10-17 14:24:41 +01:00
Andy Wilkinson
ffeed75804
Upgrade to Spring Session 3.1.3
...
Closes gh-37702
2023-10-17 14:22:19 +01:00
Andy Wilkinson
b10556e6ad
Upgrade to Spring Session 3.0.4
...
Closes gh-37686
2023-10-17 14:20:36 +01:00
Andy Wilkinson
de91771cb3
Upgrade to Spring Security 6.2.0-RC2
...
Closes gh-37715
2023-10-17 09:03:20 +01:00
Andy Wilkinson
d546936d53
Upgrade to Spring Kafka 3.1.0-RC1
...
Closes gh-37712
2023-10-17 09:03:19 +01:00
Andy Wilkinson
d5b1acc41f
Upgrade to Spring AMQP 3.1.0-RC1
...
Closes gh-37706
2023-10-17 09:03:19 +01:00
Andy Wilkinson
4e21be9086
Upgrade to OkHttp 4.12.0
...
Closes gh-37908
2023-10-17 09:03:18 +01:00
Andy Wilkinson
613cc4f5b9
Upgrade to Log4j2 2.21.0
...
Closes gh-37907
2023-10-17 09:03:13 +01:00
Andy Wilkinson
fb2ce355af
Upgrade to GraphQL Java 21.2
...
Closes gh-37906
2023-10-17 09:03:08 +01:00
Andy Wilkinson
0c9c48d54b
Upgrade to Spring Security 6.1.5
...
Closes gh-37701
2023-10-17 08:59:44 +01:00
Andy Wilkinson
439c2f9f84
Upgrade to Spring Kafka 3.0.12
...
Closes gh-37797
2023-10-17 08:59:43 +01:00
Andy Wilkinson
cbb8d28e55
Upgrade to Spring Authorization Server 1.1.3
...
Closes gh-37697
2023-10-17 08:59:43 +01:00
Andy Wilkinson
1a2832a0b6
Upgrade to Spring AMQP 3.0.10
...
Closes gh-37696
2023-10-17 08:59:42 +01:00
Andy Wilkinson
517c63336a
Upgrade to Spring Security 6.0.8
...
Closes gh-37685
2023-10-17 08:46:54 +01:00
Andy Wilkinson
2acfe9c4e1
Upgrade to Spring Kafka 3.0.12
...
Closes gh-37796
2023-10-17 08:46:54 +01:00
Andy Wilkinson
b33d43cc43
Upgrade to Spring AMQP 3.0.10
...
Closes gh-37681
2023-10-17 08:46:53 +01:00
Andy Wilkinson
747cb2dac9
Upgrade to Spring AMQP 2.4.17
...
Closes gh-37676
2023-10-17 08:43:41 +01:00
Phillip Webb
33c5e1269a
Write signature files to uber jars to for Oracle Java 17 verification
...
Update Gradle and Maven plugins to write an empty `META-INF/BOOT.SF`
file whenever there is a nested signed jar.
This update allows Oracle Java 17 to correctly verify the nested JARs.
The file is required because `JarVerifier` has code roughly equivalent
to:
if (!jarManifestNameChecked && SharedSecrets
.getJavaUtilZipFileAccess().getManifestName(jf, true) == null) {
throw new JarException("The JCE Provider " + jarURL.toString() +
" is not signed.");
}
The `SharedSecrets.getJavaUtilZipFileAccess().getManifestName(jf, true)`
call ends up in `ZipFile.getManifestName(onlyIfSignatureRelatedFiles)`
which is a private method that we cannot override in our `NestedJarFile`
subclass. By writing an empty `.SF` file we ensure that the `Manifest`
is always returned because there are always "signature related files".
Fixes gh-28837
2023-10-16 16:19:16 -07:00
Phillip Webb
fe752dedef
Polish adoc formatting
2023-10-16 15:50:58 -07:00
Andy Wilkinson
9f224ff136
Narrow the scope of 0e3a196 to Resource[] for array binding
...
See gh-15835
2023-10-16 18:18:34 +01:00
Andy Wilkinson
d6a9295c26
Allow additional build info properties to have provided values
...
Closes gh-37889
2023-10-16 18:15:42 +01:00
Andy Wilkinson
d796087dfa
Polish "Add properties for configuring EnumFeature and JsonNodeFeature"
...
See gh-37885
2023-10-16 15:39:25 +01:00
Eddú Meléndez
8edb4b9729
Add properties for configuring EnumFeature and JsonNodeFeature
...
Both `EnumFeature` and `JsonNodeFeature` implement `DataTypeFeature`
which was recently added in Spring Framework. This commits introduces
support to allow the configuration via properties.
See spring-projects/spring-framework#31380
See gh-37885
2023-10-16 15:00:32 +01:00
Andy Wilkinson
19fd88b25b
Implement SSL hot reload for Netty and Tomcat
...
Closes gh-37808
2023-10-16 14:08:26 +01:00
Andy Wilkinson
92cd85002d
Upgrade to Spring Retry 2.0.4
...
Closes gh-37714
2023-10-16 13:58:18 +01:00
Andy Wilkinson
52d80197fe
Upgrade to Spring Retry 2.0.4
...
Closes gh-37700
2023-10-16 13:52:25 +01:00
Andy Wilkinson
a8a19acb99
Upgrade to Spring Retry 2.0.4
...
Closes gh-37684
2023-10-16 13:27:37 +01:00
Andy Wilkinson
5970f29fd5
Upgrade to Spring Data Bom 2023.1.0-RC1
...
Closes gh-37709
2023-10-16 12:27:50 +01:00
Andy Wilkinson
204cfce04c
Upgrade to Dropwizard Metrics 4.2.21
...
Closes gh-37899
2023-10-16 12:27:44 +01:00
Andy Wilkinson
fea81fb50d
Upgrade to Spring LDAP 3.1.2
...
Closes gh-37699
2023-10-16 11:57:25 +01:00
Andy Wilkinson
43b566b98e
Upgrade to Spring Data Bom 2023.0.5
...
Closes gh-37698
2023-10-16 11:57:25 +01:00
Andy Wilkinson
2fabc49a1e
Upgrade to Dropwizard Metrics 4.2.21
...
Closes gh-37897
2023-10-16 11:57:19 +01:00
Andy Wilkinson
fc69d272fc
Upgrade to Spring LDAP 3.0.6
...
Closes gh-37683
2023-10-16 11:53:58 +01:00
Andy Wilkinson
53a020fef7
Upgrade to Spring Data Bom 2022.0.11
...
Closes gh-37682
2023-10-16 11:53:57 +01:00