Phillip Webb
123502b8d7
Restore use of fixed version when calling docker APIs
...
Update `DockerApi` so that calls are made using a fixed version. For
most calls this will be `v1.24`, however, for calls with a platform
we must use the `v1.41`.
When possible, we check that the Docker version in use meets the
required minimum, however, if we can't detect the running version
we now proceed and let the actual API call fail. This is due to the
fact that the `/_ping` endpoint may not always be available. For
example, it is restricted when building from a BitBucket CI pipeline.
Fixes gh-43452
2024-12-10 13:14:20 -08:00
Phillip Webb
48d51bda1d
Start building against Spring HATEOAS 2.4.1 snapshots
...
See gh-43478
2024-12-10 09:42:18 -08:00
Phillip Webb
d815009aca
Start building against Spring Batch 5.2.1 snapshots
...
See gh-43477
2024-12-10 09:42:14 -08:00
Stéphane Nicoll
f65336ca56
Fix compilation failure on merge
2024-12-10 16:28:34 +01:00
Stéphane Nicoll
f17ba516fa
Upgrade to Thymeleaf Extras SpringSecurity 3.1.3.RELEASE
...
Closes gh-43470
2024-12-10 15:45:51 +01:00
Stéphane Nicoll
922ff4f252
Upgrade to Thymeleaf 3.1.3.RELEASE
...
Closes gh-43469
2024-12-10 15:45:51 +01:00
Stéphane Nicoll
7e94839c7c
Upgrade to Reactor Bom 2024.0.1
...
Closes gh-43410
2024-12-10 15:45:51 +01:00
Stéphane Nicoll
1a9fc9b06c
Upgrade to Micrometer Tracing 1.4.1
...
Closes gh-43409
2024-12-10 15:45:50 +01:00
Stéphane Nicoll
4fa33183ba
Upgrade to Micrometer 1.14.2
...
Closes gh-43408
2024-12-10 15:45:50 +01:00
Stéphane Nicoll
bd53ba3846
Upgrade to jOOQ 3.19.16
...
Closes gh-43468
2024-12-10 15:45:50 +01:00
Stéphane Nicoll
a59937b8b8
Upgrade to Zipkin Reporter 3.4.3
...
Closes gh-43467
2024-12-10 15:45:50 +01:00
Moritz Halbritter
ce9878a7d0
Merge branch '3.3.x'
...
Closes gh-43472
2024-12-10 15:43:46 +01:00
Moritz Halbritter
e2cf9e105c
Respect profiles when listing running Docker Compose containers
...
Closes gh-40139
2024-12-10 14:24:44 +01:00
Stéphane Nicoll
f1a3e056bb
Merge branch '3.3.x'
...
Closes gh-43456
2024-12-10 07:36:27 +01:00
Tran Ngoc Nhan
a96b91fa3e
Fix logback javadoc
...
See gh-43439
2024-12-10 07:35:58 +01:00
Stéphane Nicoll
9020d30206
Merge branch '3.3.x'
...
Closes gh-43454
2024-12-10 07:30:17 +01:00
Soby Chacko
55ffed4ee4
Add dependency management for kafka-server
...
Apache Kafka now ships a new module, kafka-server, since the 3.7.0
release. The `3.9.0` kafka-client introduced some breaking changes that
require this dependecy for the `EmbeddedKafka` support in Spring for
Apache Kafka.
This commit adds this dependecny for Spring Boot based Spring Kafka
projects.
See gh-43450
2024-12-10 07:28:41 +01:00
Phillip Webb
565ec07046
Merge branch '3.3.x'
...
Closes gh-43448
2024-12-09 09:46:47 -08:00
Phillip Webb
3338c22372
Restore `build...` methods that don't need an SSL bundle
...
Restore `buildConsumerProperties()` and `buildProducerProperties()`
methods in `KafkaProperties` to make it more convenient to use them
without an SSL bundle.
Fixes gh-43300
2024-12-09 09:43:13 -08:00
Dmytro Nosan
26ab0fea81
Don't replace existing defaultRequestConfigCustomizer
...
Update `HttpComponentsClientHttpRequestFactoryBuilder` to add to the
existing `defaultRequestConfigCustomizer` rather than replace it.
See gh-43429
2024-12-06 19:11:37 -08:00
Phillip Webb
e394cadc48
Merge branch '3.3.x'
...
Closes gh-43436
2024-12-06 19:01:30 -08:00
Phillip Webb
f21402d4c3
Consistently return non-zero exit codes for jarmode failures
...
Update jar mode launchers to catch all exceptions and return a non-zero
exit code. This refinement also allows us to consolidate the existing
error reporting logic to a central locations. Modes that wish to report
a simple error rather than a full stacktrace can throw the newly
introduced `JarModeErrorException`.
Fixes gh-43435
2024-12-06 19:00:50 -08:00
Phillip Webb
86b0c768e7
Fix annotation matching when using scoped proxies
...
Update `OnBeanCondition` to check `isAutowireCandidate` on the original
bean of scoped proxy targets.
Fixes gh-43423
2024-12-05 18:05:23 -08:00
Phillip Webb
8ca8ab14f6
Add `withRequestFactorySettings` method and restore previous defaults
...
Update `TestRestTemplate` with a `withRequestFactorySettings` method
that can be used to change defaults such as `Redirects`.
This commit also restores the previous redirect defaults for HTTP
components where redirects would only be followed when the
`HttpClientOption.ENABLE_REDIRECTS` was specified.
Closes gh-43258
2024-12-05 18:01:09 -08:00
Moritz Halbritter
4dca6ee5d3
Polish "Only set imagePlatform if it has text"
...
See gh-43424
2024-12-05 11:03:14 +01:00
Leonid Bogdanov
fe1f9b3002
Only set imagePlatform if it has text
...
See gh-43424
2024-12-05 10:59:17 +01:00
Moritz Halbritter
48bc3b6412
Merge branch '3.3.x'
...
Closes gh-43428
2024-12-05 10:54:02 +01:00
Tran Ngoc Nhan
dbe7ecd168
Fix Junit javadoc links
...
See gh-43383
2024-12-05 10:37:06 +01:00
Moritz Halbritter
2ff6dea5ca
Polish "Document how to use structured logging with custom log configuration"
...
See gh-43301
2024-12-05 10:34:07 +01:00
Yanming Zhou
dd14158ad7
Document how to use structured logging with custom log configuration
...
See gh-43301
2024-12-05 10:13:02 +01:00
Phillip Webb
8b83afdb68
Polish 'Add `redirects(...)` method to `RestTemplateBuilder`'
...
Remove deprecations and new methods in `TestRestTemplate` in favor of
passing in a configured `RestTemplateBuilder`.
See gh-43258
2024-12-04 15:12:59 -08:00
Yanming Zhou
f450b28a7c
Add `redirects(...)` method to `RestTemplateBuilder`
...
Add `redirects(...)` method to `RestTemplateBuilder` to allow redirect
customization. This new method is required in 3.4 since the default
redirect strategy for some clients has changed and users need a way
to restore the old behavior.
See gh-43258
2024-12-04 15:09:33 -08:00
Phillip Webb
916efb632c
Merge branch '3.3.x'
2024-12-04 15:04:22 -08:00
Phillip Webb
9e7972a9b4
Polish code with code cleanup rules
2024-12-04 15:03:40 -08:00
Phillip Webb
c1f0dacd3f
Start building against Spring Session 3.4.1 snapshots
...
See gh-43420
2024-12-04 11:48:59 -08:00
Phillip Webb
c7882d1396
Start building against Spring Security 6.4.2 snapshots
...
See gh-43419
2024-12-04 11:48:55 -08:00
Phillip Webb
7852284d59
Start building against Spring Pulsar 1.2.1 snapshots
...
See gh-43418
2024-12-04 11:48:51 -08:00
Phillip Webb
bcf9e6c513
Start building against Spring LDAP 3.2.9 snapshots
...
See gh-43417
2024-12-04 11:48:47 -08:00
Phillip Webb
49df76a45d
Start building against Spring Kafka 3.3.1 snapshots
...
See gh-43416
2024-12-04 11:48:43 -08:00
Phillip Webb
32532b1f4d
Start building against Spring Integration 6.4.1 snapshots
...
See gh-43415
2024-12-04 11:48:39 -08:00
Phillip Webb
e8e4629791
Start building against Spring Data Bom 2024.1.1 snapshots
...
See gh-43413
2024-12-04 11:48:31 -08:00
Phillip Webb
4f914ab951
Start building against Spring Authorization Server 1.4.1 snapshots
...
See gh-43412
2024-12-04 11:48:27 -08:00
Phillip Webb
e91d0da022
Start building against Spring AMQP 3.2.1 snapshots
...
See gh-43411
2024-12-04 11:48:23 -08:00
Phillip Webb
41aa90f036
Start building against Reactor Bom 2024.0.1 snapshots
...
See gh-43410
2024-12-04 11:48:19 -08:00
Phillip Webb
bece4f51bb
Start building against Micrometer Tracing 1.4.1 snapshots
...
See gh-43409
2024-12-04 11:48:15 -08:00
Phillip Webb
e42095813a
Start building against Micrometer 1.14.2 snapshots
...
See gh-43408
2024-12-04 11:48:10 -08:00
Phillip Webb
e431b119a5
Upgrade to SQLite JDBC 3.47.1.0
...
Closes gh-43407
2024-12-04 11:43:56 -08:00
Phillip Webb
ecd73478ca
Upgrade to RxJava3 3.1.10
...
Closes gh-43406
2024-12-04 11:43:52 -08:00
Phillip Webb
002539f6f6
Upgrade to Pulsar 3.3.3
...
Closes gh-43405
2024-12-04 11:43:48 -08:00
Phillip Webb
060f89e195
Upgrade to Prometheus Client 1.3.4
...
Closes gh-43404
2024-12-04 11:43:44 -08:00