Commit Graph
62734 Commits
Author SHA1 Message Date
Stéphane Nicoll d031631709 Introduce KafkaConfigBuilder
This commit introduces a centralized way of building Kafka config
properties, and deprecate the equivalent in KafkaProperties. This
also removes the customization done in auto-configuration so that
KafkaConfigBuilder is the sole source mapping.

KafkaConfigBuilder also takes care of applying ConnectionDetails if
necessary.

Closes gh-51769
2026-09-15 15:39:27 +02:00
Stéphane Nicoll ad872c6427 Upgrade to Versions Maven Plugin 2.22.0
Closes gh-51761
2026-09-15 14:58:12 +02:00
Stéphane Nicoll efeba67c22 Upgrade to MongoDB 5.11.1
Closes gh-51760
2026-09-15 14:58:12 +02:00
Stéphane Nicoll 059202983a Upgrade to Maven Install Plugin 3.2.0
Closes gh-51759
2026-09-15 14:58:12 +02:00
Stéphane Nicoll bf29f8f381 Upgrade to Maven Deploy Plugin 3.2.0
Closes gh-51758
2026-09-15 14:58:12 +02:00
Stéphane Nicoll 7e8b9f4d7f Upgrade to Lettuce 7.7.0.RELEASE
Closes gh-51757
2026-09-15 14:58:12 +02:00
Stéphane Nicoll dc7665336b Upgrade to Jedis 8.0.1
Closes gh-51756
2026-09-15 14:58:12 +02:00
Stéphane Nicoll 553780e086 Upgrade to Elasticsearch Client 9.5.3
Closes gh-51755
2026-09-15 14:58:12 +02:00
Stéphane Nicoll e0966e0e99 Upgrade to Couchbase Client 3.12.3
Closes gh-51754
2026-09-15 14:58:12 +02:00
Stéphane Nicoll 360074ac69 Upgrade to Byte Buddy 1.18.14
Closes gh-51753
2026-09-15 14:58:11 +02:00
Stéphane Nicoll c07bfa884d Start building against Spring Data Bom 2026.1.0-M2 snapshots
See gh-51752
2026-09-15 14:58:11 +02:00
Andy Wilkinson 1d44394d1f Merge branch '4.1.x'
Closes gh-51767
2026-09-15 13:30:51 +01:00
Andy Wilkinson a6e2eb9f55 Merge pull request #51724 from dlwhdgus0810
Closes gh-51724

* gh-51724:
  Apply cookie handling to reactive HttpComponents connector
2026-09-15 13:30:44 +01:00
Hyun Lee fa8ecccc37 Apply cookie handling to reactive HttpComponents connector
The spring.http.clients.cookie-handling property and
HttpClientSettings.cookieHandling() were honored by every imperative
ClientHttpRequestFactoryBuilder and by the Jetty, JDK and Reactor
ClientHttpConnectorBuilders, but HttpComponentsHttpAsyncClientBuilder
ignored the setting. As a result, a WebClient backed by Apache
HttpComponents kept storing cookies even when cookie handling was
disabled.

Map the setting to the default request config's cookie spec, as
HttpComponentsHttpClientBuilder already does, and document the property
alongside the other global HTTP client settings.

See gh-51724

Signed-off-by: Hyun Lee <dlwhdugs4147@gmail.com>
2026-09-15 13:22:25 +01:00
Andy Wilkinson 16cd17f417 Merge branch '4.1.x'
Closes gh-51766
2026-09-15 13:11:06 +01:00
Andy Wilkinson a8f1a99f7d Merge branch '4.0.x' into 4.1.x
Closes gh-51765
2026-09-15 13:10:54 +01:00
Andy Wilkinson 6387c3791c Merge pull request #51739 from ngocnhan-tran1996
Closes gh-51739

* gh-51739:
  Update testcontainers javadoc links
2026-09-15 13:10:44 +01:00
Tran Ngoc Nhan f8c3831792 Update testcontainers javadoc links
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>

See gh-51739
2026-09-15 13:10:24 +01:00
Andy Wilkinson bc72f228c3 Merge branch '4.1.x'
Closes gh-51764
2026-09-15 13:03:19 +01:00
Andy Wilkinson 7612f4a222 Merge branch '4.0.x' into 4.1.x
Closes gh-51763
2026-09-15 13:03:03 +01:00
Andy Wilkinson 38a305d1d2 Merge pull request #51722 from noojung
Closes gh-51722

* gh-51722:
  Fix duplicated tests
2026-09-15 13:01:50 +01:00
Hyunwoo Jung ed63da9f5d Fix duplicated tests
Signed-off-by: Hyunwoo Jung <hyunwoojung@kakao.com>

See gh-51722
2026-09-15 12:48:22 +01:00
Phillip Webb c01e1b34b6 Merge branch '4.1.x'
Closes gh-51748
2026-09-14 20:27:24 -07:00
Phillip Webb 9fff25f9ff Merge branch '4.0.x' into 4.1.x
Closes gh-51747
2026-09-14 20:27:17 -07:00
Phillip Webb 036caad4e2 Fix reference to restart property
Correct incorrect `spring.devtools.remote.restart.enabled` property
reference to `spring.devtools.restart.enabled`.

Closes gh-51743
2026-09-14 20:25:05 -07:00
Phillip Webb adcb3256c6 Merge branch '4.1.x'
Closes gh-51746
2026-09-14 18:10:07 -07:00
Phillip Webb bd1ae5ede0 Merge branch '4.0.x' into 4.1.x
Closes gh-51745
2026-09-14 18:09:52 -07:00
Phillip Webb 9c851cf50a Merge pull request #51744 from icikle
Closes gh-51744

