Commit Graph

22063 Commits

Author SHA1 Message Date
Stéphane Nicoll 6c8e7018ff Start building against Spring WS 3.1.7 snapshots
See gh-37415
2023-09-15 15:22:17 +02:00
Stéphane Nicoll d3ee61c83f Start building against Spring Security 5.7.11 snapshots
See gh-37414
2023-09-15 15:22:17 +02:00
Stéphane Nicoll add05fe469 Upgrade to Spring Data Bom 2021.2.16
Closes gh-37248
2023-09-15 15:22:17 +02:00
Moritz Halbritter ed4b6aaa7b Merge branch '3.0.x' into 3.1.x
Closes gh-37422
2023-09-15 15:18:08 +02:00
Moritz Halbritter 5be826dd4a Merge branch '2.7.x' into 3.0.x
Closes gh-37413
2023-09-15 14:47:57 +02:00
Andy Wilkinson d653515532 Merge branch '3.0.x' into 3.1.x
Closes gh-37411
2023-09-15 13:37:45 +01:00
Mark Nelson 78a69cbb7d Update README.adoc to add Oracle Spring Boot Starters
See gh-37069
2023-09-15 13:37:20 +01:00
Moritz Halbritter 408fb8ae9d Add support for EdDSA, XDH and RSA-PSS key parsing
This works with Java 17 and up. Also refactor the test for more
structure.

Closes gh-37237
2023-09-15 14:15:02 +02:00
Andy Wilkinson ee6d558060 Merge branch '3.0.x' into 3.1.x
Closes gh-37408
2023-09-15 11:18:06 +01:00
Andy Wilkinson 24e3a124d9 Merge branch '2.7.x' into 3.0.x
Closes gh-37407
2023-09-15 11:17:56 +01:00
Andy Wilkinson ee78e45ea7 Polish "Polish Javadoc for DockerImageNames.rabbit()"
See gh-37394
2023-09-15 11:17:15 +01:00
Johnny Lim fbfd6816c2 Polish Javadoc for DockerImageNames.rabbit()
See gh-37394
2023-09-15 11:16:06 +01:00
Andy Wilkinson 5910b3c0d6 Merge branch '3.0.x' into 3.1.x
Closes gh-37405
2023-09-15 11:08:40 +01:00
Andy Wilkinson 0af008960f Merge branch '2.7.x' into 3.0.x
Closes gh-37404
2023-09-15 11:05:24 +01:00
Andy Wilkinson e1f6fb5a61 Remove `@since` from spring-boot-test-support's javadoc
Closes gh-37403
2023-09-15 10:54:41 +01:00
Andy Wilkinson c187bd928a Don't add runtime shutdown hook till app with hook enabled is run
Previously, the runtime shutdown hook was added as soon as a
shutdown handler was registered. This causes a memory leak in a war
deployment when the application is undeployed as
LoggingApplicationListener always registers a shutdown handler
so the runtime shutdown hook was always registered.

This commit updates the shutdown hook so that the runtime shutdown
hook is only allowed to be added once run() has been called on a
SpringApplication with the shutdown hook enabled. This approach
allows the registerShutdownHook flag on SpringApplication to be a
central point of control for the registration of the runtime shutdown
hook. When that flag is set to false, for example by
SpringBootServletInitializer, the runtime shutdown hook will not
be registered, irrespective of whether other code uses the public
API to add a shutdown handler.

An alternative approach of stopping LoggingApplicationListener from
adding its shutdown handler – for example by adding
logging.register-shutdown-hook=false to the environment – was
considered. This approach was rejected in favor of the centralized
approach described above as it would require every caller that adds
a shutdown handler to deal with the problem.

Closes gh-37096
2023-09-15 08:37:56 +01:00
Stephane Nicoll 6033e5ad63 Upgrade to Spring Retry 2.0.3
Closes gh-37280
2023-09-14 13:36:58 +02:00
Stephane Nicoll 47ebf4e7ab Upgrade to Jakarta XML Bind 4.0.1
Closes gh-37387
2023-09-14 13:36:57 +02:00
Stephane Nicoll e95fd56d3b Upgrade to Groovy 4.0.15
Closes gh-37386
2023-09-14 13:36:53 +02:00
Stephane Nicoll f75a8fedf4 Upgrade to Spring Retry 2.0.3
Closes gh-37279
2023-09-14 13:35:35 +02:00
Stephane Nicoll cc3200af72 Upgrade to Jakarta XML Bind 4.0.1
Closes gh-37385
2023-09-14 13:35:34 +02:00
Stephane Nicoll f4d16d19e5 Upgrade to Groovy 4.0.15
Closes gh-37384
2023-09-14 13:35:30 +02:00
Andy Wilkinson dfb95329fd Merge branch '3.0.x' into 3.1.x
Closes gh-37380
2023-09-14 11:03:08 +01:00
Andy Wilkinson a795065555 Polish "Lazily query attributes when copying from base configuration"
See gh-37343
2023-09-14 10:32:05 +01:00
Fouad Almalki 7edc9ebc28 Lazily query attributes when copying from base configuration
See gh-37343
2023-09-14 10:30:11 +01:00
Moritz Halbritter fdd9bc732f Enable RabbitEnvironmentTests 2023-09-14 11:25:20 +02:00
Moritz Halbritter 136a5b4c07 Enable PostgresEnvironmentTests 2023-09-14 11:25:06 +02:00
Moritz Halbritter 496b373fce Remove unused test 2023-09-14 11:22:54 +02:00
Moritz Halbritter 0f019b0049 Reign in Cassandra memory consumption when running tests
The environment variables are the same as the Cassandra Testcontainers
uses.
2023-09-14 11:20:22 +02:00
Andy Wilkinson b9c223581e Merge branch '3.0.x' into 3.1.x
Closes gh-37364
2023-09-13 11:15:33 +01:00
Andy Wilkinson eba2f718a7 Merge branch '2.7.x' into 3.0.x
Closes gh-37363
2023-09-13 11:15:16 +01:00
Moritz Halbritter 13a3e3bdf0 Add TWENTY_ONE to JavaVersion
Closes gh-37362
2023-09-13 11:04:22 +01:00
Andy Wilkinson 2ee9bd41b0 Fix moving to Micrometer Tracing snapshots
The GitHub repo, and therefore calendar entry, is named "Tracing"
but our name for the library is "Micrometer Tracing". Configuring
a custom calendarName allows snapshot release dates to be detected.

