Tom Frenken
43bc104c4e
Use system properties when constructing Apache HttpClient
...
See gh-38591
2023-11-29 13:49:20 +01:00
Phillip Webb
6fd691af58
Allow FileSystems to be create by splitting URLs
...
Relax the constraint that a `NestedLocation` must have a nested entry
name specified so that URLs can be split and rebuilt.
Prior to this commit, given a URL of the following form:
jar:nested:/myjar.jar!/nested.jar!/my/file
It was possible to create a FileSystem from
"jar:nested:/myjar.jar!/nested.jar" and from that create a path to
"my/file".
However, it wasn't possible to create a FileSystem from
"jar:nested:/myjar.jar", then create another file system from the path
"nested.jar" and then finally create a path to "/nested.jar".
This was because `nested:/myjar.jar` was not considered a value URL
because it didn't include a nested entry name.
Projects such as `JobRunr` were relying on the ability to compose file
systems, so it makes sense to remove our somewhat artificial
restriction.
Fixes gh-38592
2023-11-28 22:14:29 -08:00
Phillip Webb
9a0f95420a
Update NestedByteChannel.read to read all possible data when
...
Update `NestedByteChannel.read` so that it loops until all
remaining data has been read into the buffer. Prior to this
commit, it was possible for to read only some bytes into the
buffer. Although it looks like this should be OK according to
the API documentation, the `ZipFileSystem` relies on all
remaining bytes being returned.
Fixes gh-38595
2023-11-28 22:14:29 -08:00
Andy Wilkinson
75a8955659
Only start management context when parent has a web server
...
Fixes gh-38554
2023-11-28 17:45:12 +00:00
Andy Wilkinson
3e4e59a8f0
Restore compatibility with Liquibase 4.23
...
Closes gh-38522
2023-11-28 17:41:47 +00:00
Moritz Halbritter
903f85cd50
Merge branch '3.1.x'
...
Closes gh-38586
2023-11-28 13:17:42 +01:00
Alex Serbin
23816d6015
Fix Observation Filter docs
...
`WebMvcMetricsFilter` no longer exists since 3.0 and should be
replaced with `ServerHttpObservationFilter`
See gh-38570
2023-11-28 13:16:25 +01:00
Moritz Halbritter
34018b1982
Reinstate testAndDevelopmentOnly in Testcontainers documentation
...
Closes gh-38571
2023-11-28 11:13:59 +01:00
Phillip Webb
8c7e8778a6
Fix NegativeArraySizeException caused by missing unsigned conversion
...
Update `ZipContent` so that `eocd.totalNumberOfCentralDirectoryEntries`
is converted from a short to an unsigned int to prevent a negative
number from being used.
This commit also updates the code to consistently use `X.toUnsigned...`
helper methods rather than using bitwise operators.
Fixed gh-38572
2023-11-27 23:33:15 -08:00
Moritz Halbritter
86c2f28cb4
Prevent keep alive thread from blocking the AOT processing
...
Instead of creating the thread directly in the constructor, the thread
is now created when the context is refreshed and stopped when the
context is closed.
As AOT processing never refreshes the context, the thread is never
started and can't block the AOT processing task.
Closes gh-38531
2023-11-27 13:41:02 +01:00
Phillip Webb
0856e10443
Fix IndexOutOfBoundsException exception from parseUrl with empty spec
...
Update jar `Handler` code so that the `parseUrl` method can accept an
empty `spec`. Prior to this commit, a `classLoader.getResource("")`
call would result in a `null` result. This breaks a number of things
including `ClassPathResource` and `PathMatchingResourcePatternResolver`.
Fixes gh-38524
2023-11-23 14:35:04 -08:00
Johnny Lim
f9f73aa146
Polish
...
See gh-38508
2023-11-23 09:39:01 +01:00
Moritz Halbritter
f613ab89b9
Auto-configure observations for RestClients
...
Closes gh-38500
2023-11-23 09:28:09 +01:00
Andy Wilkinson
9c68a2ab87
Integrate child management context with parent context's lifecycle
...
Previously, the child management context was created when the
parent context's web server was initialized and it wasn't stopped
or closed until the parent context was closed. This resulted in
the child context being left running when the parent context was
stopped. This would then cause a failure when the parent context
was started again as another web server initialized event would be
received and a second child management context would be started.
This commit updates the initialization of the child management
context to integrate it with the lifecycle of the parent context.
The management context is now created the first time the parent
context is started. It is stopped when the parent context is
stopped and restarted if the parent context is started again.
This lifecycle management is done using a phase that ensures
that the child context is not started until the parent context's
web server has been started.
Fixes gh-38502
2023-11-22 19:50:22 +00:00
Andy Wilkinson
1707904f70
Upgrade to Spring Batch 5.0.4
...
Closes gh-38493
2023-11-22 19:49:53 +00:00
Phillip Webb
9f031b04e5
Merge branch '3.1.x'
...
Closes gh-38507
2023-11-22 11:13:12 -08:00
Phillip Webb
bc504a8a03
Fix @ConditionalOnBean with annotation early FactoryBean initialization
...
Update `OnBeanCondition` with a variant of `getBeanNamesForAnnotation`
that does not cause early `FactoryBean` initialization.
Fixes gh-38473
2023-11-22 11:10:59 -08:00
Andy Wilkinson
e7aeeb87cf
Upgrade to Spring Integration 6.1.5
...
Closes gh-38303
2023-11-22 18:23:57 +00:00
Andy Wilkinson
fc00c4006a
Upgrade to Spring Integration 6.2.0
...
Closes gh-38315
2023-11-22 18:19:47 +00:00
Andy Wilkinson
4d33676c04
Upgrade to Spring Batch 5.1.0
...
Closes gh-38310
2023-11-22 18:19:46 +00:00
Andy Wilkinson
a40f3da028
Merge branch '3.1.x'
...
Closes gh-38499
2023-11-22 12:35:58 +00:00
Andy Wilkinson
ae5bae393b
Remove unnecessary toLowerCase call from remainderIsDashes
...
Closes gh-38498
2023-11-22 12:35:36 +00:00
Andy Wilkinson
a7571cf667
Use different default database names for Oracle XE and Oracle Free
...
Closes gh-38476
2023-11-22 10:48:35 +00:00
Moritz Halbritter
2323c7a838
Merge branch '3.1.x'
...
Closes gh-38496
2023-11-22 11:15:33 +01:00
Moritz Halbritter
74239ad689
Merge branch '3.0.x' into 3.1.x
...
Closes gh-38495
2023-11-22 11:15:20 +01:00
Moritz Halbritter
48e06af7ec
Merge branch '2.7.x' into 3.0.x
...
Closes gh-38494
2023-11-22 11:15:07 +01:00
Moritz Halbritter
0171ed205c
Polish "Document comments in SQL for database initialization"
...
See gh-38385
2023-11-22 11:14:13 +01:00
penekhun
578d0436e0
Document comments in SQL for database initialization
...
See gh-38385
2023-11-22 11:10:14 +01:00
Andy Wilkinson
2d7c8a144c
Start building against Spring Batch 5.0.4 snapshots
...
See gh-38493
2023-11-22 09:39:31 +00:00
Andy Wilkinson
7d6a64bb56
Start building against Spring Batch 5.0.4 snapshots
...
See gh-38492
2023-11-22 09:38:09 +00:00
Moritz Halbritter
b1da6f941f
Merge branch '3.1.x'
2023-11-22 10:29:28 +01:00
Moritz Halbritter
eddb17473b
Fix deprecation clause on MongoPropertiesClientSettingsBuilderCustomizer
2023-11-22 10:29:12 +01:00
Johnny Lim
175b6473c7
Polish
...
See gh-38389
2023-11-22 10:16:19 +01:00
Georg Pirklbauer
969e142c34
Update Dynatrace docs with info about the meter metadata toggle
...
See gh-38368
2023-11-22 10:14:25 +01:00
Andy Wilkinson
b473ffdea2
Upgrade to Spring Integration 5.5.20
...
Closes gh-38491
2023-11-22 08:28:52 +00:00
Scott Frederick
d433deb737
Merge branch '3.0.x' into 3.1.x
...
Closes gh-38485
2023-11-21 17:30:54 -06:00
Scott Frederick
dabcebf8a3
Merge branch '2.7.x' into 3.0.x
...
Closes gh-38484
2023-11-21 17:30:07 -06:00
Scott Frederick
d1cce0f8ef
Upgrade default CNB builders to Paketo Jammy
...
Closes gh-38477
2023-11-21 17:22:32 -06:00
Phillip Webb
f37d6c9294
Upgrade to WebJars Locator Core 0.55
...
Closes gh-38481
2023-11-21 12:20:06 -08:00
Phillip Webb
3195560385
Upgrade to Rabbit Stream Client 0.14.0
...
Closes gh-38480
2023-11-21 12:20:06 -08:00
Phillip Webb
30208588a0
Upgrade to Mockito 5.7.0
...
Closes gh-38479
2023-11-21 12:20:06 -08:00
Phillip Webb
ece763c44f
Upgrade to GraphQL Java 21.3
...
Closes gh-38478
2023-11-21 12:20:06 -08:00
Phillip Webb
6c3dec42e0
Add container support for Oracle Free which replaces Oracle XE
...
Update Docker Compose and Testcontainers support to work with
`gvenzl/oracle-free` which replaces `gvenzl/oracle-xe`.
Closes gh-38476
2023-11-21 11:51:59 -08:00
Andy Wilkinson
0897d752bc
Upgrade to Testcontainers 1.19.3
...
Closes gh-38471
2023-11-21 16:51:50 +00:00
Andy Wilkinson
84f0614bdf
Upgrade to Spring Session 3.2.0
...
Closes gh-38319
2023-11-21 16:51:44 +00:00
Andy Wilkinson
d4a1d10fa1
Upgrade to Spring GraphQL 1.2.4
...
Closes gh-38313
2023-11-21 16:51:43 +00:00
Andy Wilkinson
4659d14170
Upgrade to Spring Authorization Server 1.2.0
...
Closes gh-38309
2023-11-21 16:51:42 +00:00
Andy Wilkinson
09a15cbf1b
Upgrade to Spring WS 4.0.8
...
Closes gh-38304
2023-11-21 15:34:37 +00:00
Andy Wilkinson
71a65019d6
Upgrade to Spring RESTDocs 3.0.1
...
Closes gh-38468
2023-11-21 15:34:37 +00:00
Andy Wilkinson
ac873ea796
Upgrade to Spring Kafka 3.0.13
...
Closes gh-38370
2023-11-21 15:34:32 +00:00
Andy Wilkinson
6d0500b277
Upgrade to Spring GraphQL 1.2.4
...
Closes gh-38302
2023-11-21 15:34:31 +00:00
Andy Wilkinson
5dd402af5c
Upgrade to Spring Data Bom 2023.0.6
...
Closes gh-38300
2023-11-21 15:34:31 +00:00
Andy Wilkinson
71e85f54e0
Upgrade to SAAJ Impl 3.0.3
...
Closes gh-38467
2023-11-21 15:34:30 +00:00
Andy Wilkinson
3f5ff16946
Upgrade to Pooled JMS 3.1.5
...
Closes gh-38466
2023-11-21 15:34:25 +00:00
Andy Wilkinson
d26b76c647
Upgrade to Netty 4.1.101.Final
...
Closes gh-38465
2023-11-21 15:34:20 +00:00
Andy Wilkinson
104819ffb0
Upgrade to Lettuce 6.2.7.RELEASE
...
Closes gh-38463
2023-11-21 15:34:11 +00:00
Andy Wilkinson
132fc74410
Upgrade to Jetty 11.0.18
...
Closes gh-38462
2023-11-21 15:34:06 +00:00
Andy Wilkinson
b9e4f62003
Upgrade to Jetty Reactive HTTPClient 3.0.10
...
Closes gh-38461
2023-11-21 15:34:01 +00:00
Andy Wilkinson
3b4bfef2dc
Upgrade to Jakarta XML WS 4.0.1
...
Closes gh-38460
2023-11-21 15:33:56 +00:00
Andy Wilkinson
21f17488b7
Upgrade to Jakarta XML SOAP 3.0.1
...
Closes gh-38459
2023-11-21 15:33:51 +00:00
Andy Wilkinson
fe7b2954ec
Upgrade to Jakarta Json 2.1.3
...
Closes gh-38458
2023-11-21 15:33:46 +00:00
Andy Wilkinson
d23abf6e1c
Upgrade to Infinispan 14.0.21.Final
...
Closes gh-38457
2023-11-21 15:33:41 +00:00
Andy Wilkinson
3000cfd67e
Upgrade to Glassfish JAXB 4.0.4
...
Closes gh-38456
2023-11-21 15:33:36 +00:00
Andy Wilkinson
646a369c6f
Upgrade to Dropwizard Metrics 4.2.22
...
Closes gh-38455
2023-11-21 15:33:32 +00:00
Andy Wilkinson
360b9a98c7
Upgrade to DB2 JDBC 11.5.9.0
...
Closes gh-38454
2023-11-21 15:33:27 +00:00
Andy Wilkinson
d64f76c657
Upgrade to Byte Buddy 1.14.10
...
Closes gh-38453
2023-11-21 15:33:22 +00:00
Andy Wilkinson
a440a4f024
Upgrade to ActiveMQ 5.18.3
...
Closes gh-38452
2023-11-21 15:33:17 +00:00
Andy Wilkinson
cec5c22fb1
Upgrade to Spring WS 4.0.8
...
Closes gh-38296
2023-11-21 13:23:47 +00:00
Andy Wilkinson
741905e294
Upgrade to Spring RESTDocs 3.0.1
...
Closes gh-38449
2023-11-21 13:23:47 +00:00
Andy Wilkinson
e559159f04
Upgrade to Spring Kafka 3.0.13
...
Closes gh-38369
2023-11-21 13:23:42 +00:00
Andy Wilkinson
a37566fd86
Upgrade to Spring Integration 6.0.9
...
Closes gh-38295
2023-11-21 13:23:41 +00:00
Andy Wilkinson
420091b9c8
Upgrade to Spring Data Bom 2022.0.12
...
Closes gh-38293
2023-11-21 13:23:41 +00:00
Andy Wilkinson
a0b1b4641a
Upgrade to SAAJ Impl 3.0.3
...
Closes gh-38448
2023-11-21 13:23:40 +00:00
Andy Wilkinson
76c72f6621
Upgrade to Netty 4.1.101.Final
...
Closes gh-38447
2023-11-21 13:23:35 +00:00
Andy Wilkinson
c8a53a640d
Upgrade to Lettuce 6.2.7.RELEASE
...
Closes gh-38445
2023-11-21 13:23:26 +00:00
Andy Wilkinson
9c20596650
Upgrade to Jetty 11.0.18
...
Closes gh-38444
2023-11-21 13:23:21 +00:00
Andy Wilkinson
d2e08c84ed
Upgrade to Jetty Reactive HTTPClient 3.0.10
...
Closes gh-38443
2023-11-21 13:23:16 +00:00
Andy Wilkinson
ef5fe58a42
Upgrade to Jakarta XML WS 4.0.1
...
Closes gh-38442
2023-11-21 13:23:11 +00:00
Andy Wilkinson
77ced55843
Upgrade to Jakarta XML SOAP 3.0.1
...
Closes gh-38441
2023-11-21 13:23:06 +00:00
Andy Wilkinson
1dc908e8bc
Upgrade to Jakarta Json 2.1.3
...
Closes gh-38440
2023-11-21 13:23:02 +00:00
Andy Wilkinson
88683496df
Upgrade to Infinispan 14.0.21.Final
...
Closes gh-38439
2023-11-21 13:22:57 +00:00
Andy Wilkinson
fb3f97a4fa
Upgrade to Glassfish JAXB 4.0.4
...
Closes gh-38438
2023-11-21 13:22:52 +00:00
Andy Wilkinson
85e55fee9c
Upgrade to Dropwizard Metrics 4.2.22
...
Closes gh-38437
2023-11-21 13:22:48 +00:00
Andy Wilkinson
70c3bceb64
Upgrade to DB2 JDBC 11.5.9.0
...
Closes gh-38436
2023-11-21 13:22:43 +00:00
Andy Wilkinson
ebb7a547af
Upgrade to Spring WS 3.1.8
...
Closes gh-38284
2023-11-21 12:52:40 +00:00
Andy Wilkinson
3b169a4d53
Upgrade to Spring RESTDocs 2.0.8.RELEASE
...
Closes gh-38434
2023-11-21 12:52:40 +00:00
Andy Wilkinson
3c820b8613
Upgrade to Spring Data Bom 2021.2.18
...
Closes gh-38282
2023-11-21 12:52:35 +00:00
Andy Wilkinson
79c467c8b6
Upgrade to Pooled JMS 1.2.6
...
Closes gh-38433
2023-11-21 12:52:34 +00:00
Andy Wilkinson
52fc4c019b
Upgrade to Netty 4.1.101.Final
...
Closes gh-38432
2023-11-21 12:52:30 +00:00
Andy Wilkinson
95149822a5
Upgrade to Glassfish JAXB 2.3.9
...
Closes gh-38431
2023-11-21 12:52:25 +00:00
Andy Wilkinson
296af5f461
Upgrade to Elasticsearch 7.17.15
...
Closes gh-38430
2023-11-21 12:52:20 +00:00
Andy Wilkinson
7c504394f4
Upgrade to Dropwizard Metrics 4.2.22
...
Closes gh-38429
2023-11-21 12:52:15 +00:00
Andy Wilkinson
c7c4ed3a12
Upgrade to DB2 JDBC 11.5.9.0
...
Closes gh-38428
2023-11-21 12:52:11 +00:00
Andy Wilkinson
d437270e87
Upgrade to ActiveMQ 5.16.7
...
Closes gh-38427
2023-11-21 12:52:05 +00:00
Phillip Webb
59493e8306
Fix failing tests following version upgrades
2023-11-20 21:03:17 -08:00
Phillip Webb
84ddeea1a4
Merge branch '3.1.x'
...
Closes gh-38425
2023-11-20 20:35:40 -08:00
Phillip Webb
092428e752
Merge branch '3.0.x' into 3.1.x
...
Closes gh-38424
2023-11-20 20:35:31 -08:00
Jonatan Ivanov
d5c22b9f5a
Update access log pattern to align with Tomcat 10
...
As of Tomcat 10 "%D" changed to mean microseconds instead of
milliseconds.
See gh-38403
2023-11-20 20:34:48 -08:00
abdullah-jaffer
6f3b3fa6f6
Replace Function<String, String> with UnaryOperator<String>
...
See gh-38390
2023-11-20 20:05:03 -08:00
Phillip Webb
b296ff890e
Upgrade to Pulsar Reactive 0.5.0
...
Closes gh-38406
2023-11-20 18:52:45 -08:00
Phillip Webb
261ea6ce44
Upgrade to Versions Maven Plugin 2.16.2
...
Closes gh-38422
2023-11-20 18:52:44 -08:00
Phillip Webb
b92dac5207
Upgrade to Spring WS 4.0.8
...
Closes gh-38320
2023-11-20 18:52:44 -08:00
Phillip Webb
c3949dd1c9
Upgrade to Spring Security 6.2.0
...
Closes gh-38318
2023-11-20 18:52:44 -08:00
Phillip Webb
5bb05e6c7a
Upgrade to Spring RESTDocs 3.0.1
...
Closes gh-38420
2023-11-20 18:52:44 -08:00
Phillip Webb
cd56affdf3
Upgrade to Spring Pulsar 1.0.0
...
Closes gh-38419
2023-11-20 18:52:44 -08:00
Phillip Webb
5a89ddb1fd
Upgrade to Spring Kafka 3.1.0
...
Closes gh-38316
2023-11-20 18:52:44 -08:00
Phillip Webb
d00ca7dd4d
Upgrade to Spring Data Bom 2023.1.0
...
Closes gh-38311
2023-11-20 18:52:44 -08:00
Phillip Webb
e5ff5f56ea
Upgrade to Spring AMQP 3.1.0
...
Closes gh-38308
2023-11-20 18:52:44 -08:00
Phillip Webb
d6157d1fe3
Upgrade to Pooled JMS 3.1.5
...
Closes gh-38418
2023-11-20 18:52:44 -08:00
Phillip Webb
eff1e5b5e2
Upgrade to Netty 4.1.101.Final
...
Closes gh-38417
2023-11-20 18:52:44 -08:00
Phillip Webb
498b54b4f0
Upgrade to MongoDB 4.11.1
...
Closes gh-38416
2023-11-20 18:52:43 -08:00
Phillip Webb
4e76563b9f
Upgrade to Maven Javadoc Plugin 3.6.2
...
Closes gh-38415
2023-11-20 18:52:43 -08:00
Phillip Webb
b2338f23c8
Upgrade to Lettuce 6.3.0.RELEASE
...
Closes gh-38414
2023-11-20 18:52:35 -08:00
Phillip Webb
c84880e0e1
Upgrade to Kotlin Serialization 1.6.1
...
Closes gh-38413
2023-11-20 17:48:14 -08:00
Phillip Webb
67c4a989fb
Upgrade to Infinispan 14.0.21.Final
...
Closes gh-38411
2023-11-20 17:48:06 -08:00
Phillip Webb
4f285b40bf
Upgrade to Hazelcast 5.3.6
...
Closes gh-38410
2023-11-20 17:48:01 -08:00
Phillip Webb
593b9f7c2b
Upgrade to Dropwizard Metrics 4.2.22
...
Closes gh-38409
2023-11-20 17:47:56 -08:00
Phillip Webb
5141ad568c
Upgrade to DB2 JDBC 11.5.9.0
...
Closes gh-38408
2023-11-20 17:47:52 -08:00
Phillip Webb
cd0894edee
Upgrade to Byte Buddy 1.14.10
...
Closes gh-38407
2023-11-20 17:47:48 -08:00
Phillip Webb
3a32e4e913
Merge branch '3.1.x'
...
Closes gh-38405
2023-11-20 16:27:46 -08:00
Phillip Webb
f68df82b30
Support lenient ContainerConnectionDetailsFactory hint registration
...
Update `ContainerConnectionDetailsFactory` hint registration logic
so that types are optional on the classpath.
See gh-36606
Fixes gh-38392
2023-11-20 16:26:22 -08:00
Andy Wilkinson
6065f219b3
Provide dependency management for org.crac:crac
...
Closes gh-38378
2023-11-16 20:09:07 +00:00
Andy Wilkinson
3b3bfd8a1b
Upgrade to Spring LDAP 3.2.0
...
Closes gh-38317
2023-11-16 19:38:29 +00:00
Andy Wilkinson
31e8af4709
Upgrade to Spring HATEOAS 2.2.0
...
Closes gh-38314
2023-11-16 16:00:10 +00:00
Andy Wilkinson
a9f49e1085
Upgrade to Spring HATEOAS 2.1.3
...
Closes gh-38375
2023-11-16 15:59:26 +00:00
Andy Wilkinson
473b801c52
Upgrade to Spring HATEOAS 2.0.7
...
Closes gh-38374
2023-11-16 15:58:41 +00:00
Andy Wilkinson
19f8e042a6
Upgrade to Spring HATEOAS 1.5.6
...
Closes gh-38373
2023-11-16 15:57:56 +00:00
Andy Wilkinson
a68eae66e1
Start building against Spring HATEOAS 2.1.3 snapshots
...
See gh-38375
2023-11-16 12:12:21 +00:00
Andy Wilkinson
15e9ae91ea
Start building against Spring HATEOAS 2.0.7 snapshots
...
See gh-38374
2023-11-16 12:10:58 +00:00
Andy Wilkinson
239e8a640e
Start building against Spring HATEOAS 1.5.6 snapshots
...
See gh-38373
2023-11-16 12:09:55 +00:00
Andy Wilkinson
4d63983493
Start building against Spring Kafka 3.0.13 snapshots
...
See gh-38370
2023-11-16 09:41:42 +00:00
Moritz Halbritter
d8ce901011
Close meter registries early in the shutdown process
...
Closes gh-38240
2023-11-16 09:26:02 +01:00
Eddú Meléndez
51f13404a5
Use KafkaContainer in smoke test for Kafka with SSL
...
See gh-38359
2023-11-15 15:25:58 -06:00
Andy Wilkinson
8b72e5612b
Start building against Spring Kafka 3.0.13 snapshots
...
See gh-38369
2023-11-15 19:21:09 +00:00
Andy Wilkinson
517026ab9f
Merge branch '3.1.x'
...
Closes gh-38366
2023-11-15 16:00:20 +00:00
Andy Wilkinson
37b2567aeb
Merge branch '3.0.x' into 3.1.x
...
Closes gh-38365
2023-11-15 16:00:05 +00:00
Andy Wilkinson
ff555c5ceb
Merge branch '2.7.x' into 3.0.x
...
Closes gh-38364
2023-11-15 15:57:39 +00:00
Andy Wilkinson
c2156d6803
Remove static state from CF web endpoint integration tests
...
The mocks being static meant that their state was shared across each
test in the class. This resulted in the tests being order dependent.
This commit uses instance variables to hold the mocks, thereby
ensuring that they're recreated for each test as part of the standard
JUnit lifecycle.
Closes gh-38363
2023-11-15 15:16:24 +00:00
Moritz Halbritter
7a8a393154
Revert "Close meter registries early in the shutdown process"
...
This reverts commit f62c1188a1
.
2023-11-15 14:17:07 +01:00
Moritz Halbritter
f62c1188a1
Close meter registries early in the shutdown process
...
Closes gh-38240
Co-authored-by: Phillip Webb <pwebb@vmware.com>
2023-11-15 10:24:54 +01:00
Moritz Halbritter
d6f67b02f7
Clarify which tracing components are disabled when using tracing in tests
...
See gh-33975
2023-11-15 09:13:15 +01:00
Moritz Halbritter
328261337e
Merge branch '3.1.x'
...
Closes gh-38362
2023-11-15 09:07:09 +01:00
Moritz Halbritter
9c1c18c2b9
Document that tracing is disabled in tests in the "Tracing" section
...
Closes gh-33975
2023-11-15 09:06:39 +01:00
Andy Wilkinson
178756ccd6
Upgrade to Reactor Bom 2023.0.0
...
Closes gh-38307
2023-11-14 20:47:00 +00:00
Andy Wilkinson
b7c7b47c97
Upgrade to Reactor Bom 2022.0.13
...
Closes gh-38299
2023-11-14 20:46:00 +00:00
Andy Wilkinson
7f6014f411
Upgrade to Reactor Bom 2022.0.13
...
Closes gh-38292
2023-11-14 20:45:03 +00:00
Andy Wilkinson
9b8bcec33e
Upgrade to Reactor Bom 2020.0.38
...
Closes gh-38280
2023-11-14 20:44:18 +00:00
Andy Wilkinson
4c98cf88e6
Merge branch '3.1.x'
...
Closes gh-38358
2023-11-14 20:01:46 +00:00
Andy Wilkinson
38b5f80ba6
Merge branch '3.0.x' into 3.1.x
...
Closes gh-38357
2023-11-14 20:01:29 +00:00
Andy Wilkinson
88393da438
Upgrade to AspectJ 1.9.20.1
...
Closes gh-38355
2023-11-14 20:00:47 +00:00