* pr/51744:
  Polish 'Fix inflater cache race in NestedJarFileResources'
  Fix inflater cache race in NestedJarFileResources
2026-09-14 18:09:40 -07:00
Phillip Webb d6aac54e2e Polish 'Fix inflater cache race in NestedJarFileResources'
See gh-51744
2026-09-14 17:37:06 -07:00
Ian Kettle b103aaa1f6 Fix inflater cache race in NestedJarFileResources
Update `NestedJarFileResources` to fix a race condition that could
result in a `NullPointerException`.

The methods `getOrCreateInflater` and `endOrCacheInflater` both
synchronize on a local `inflaterCache` variable but attempted to use the
`this.inflaterCache` instance which could be set to null.

The `releaseInflators` method had a synchronized block for ending each
inflater but the cache was being nulled out outside the block meaning that
the other 2 methods mentioned could hit the race condition.

Signed-off-by: Ian Kettle <25729118+icikle@users.noreply.github.com>

See gh-51744
2026-09-14 17:34:45 -07:00
Stéphane Nicoll c314577016 Merge branch '4.1.x' 2026-09-14 14:36:33 +02:00
Stéphane Nicoll 1d07863779 Merge branch '4.0.x' into 4.1.x
Closes gh-51741
2026-09-14 14:36:23 +02:00
Stéphane Nicoll b923033cb3 Use Landlock-based sandboxing in homebrew verification tests
Closes gh-51740
2026-09-14 14:36:12 +02:00
Stéphane Nicoll b9357610c8 Use Landlock-based sandboxing in homebrew verification tests 2026-09-14 13:38:55 +02:00
Stéphane Nicoll 0b316e5a58 Upgrade to XML Maven Plugin 1.2.2
Closes gh-51738
2026-09-14 12:41:00 +02:00
Stéphane Nicoll aea507dfb2 Upgrade to Protobuf Maven Plugin 5.1.9
Closes gh-51737
2026-09-14 12:40:56 +02:00
Stéphane Nicoll e62df00553 Upgrade to Hibernate 7.4.8.Final
Closes gh-51736
2026-09-14 12:40:52 +02:00
Stéphane Nicoll 2eb8b5c5ae Upgrade to GraphQL Java 26.1
Closes gh-51735
2026-09-14 12:40:46 +02:00
Stéphane Nicoll b9a7707643 Upgrade to Build Helper Maven Plugin 3.6.2
Closes gh-51734
2026-09-14 12:40:42 +02:00
Brian Clozel 8b22099f77 Configure allowed HTTP methods in GraphQL transports
This commit adds new "spring.graphql.http.methods" and
"spring.graphql.http.sse.methods" configuration properties that let you
configure the allowed HTTP methods for the given transports.

Closes gh-51732
2026-09-14 12:00:40 +02:00
Brian Clozel 8798aa6350 Switch to Spring for GraphQL 2.1.0-SNAPSHOT
See gh-51713
2026-09-14 12:00:40 +02:00
Stéphane Nicoll 4bc86fedc4 Merge branch '4.1.x'
Closes gh-51731
2026-09-14 11:42:22 +02:00
Stéphane Nicoll cd6efbd910 Merge branch '4.0.x' into 4.1.x
Closes gh-51730
2026-09-14 11:42:14 +02:00
Stéphane Nicoll 252dce0361 Merge pull request #51708 from ohchanKyu
Closes gh-51708

* fix-devtools-reactive-web-environment-detection:
  Polish "Fix detection of reactive web environments in DevTools"
  Fix detection of reactive web environments in DevTools
2026-09-14 11:42:09 +02:00
Stéphane Nicoll 5c799bc0cf Polish "Fix detection of reactive web environments in DevTools"
See gh-51708
2026-09-14 11:34:05 +02:00
ohchanKyu f5b563934a Fix detection of reactive web environments in DevTools
DevToolsPropertyDefaultsPostProcessor looked for
ConfigurableReactiveWebEnvironment
in org.springframework.boot.web.reactive.context by name, but the class
moved to org.springframework.boot.web.context.reactive in 4.0. As a
result, reactive web applications were never identified as web
applications and the hint about setting logging.level.web to DEBUG was
not logged for them.

ConfigurableReactiveWebEnvironment is part of spring-boot, so it is now
referenced directly rather than by name. The servlet environment check
is unchanged as spring-web is an optional dependency.

See gh-51708

Signed-off-by: ohchanKyu <okc0202@naver.com>
2026-09-14 11:09:40 +02:00
Stéphane Nicoll 78e75a02b1 Merge pull request #51723 from xoruddl
Closes gh-51723

* docs/fix-activemq-javadoc-link:
  Fix ActiveMQContainer Javadoc link in Testcontainers documentation
2026-09-14 11:05:03 +02:00
itaekyung 6c796c57f1 Fix ActiveMQContainer Javadoc link in Testcontainers documentation
See gh-51723

Signed-off-by: itaekyung <taeyun1411@gmail.com>
2026-09-14 11:03:01 +02:00
Stéphane Nicoll 9c36a0cdd5 Merge branch '4.1.x'
Closes gh-51729
2026-09-14 10:58:48 +02:00
Stéphane Nicoll 8b6a7863a9 Merge branch '4.0.x' into 4.1.x
Closes gh-51728
2026-09-14 10:58:39 +02:00