See gh-37212
2023-09-13 10:21:04 +01:00
Stephane Nicoll e92491e4ca Upgrade to Reactor Bom 2022.0.11
Closes gh-37263
2023-09-13 11:00:33 +02:00
Stephane Nicoll c6184b4429 Upgrade to Reactor Bom 2022.0.11
Closes gh-37256
2023-09-13 10:58:42 +02:00
Stephane Nicoll 5bbd4bba91 Upgrade to Reactor Bom 2020.0.36
Closes gh-37246
2023-09-13 10:56:47 +02:00
Stephane Nicoll 8d8eb0e3f6 Upgrade to Neo4j Java Driver 5.12.0
Closes gh-37353
2023-09-12 17:14:54 +02:00
Stephane Nicoll 5fe111df66 Upgrade to Neo4j Java Driver 5.12.0
Closes gh-37352
2023-09-12 17:13:40 +02:00
Stephane Nicoll 7df79432eb Polish "Upgrade to Micrometer Tracing 1.0.10"
See gh-37345
2023-09-12 15:10:19 +02:00
Stephane Nicoll 2b23bb8923 Start building against Spring Data Bom 2023.0.4 snapshots
See gh-37350
2023-09-12 12:08:42 +02:00
Stephane Nicoll 11940f8fec Start building against Spring Data Bom 2022.0.10 snapshots
See gh-37349
2023-09-12 12:08:01 +02:00
Stephane Nicoll 70b585f0d7 Merge branch '3.0.x' into 3.1.x 2023-09-12 12:06:43 +02:00
Stephane Nicoll 0163570cda Remove invalid exclusion of Spring Data versions 2023-09-12 12:06:12 +02:00
Stephane Nicoll 4c415efea3 Upgrade to Micrometer Tracing 1.1.5
Closes gh-37262
2023-09-12 11:40:51 +02:00
Stephane Nicoll d720956209 Upgrade to Micrometer 1.11.4
Closes gh-37261
2023-09-12 11:40:50 +02:00
Stephane Nicoll bbefc07752 Upgrade to Micrometer Tracing 1.0.10
Closes gh-37345
2023-09-12 11:38:04 +02:00
Stephane Nicoll a3dff81437 Upgrade to Micrometer 1.10.11
Closes gh-37255
2023-09-12 11:38:00 +02:00
Stephane Nicoll 181f0b004b Upgrade to Micrometer 1.9.15
Closes gh-37245
2023-09-12 11:33:44 +02:00
Moritz Halbritter e2d84fa462 Make SslStoreBundle implementations immutable
Closes gh-37222
2023-09-11 15:39:25 +02:00
Stephane Nicoll c298091e34 Merge branch '3.0.x' into 3.1.x
Closes gh-37336
2023-09-11 15:37:43 +02:00
Stephane Nicoll 112e85507c Support AOT processing of Value Object with several constructors
Previously, AOT processing failed on processing an immutable
configuration properties that declare several constructors as the core
framework infrastructure tries to resolve the "autowired" constructor
to use, even if the custom code fragments are never going to use it.

This commit workarounds the problem in maintenance releases until a
proper fix is provided in the core framework. When AOT runs, a
SmartInstantiationAwareBeanPostProcessor is added to the bean factory
to provide the constructor to use. This implementation relies on the
same algorithm that the binder uses at runtime.

Closes gh-37283
2023-09-11 15:27:02 +02:00
Andy Wilkinson 7754dd290a Merge branch '3.0.x' into 3.1.x 2023-09-11 10:32:24 +01:00
Andy Wilkinson 994bafdfd9 Merge branch '2.7.x' into 3.0.x 2023-09-11 10:32:13 +01:00
Marten Deinum 5141e5c4ac Fix description of brokerUrl property in ArtemisProperties
Update description to refer to url instead of port.

See gh-37260
2023-09-11 10:31:19 +01:00
Stephane Nicoll 8a69af94f2 Upgrade to Spring Kafka 3.0.11
Closes gh-37305
2023-09-11 11:00:15 +02:00
Stephane Nicoll f4f18d1d51 Upgrade to SLF4J 2.0.9
Closes gh-37304
2023-09-11 11:00:15 +02:00
Stephane Nicoll 6faff5e311 Upgrade to REST Assured 5.3.2
Closes gh-37303
2023-09-11 11:00:15 +02:00
Stephane Nicoll bb5aa0dbd8 Upgrade to Pooled JMS 3.1.2
Closes gh-37302
2023-09-11 11:00:14 +02:00
Stephane Nicoll 82768cf500 Upgrade to Jetty 11.0.16
Closes gh-37300
2023-09-11 11:00:14 +02:00
Stephane Nicoll 697f3bb6b4 Upgrade to Spring Kafka 3.0.11
Closes gh-37294
2023-09-11 10:59:51 +02:00
Stephane Nicoll b30ff3c6b2 Upgrade to SLF4J 2.0.9
Closes gh-37293
2023-09-11 10:59:51 +02:00
Stephane Nicoll 902eb2d7fa Upgrade to Jetty 11.0.16
Closes gh-37291
2023-09-11 10:59:50 +02:00
Stephane Nicoll 400a24245a Upgrade to Infinispan 14.0.17.Final
Closes gh-37299
2023-09-11 10:53:53 +02:00
Stephane Nicoll 999a7b159e Upgrade to Hibernate 6.2.8.Final
Closes gh-37298
2023-09-11 10:53:53 +02:00
Stephane Nicoll 0206c30238 Upgrade to Couchbase Client 3.4.10
Closes gh-37297
2023-09-11 10:53:53 +02:00
Stephane Nicoll bb8b31d865 Upgrade to Infinispan 14.0.17.Final
Closes gh-37290
2023-09-11 10:51:59 +02:00
Stephane Nicoll a52d7e255b Upgrade to Couchbase Client 3.4.10
Closes gh-37289
2023-09-11 10:51:59 +02:00
Stephane Nicoll cf3d5cad2d Upgrade to Byte Buddy 1.14.7
Closes gh-37296
2023-09-11 10:28:57 +02:00
Stephane Nicoll 0b2f22be59 Upgrade to Jetty 9.4.52.v20230823
Closes gh-37287
2023-09-11 10:13:38 +02:00
Stephane Nicoll c8178b21b7 Upgrade to Elasticsearch 7.17.13
Closes gh-37286
2023-09-11 10:13:33 +02:00
Stephane Nicoll ad11c57013 Start building against Spring Retry 2.0.3 snapshots
See gh-37280
2023-09-11 08:56:41 +02:00
Stephane Nicoll a5ed46846f Start building against Spring Retry 2.0.3 snapshots
See gh-37279
2023-09-11 08:54:24 +02:00
Andy Wilkinson a9f91f87da Merge branch '3.0.x' into 3.1.x
Closes gh-37270
2023-09-08 15:45:25 +01:00
Andy Wilkinson 48c8928d0c Manage ehcache dependencies without their classifiers as well
Closes gh-37243
2023-09-08 15:44:12 +01:00
Andy Wilkinson e01b380d21 Start building against Spring Integration 6.1.3 snapshots
See gh-37267
2023-09-08 14:14:07 +01:00
Andy Wilkinson 83a920a28f Start building against Spring GraphQL 1.2.3 snapshots
See gh-37266
2023-09-08 14:14:06 +01:00
Andy Wilkinson 4bd8c350f2 Start building against Spring Framework 6.0.12 snapshots
See gh-37265
2023-09-08 14:14:06 +01:00
Andy Wilkinson af72bf1671 Start building against Spring AMQP 3.0.9 snapshots
See gh-37264
2023-09-08 14:13:15 +01:00
Andy Wilkinson 04f55ada44 Start building against Reactor Bom 2022.0.11 snapshots
See gh-37263
2023-09-08 14:13:08 +01:00
Andy Wilkinson f4e731bdbb Start building against Micrometer Tracing 1.1.5 snapshots
See gh-37262
2023-09-08 14:13:03 +01:00
Andy Wilkinson 8ecb7d33c9 Start building against Micrometer 1.11.4 snapshots
See gh-37261
2023-09-08 14:12:59 +01:00
Andy Wilkinson 5de5331102 Start building against Spring GraphQL 1.1.6 snapshots
See gh-37259
2023-09-08 12:07:43 +01:00
Andy Wilkinson ca254e51f6 Start building against Spring Framework 6.0.12 snapshots
See gh-37258
2023-09-08 12:07:43 +01:00
Andy Wilkinson b1d13c3fe5 Start building against Spring AMQP 3.0.9 snapshots
See gh-37257
2023-09-08 11:51:36 +01:00
Andy Wilkinson 216dad8bc5 Start building against Reactor Bom 2022.0.11 snapshots
See gh-37256
2023-09-08 11:51:31 +01:00
Andy Wilkinson e7de1752a7 Start building against Micrometer 1.10.11 snapshots
See gh-37255
2023-09-08 11:51:26 +01:00
Andy Wilkinson 11e8f98385 Start building against Spring Integration 5.5.19 snapshots
See gh-37251
2023-09-08 11:48:56 +01:00
Andy Wilkinson d1b0f1fae9 Start building against Spring GraphQL 1.0.5 snapshots
See gh-37250
2023-09-08 11:48:55 +01:00
Andy Wilkinson ff24fcb17e Start building against Spring Data Bom 2021.2.16 snapshots
See gh-37248
2023-09-08 11:48:55 +01:00
Andy Wilkinson 133963b2e9 Start building against Spring AMQP 2.4.16 snapshots
See gh-37247
2023-09-08 11:48:55 +01:00
Andy Wilkinson a1659dbfcc Start building against Reactor Bom 2020.0.36 snapshots
See gh-37246
2023-09-08 11:48:54 +01:00
Andy Wilkinson 88db5b050a Start building against Micrometer 1.9.15 snapshots
See gh-37245
2023-09-08 11:48:54 +01:00
Moritz Halbritter d9b7a8c0af Merge branch '3.0.x' into 3.1.x
Closes gh-37253
2023-09-08 11:17:40 +02:00
Moritz Halbritter bbc10856ee Merge branch '2.7.x' into 3.0.x
Closes gh-37252
2023-09-08 11:17:25 +02:00
Johnny Lim 5f9bc721d3 Add default value metadata for management.metrics.export.signalfx.published-histogram-type
See gh-37210
2023-09-08 11:04:26 +02:00
Andy Wilkinson 7b59d2fce2 Merge branch '3.0.x' into 3.1.x
Closes gh-37224
2023-09-07 10:07:52 +01:00
Andy Wilkinson cce3c9d40f Merge branch '2.7.x' into 3.0.x
Closes gh-37223
2023-09-07 10:02:06 +01:00
Andy Wilkinson 38e9ede17d Only suggest snapshots for which a release is planned
Closes gh-37212
2023-09-07 09:55:36 +01:00
Moritz Halbritter 768dfb2c63 Merge branch '3.0.x' into 3.1.x
Closes gh-37207
2023-09-06 14:44:13 +02:00
Moritz Halbritter ffed8b0502 Merge branch '2.7.x' into 3.0.x
Closes gh-37206
2023-09-06 14:43:36 +02:00
Yanming Zhou 4c39cc2314 Continue polishing
See commit 947e330e9d

See gh-37166
2023-09-06 14:38:57 +02:00
Moritz Halbritter 1962f4ecb7 Merge branch '3.0.x' into 3.1.x 2023-09-05 15:24:25 +02:00
Moritz Halbritter a69ff3bd59 Merge branch '2.7.x' into 3.0.x 2023-09-05 15:21:51 +02:00
Moritz Halbritter 76e51bc92f Only enable needed Couchbase services in integration tests 2023-09-05 15:10:12 +02:00
Moritz Halbritter d310fb6fce Prevent docker access when running AOT processing on tests
Closes gh-37097
2023-09-05 13:37:36 +02:00
Moritz Halbritter 1a2919bb0e Polish 2023-09-05 13:37:36 +02:00
Andy Wilkinson dc4d647437 Merge branch '3.0.x' into 3.1.x
Closes gh-37192
2023-09-05 10:58:49 +01:00
Andy Wilkinson 4611c54aef Merge branch '2.7.x' into 3.0.x
Closes gh-37191
2023-09-05 10:53:16 +01:00
Andy Wilkinson ced32f0751 Require libraries to opt in to moving to snapshots
Closes gh-37190
2023-09-05 10:40:31 +01:00
Andy Wilkinson c562e8e01f Merge branch '3.0.x' into 3.1.x
Closes gh-37183
2023-09-04 08:25:46 +01:00
Andy Wilkinson d6b04af512 Merge branch '2.7.x' into 3.0.x
Closes gh-37182
2023-09-04 08:25:33 +01:00
Andy Wilkinson fadc58679d Speed up ImageReference.of when path contains upper-case chars
Closes gh-35657
2023-09-04 08:18:28 +01:00
Scott Frederick 03dcf8b663 Merge branch '3.0.x' into 3.1.x
Closes gh-37178
2023-09-01 14:42:15 -05:00
Scott Frederick 1e85bf7ca8 Fix mapping of consumed types to propagators
Fixes gh-37161
2023-09-01 14:40:01 -05:00
Andy Wilkinson a84ee2fb12 Merge branch '3.0.x' into 3.1.x
Closes gh-37174
2023-09-01 14:17:59 +01:00
Andy Wilkinson 3ab1dfb9dc Merge branch '2.7.x' into 3.0.x
Closes gh-37173
2023-09-01 14:17:40 +01:00
Andy Wilkinson a77863245d Polish "Use project.getLayout().getBuildDirectory() instead of getBuildDir()"
See gh-37167
2023-09-01 14:15:33 +01:00
Yanming Zhou a8706962d4 Use project.getLayout().getBuildDirectory() instead of getBuildDir()
See gh-37167
2023-09-01 14:08:16 +01:00
Phillip Webb 37e67058b7 Merge branch '3.0.x' into 3.1.x
Closes gh-37169
2023-08-31 22:24:14 -07:00
Phillip Webb 71ed31343c Merge branch '2.7.x' into 3.0.x
Closes gh-37168
2023-08-31 22:01:06 -07:00
Phillip Webb fd8cb74b46 Load algorithm parameters from PEM encoded 'EC PRIVATE KEY' files
Update `PrivateKeyParser` implementations so that algorithm parameters
for PEM encoded 'EC PRIVATE KEY' files are loaded from the incoming
data.

Prior to this commit, the algorithm parameter was hard-coded to
'secp384r1' which could result in a mismatch to the actual file
content.

Fixes gh-34232
2023-08-31 21:40:11 -07:00
Andy Wilkinson c7063af63a Merge branch '3.0.x' into 3.1.x
Closes gh-37158
2023-08-31 15:23:21 +01:00
Andy Wilkinson 67e1ee5dcf Fix ordering of Jetty's WebSocketUpgradeFilter
Closes gh-37115
2023-08-31 15:22:26 +01:00
Moritz Halbritter b86937bb8e Merge branch '3.0.x' into 3.1.x
Closes gh-37156
2023-08-31 11:51:15 +02:00
Moritz Halbritter 61739bd917 Prevent propagation for local fields when using W3C propagation
Closes gh-37109
2023-08-31 11:50:05 +02:00
Phillip Webb 3640491d5a Fix Timezone used for now in BuildRequestTests 2023-08-30 20:34:01 -07:00
Andy Wilkinson e6fcde4af5 Merge branch '3.0.x' into 3.1.x
Closes gh-37143
2023-08-30 13:35:40 +01:00
Andy Wilkinson a8e37b5cc5 Merge branch '2.7.x' into 3.0.x
Closes gh-37142
2023-08-30 13:34:12 +01:00
Andy Wilkinson 2de98a84bc Polish "Polish code and javadoc"
See gh-37112
2023-08-30 13:31:58 +01:00
hakan-krgn 6d9ce8a3b5 Polish code and javadoc
See gh-37112
2023-08-30 13:31:58 +01:00
Phillip Webb 81a03cf240 Merge branch '2.7.x' into 3.1.x 2023-08-24 10:32:37 -07:00
Phillip Webb fbea788e0a Merge branch '2.7.x' into 3.0.x 2023-08-24 10:32:27 -07:00
Phillip Webb 727e22abac Restore Redis to NoSQL stores supported by Spring Data documentation
See gh-29694
2023-08-24 10:31:01 -07:00
Stephane Nicoll a1cd7e7638 Upgrade to Spring Batch 5.0.3
Closes gh-36844
2023-08-23 21:07:18 +02:00
Stephane Nicoll 4e6de6c927 Upgrade to RxJava3 3.1.7
Closes gh-37089
2023-08-23 21:07:17 +02:00
Stephane Nicoll 99a554346c Upgrade to Netty 4.1.97.Final
Closes gh-37088
2023-08-23 21:07:13 +02:00
Stephane Nicoll df85c817a6 Upgrade to Spring Batch 5.0.3
Closes gh-36833
2023-08-23 21:04:15 +02:00
Stephane Nicoll 4c719c163b Upgrade to RxJava3 3.1.7
Closes gh-37087
2023-08-23 21:04:14 +02:00
Stephane Nicoll 48e3ebadef Upgrade to Netty 4.1.97.Final
Closes gh-37086
2023-08-23 21:04:09 +02:00
Stephane Nicoll 25897b25ab Upgrade to Spring Batch 4.3.9
Closes gh-36827
2023-08-23 21:02:51 +02:00
Stephane Nicoll 59e6c8f6f9 Upgrade to Netty 4.1.97.Final
Closes gh-37085
2023-08-23 21:02:50 +02:00
Stephane Nicoll 50d19fbd12 Upgrade to Spring Authorization Server 1.1.2
Closes gh-36843
2023-08-23 09:37:58 +02:00
Stephane Nicoll 57a65bc0dd Upgrade to Spring Integration 6.0.7
Closes gh-37061
2023-08-23 09:37:17 +02:00
Scott Frederick 23de8a1177 Merge branch '3.0.x' into 3.1.x
Closes gh-37071
2023-08-22 12:10:46 -05:00
jongwooo 37855a597c Fix links to Oracle API javadoc in the documentation
See gh-37070
2023-08-22 11:59:21 -05:00
Stephane Nicoll 10873b0e7c Merge branch '3.0.x' into 3.1.x 2023-08-22 14:45:02 +02:00
Stephane Nicoll e8d329d99f Polish 2023-08-22 14:44:02 +02:00
Stephane Nicoll 44847d6600 Fix assertion (sorry)
See gh-37044
2023-08-22 12:51:33 +02:00
Stephane Nicoll 621db533dc Fix assertion
See gh-37044
2023-08-22 11:58:38 +02:00
Stephane Nicoll 5a25c31832 Polish "Fix password property for Oracle container"
See gh-37044
2023-08-22 10:48:39 +02:00
Joe Steel ab1e521388 Fix password property for Oracle container
See gh-37044
2023-08-22 10:40:52 +02:00
Stephane Nicoll 6780b80673 Merge branch '3.0.x' into 3.1.x
Closes gh-37062
2023-08-22 10:35:33 +02:00
Stephane Nicoll eed6e199fc Polish "Detect logback config location as xml if path ends with .xml"
See gh-37039
2023-08-22 10:33:03 +02:00
Yanming Zhou c9cc1da48e Detect logback config location as xml if path ends with .xml
See gh-37039
2023-08-22 10:06:29 +02:00
Stephane Nicoll 5b68e5b9fc Start building against Spring Integration 6.0.7 snapshots
See gh-37061
2023-08-22 09:23:25 +02:00
Stephane Nicoll e789b76e74 Upgrade to Spring Security 6.1.3
Closes gh-36848
2023-08-22 09:00:24 +02:00
Stephane Nicoll e97e2895c5 Upgrade to Spring Kafka 3.0.10
Closes gh-36846
2023-08-22 09:00:24 +02:00
Stephane Nicoll 96522ec0ce Upgrade to Spring AMQP 3.0.8
Closes gh-36842
2023-08-22 09:00:24 +02:00
Stephane Nicoll 9729d37dce Upgrade to Groovy 4.0.14
Closes gh-37057
2023-08-22 09:00:23 +02:00
Stephane Nicoll 7426d21407 Upgrade to Spring Security 6.0.6
Closes gh-36837
2023-08-22 08:58:10 +02:00
Stephane Nicoll 22e00c71d3 Upgrade to Spring Kafka 3.0.10
Closes gh-36835
2023-08-22 08:58:09 +02:00
Stephane Nicoll 83cfa7bc9c Upgrade to Spring AMQP 3.0.8
Closes gh-36832
2023-08-22 08:58:09 +02:00
Stephane Nicoll 21c23a0763 Upgrade to Groovy 4.0.14
Closes gh-37056
2023-08-22 08:58:08 +02:00
Stephane Nicoll da1950a689 Upgrade to Spring AMQP 2.4.15
Closes gh-36826
2023-08-22 08:56:03 +02:00
Stephane Nicoll 6fb813813a Upgrade to Groovy 3.0.19
Closes gh-37055
2023-08-22 08:56:02 +02:00
Scott Frederick ef40d9ebe2 Merge branch '3.0.x' into 3.1.x
Closes gh-37051
2023-08-21 16:40:55 -05:00
Scott Frederick 0b197650a9 Merge branch '2.7.x' into 3.0.x
Closes gh-37050
2023-08-21 16:40:43 -05:00
Scott Frederick d5cfe4d475 Remove invalid caches parameter entry from Maven plugin docs
Fixes gh-37048
2023-08-21 16:40:18 -05:00
Stephane Nicoll e3cc18831c Upgrade to Spring Session 3.1.2
Closes gh-36849
2023-08-19 18:28:49 +02:00
Stephane Nicoll f5821653ff Upgrade to Spring LDAP 3.1.1
Closes gh-36847
2023-08-19 18:28:48 +02:00
Stephane Nicoll 1ae23ccc73 Upgrade to Spring Session 3.0.3
Closes gh-36838
2023-08-19 18:27:19 +02:00
Stephane Nicoll 7763c906bf Upgrade to Undertow 2.3.8.Final
Closes gh-37031
2023-08-18 16:48:01 +02:00
Stephane Nicoll a75bae6711 Upgrade to Spring Data Bom 2023.0.3
Closes gh-36845
2023-08-18 16:47:55 +02:00
Stephane Nicoll 5158c16052 Upgrade to Undertow 2.3.8.Final
Closes gh-37030
2023-08-18 16:36:19 +02:00
Stephane Nicoll 73e495e0e3 Upgrade to Spring LDAP 3.0.5
Closes gh-36836
2023-08-18 16:36:14 +02:00
Stephane Nicoll 1b8002684a Upgrade to Spring Data Bom 2022.0.9
Closes gh-36834
2023-08-18 16:36:14 +02:00
Stephane Nicoll be57f33df6 Upgrade to Undertow 2.2.26.Final
Closes gh-37029
2023-08-18 16:26:17 +02:00
Stephane Nicoll 0057d67445 Upgrade to Spring Data Bom 2021.2.15
Closes gh-36828
2023-08-18 16:26:12 +02:00
Stephane Nicoll d9cc6e810f Merge branch '3.0.x' into 3.1.x
Closes gh-37027
2023-08-18 14:31:51 +02:00
Stephane Nicoll 1f6d0600b5 Merge branch '2.7.x' into 3.0.x
Closes gh-37026
2023-08-18 14:15:48 +02:00
Stephane Nicoll 6efd9ed0b0 Test Gradle plugin against Gradle 8.3
Closes gh-37025
2023-08-18 14:05:50 +02:00
Stephane Nicoll 958f92495d Merge branch '3.0.x' into 3.1.x
Closes gh-37022
2023-08-17 17:14:30 +02:00
Stephane Nicoll f3450fde7d Detect nested types that are not directly nested to the current type
This commit makes sure that sub-namespace that are defined in a flat
manner in a configuration properties are considered for runtime hints

Closes gh-36909
2023-08-17 17:07:27 +02:00
Stephane Nicoll a15ae2bd02 Merge branch '3.0.x' into 3.1.x
Closes gh-37020
2023-08-17 16:12:59 +02:00
Stephane Nicoll 87569a0d17 Merge branch '2.7.x' into 3.0.x
Closes gh-37019
2023-08-17 16:12:11 +02:00
Stephane Nicoll 3920f97aa1 Fix bomr version range constraint for single version
This commit fixes the version range in our DSL to use brackets around
a particular version we have to skip.

See https://maven.apache.org/enforcer/enforcer-rules/versionRanges.html

Closes gh-36976
2023-08-17 16:07:50 +02:00
Moritz Halbritter a6b63d285c Merge branch '3.0.x' into 3.1.x
Closes gh-37015
2023-08-17 12:18:11 +02:00
Moritz Halbritter d3816651ce Merge branch '2.7.x' into 3.0.x
Closes gh-37014
2023-08-17 12:02:33 +02:00
Moritz Halbritter dc62e5fbc3 Polish "Set max request header size on Netty when using HTTP/2"
See gh-36766
2023-08-17 11:50:18 +02:00
Nerses Aznauryan ee5b23bb02 Set max request header size on Netty when using HTTP/2
Fix an issue that server.max-http-request-header-size doesn't have an
effect on Netty server with http2 enabled.

See gh-36766
2023-08-17 11:47:01 +02:00
Stephane Nicoll 9302bad4d9 Upgrade to Lettuce 6.2.6.RELEASE
Closes gh-37004
2023-08-16 15:40:52 +02:00
Stephane Nicoll 0ed32e83fe Upgrade to AspectJ 1.9.20
Closes gh-37003
2023-08-16 15:40:48 +02:00
Stephane Nicoll b99ebc6f87 Upgrade to Lettuce 6.2.6.RELEASE
Closes gh-37002
2023-08-16 15:24:18 +02:00
Stephane Nicoll bf98729cf9 Upgrade to AspectJ 1.9.20
Closes gh-37001
2023-08-16 15:24:13 +02:00
Stephane Nicoll a8bbae0dc1 Upgrade to Reactor Bom 2022.0.10
Closes gh-36841
2023-08-15 17:16:16 +02:00
Stephane Nicoll 845f7efe0a Upgrade to Micrometer Tracing 1.1.4
Closes gh-36840
2023-08-15 17:16:15 +02:00
Stephane Nicoll fefdde10a7 Upgrade to Micrometer 1.11.3
Closes gh-36839
2023-08-15 17:16:15 +02:00
Stephane Nicoll f4788e910d Upgrade to Infinispan 14.0.14.Final
Closes gh-36995
2023-08-15 17:16:14 +02:00
Stephane Nicoll 44c650eef7 Upgrade to Byte Buddy 1.14.6
Closes gh-36994
2023-08-15 17:16:08 +02:00
Stephane Nicoll 0a83531324 Upgrade to Reactor Bom 2022.0.10
Closes gh-36831
2023-08-15 17:14:01 +02:00
Stephane Nicoll a3856e4342 Upgrade to Micrometer Tracing 1.0.9
Closes gh-36830
2023-08-15 17:14:00 +02:00
Stephane Nicoll b91b213283 Upgrade to Micrometer 1.10.10
Closes gh-36829
2023-08-15 17:14:00 +02:00
Stephane Nicoll b80f64a0e4 Upgrade to Infinispan 14.0.14.Final
Closes gh-36993
2023-08-15 17:13:59 +02:00
Stephane Nicoll e1c0518047 Upgrade to Reactor Bom 2020.0.35
Closes gh-36825
2023-08-15 17:11:09 +02:00
Stephane Nicoll a39b39c9dd Upgrade to Micrometer 1.9.14
Closes gh-36824
2023-08-15 17:11:09 +02:00
Stephane Nicoll a8f5937567 Upgrade to Neo4j Java Driver 5.11.0
Closes gh-36980
2023-08-14 16:55:03 +02:00
Stephane Nicoll 09bb60cfb9 Upgrade to Couchbase Client 3.4.8
Closes gh-36979
2023-08-14 16:54:07 +02:00
Stephane Nicoll 4b1693f204 Upgrade to Neo4j Java Driver 5.11.0
Closes gh-36977
2023-08-14 16:48:35 +02:00
Stephane Nicoll 3188a4f134 Upgrade to Couchbase Client 3.4.8
Closes gh-36975
2023-08-14 16:46:56 +02:00
Stephane Nicoll 5f2432aca2 Merge branch '3.0.x' into 3.1.x
Closes gh-36972
2023-08-14 16:12:55 +02:00
Stephane Nicoll 0271efae4c Polish "Avoid setting null compiler option"
See gh-36971
2023-08-14 16:07:25 +02:00
omaryaya a0ad00c542 Avoid setting null compiler option
See gh-36971
2023-08-14 16:06:34 +02:00
Stephane Nicoll 5764525a60 Merge branch '3.0.x' into 3.1.x
Closes gh-36969
2023-08-14 15:20:50 +02:00
Stephane Nicoll fe12e75955 Merge branch '2.7.x' into 3.0.x
Closes gh-36968
2023-08-14 15:20:40 +02:00
Stephane Nicoll 0cf21b21ca Merge branch '3.0.x' into 3.1.x
Closes gh-36966
2023-08-14 15:14:49 +02:00
Stephane Nicoll e043fe434a Update copyright year of changed file
See gh-36965
2023-08-14 15:13:32 +02:00
abaudat 3ad0e77db8 Align javadoc of AbstractFilterRegistrationBean#setDispatcherTypes
See gh-36965
2023-08-14 15:13:04 +02:00
normandra 62902a798d Fix typo
See gh-36964
2023-08-14 15:01:39 +02:00
Stephane Nicoll 8ce6002206 Merge branch '3.0.x' into 3.1.x
Closes gh-36962
2023-08-14 12:04:11 +02:00
Stephane Nicoll 82b0666813 Merge branch '2.7.x' into 3.0.x
Closes gh-36961
2023-08-14 12:04:01 +02:00
Stephane Nicoll 0e6abd1377 Provide more information about using spring.cache.type=none
Closes gh-33694
2023-08-14 12:03:40 +02:00
Stephane Nicoll b903df7327 Merge branch '3.0.x' into 3.1.x
Closes gh-36959
2023-08-14 11:37:07 +02:00
Stephane Nicoll 3ae65e073c Use Aether to download JUnit platform launcher
This commit updates our maven plugin to use aether directly, rather than
the now deprecated maven features.

Closes gh-36724
2023-08-14 11:23:43 +02:00
Phillip Webb 155300525e Polish 2023-08-13 19:15:38 -07:00
Phillip Webb 2fdc29b885 Revert "Polish"
This reverts commit 6a65ca13ea since
FileCopyUtils will close the reader/writer.
2023-08-13 19:00:04 -07:00
Phillip Webb 848a61a3a8 Merge branch '3.0.x' into 3.1.x 2023-08-13 18:50:33 -07:00
Phillip Webb 9805723415 Update copyright year of changed files 2023-08-13 18:50:13 -07:00
Phillip Webb a0089c5c76 Merge branch '2.7.x' into 3.0.x 2023-08-13 18:44:36 -07:00
Phillip Webb 46773dd5df Update copyright year of changed files 2023-08-13 18:19:05 -07:00
Phillip Webb 527b2f2cac Polish 2023-08-13 18:18:48 -07:00
Andy Wilkinson dc45532c94 Avoid triggering second context creation when first attempt failed
Closes gh-24888
2023-08-10 14:39:28 +01:00
Stephane Nicoll 008b568df3 Upgrade to Thymeleaf Extras SpringSecurity 3.1.2.RELEASE
Closes gh-36938
2023-08-10 15:21:52 +02:00
Stephane Nicoll 1e7bf971c4 Upgrade to Thymeleaf 3.1.2.RELEASE
Closes gh-36937
2023-08-10 15:21:48 +02:00
Stephane Nicoll 78f6c66b27 Upgrade to R2DBC Pool 1.0.1.RELEASE
Closes gh-36936
2023-08-10 15:21:43 +02:00
Stephane Nicoll 940f111499 Upgrade to Pooled JMS 3.1.1
Closes gh-36935
2023-08-10 15:21:38 +02:00
Stephane Nicoll c300c7af1e Upgrade to Netty 4.1.96.Final
Closes gh-36934
2023-08-10 15:21:34 +02:00
Stephane Nicoll 7ebbf4fbc9 Upgrade to Logback 1.4.11
Closes gh-36932
2023-08-10 15:21:24 +02:00
Stephane Nicoll dd7fcec201 Upgrade to jOOQ 3.18.6
Closes gh-36931
2023-08-10 15:21:20 +02:00
Stephane Nicoll 1ee5990e41 Upgrade to Jersey 3.1.3
Closes gh-36930
2023-08-10 15:21:15 +02:00
Stephane Nicoll 8b7770b21e Upgrade to Infinispan 14.0.13.Final
Closes gh-36929
2023-08-10 15:21:10 +02:00
Stephane Nicoll be3f8a6ae5 Upgrade to Hibernate 6.2.7.Final
Closes gh-36928
2023-08-10 15:21:05 +02:00
Stephane Nicoll 94b8eee7e8 Upgrade to Dependency Management Plugin 1.1.3
Closes gh-36927
2023-08-10 15:21:00 +02:00
Stephane Nicoll ab3a26a72f Upgrade to Caffeine 3.1.8
Closes gh-36926
2023-08-10 15:20:55 +02:00
Stephane Nicoll 8346cf2182 Upgrade to Logback 1.4.11
Closes gh-36925
2023-08-10 15:07:57 +02:00
Moritz Halbritter 6a65ca13ea Polish 2023-08-10 14:54:45 +02:00
Moritz Halbritter f54d370fcd Remove unused class 2023-08-10 14:54:45 +02:00
Moritz Halbritter 3bb93b37ca Remove --detach and --wait flags from docker compose start command
Closes gh-36908
2023-08-10 14:54:45 +02:00
Stephane Nicoll 97e8a6218c Upgrade to Thymeleaf Extras SpringSecurity 3.1.2.RELEASE
Closes gh-36922
2023-08-10 14:52:04 +02:00
Stephane Nicoll 65a6e9559c Upgrade to Thymeleaf 3.1.2.RELEASE
Closes gh-36921
2023-08-10 14:52:04 +02:00
Stephane Nicoll d175ddb2fa Upgrade to R2DBC Pool 1.0.1.RELEASE
Closes gh-36920
2023-08-10 14:52:03 +02:00