Commit Graph
56958 Commits
Author SHA1 Message Date
Stéphane Nicoll 5100b4dfd0 Upgrade to Jetty 12.0.36
Closes gh-50676
2026-06-03 16:25:16 +02:00
Stéphane Nicoll 2f4ca0f819 Upgrade to Jaxen 2.0.5
Closes gh-50675
2026-06-03 16:25:10 +02:00
Stéphane Nicoll 9030f927f0 Upgrade to Jakarta Json Bind 3.0.2
Closes gh-50674
2026-06-03 16:25:03 +02:00
Stéphane Nicoll 5d3e998345 Upgrade to Jackson Bom 2.21.4
Closes gh-50673
2026-06-03 16:24:59 +02:00
Stéphane Nicoll 06f6a5564d Upgrade to Hibernate 6.6.52.Final
Closes gh-50672
2026-06-03 16:24:53 +02:00
Stéphane Nicoll da4b3820a2 Upgrade to Glassfish JAXB 4.0.9
Closes gh-50671
2026-06-03 16:24:46 +02:00
Stéphane Nicoll d1cad260a1 Upgrade to Cassandra Driver 4.19.3
Closes gh-50670
2026-06-03 16:24:40 +02:00
Stéphane Nicoll 8a63d1c624 Merge pull request #50641 from ngocnhan-tran1996
* fix-gradle-module-replacement-url-reference:
  Fix reference to Gradle's module replacement section

Closes gh-50641
2026-05-31 20:21:10 +02:00
Tran Ngoc Nhan becb0bbc7c Fix reference to Gradle's module replacement section
See gh-50641

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
2026-05-31 20:16:46 +02:00
Stéphane Nicoll cc90a0862a Merge pull request #50639 from SebTardif
* close-inspecting-output-stream:
  Close FileOutputStream delegate in InspectingOutputStream

Closes gh-50639
2026-05-31 16:14:55 +02:00
Sebastien Tardif eaf4a0a286 Close FileOutputStream delegate in InspectingOutputStream
InspectingOutputStream extends OutputStream but does not override
close(). When content exceeds MEMORY_LIMIT (approximately 4 KB),
convertToTempFile() replaces the ByteArrayOutputStream delegate with a
FileOutputStream. The try-with-resources in InspectedContent.of() calls
close(), which inherits the no-op OutputStream.close(), leaving the
FileOutputStream open and leaking a file descriptor.

Override close() to delegate to the underlying stream.

See gh-50639

Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
2026-05-31 16:13:46 +02:00
Stéphane Nicoll 3cafe9b602 Merge pull request #50626 from SebTardif
* fix/architecture-check-classloader-leak:
  Close URLClassLoader in ArchitectureCheck

Closes gh-50626
2026-05-30 16:41:05 +02:00
Sebastien Tardif 6d9fd88ae9 Close URLClassLoader in ArchitectureCheck
See gh-50626

Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
2026-05-30 16:34:19 +02:00
Stéphane Nicoll a009ea4bee Merge pull request #50624 from dlwldnjs1009
* treat-empty-ssl-bundle-as-unset:
  Polish "Treat empty SSL bundle as unset"
  Treat empty SSL bundle as unset

Closes gh-50624
2026-05-30 16:22:01 +02:00
Stéphane Nicoll 88a7a44baf Polish "Treat empty SSL bundle as unset"
Update Mail SSL configuration as well.

See gh-50624
2026-05-30 16:11:36 +02:00
Lee JiWon 39ed20b474 Treat empty SSL bundle as unset
Update the Cassandra, Redis, and MongoDB SSL configuration so that an
empty `bundle` property is treated as unset rather than enabling SSL.

See gh-50624

Signed-off-by: Lee JiWon <dlwldnjs1009@gmail.com>
2026-05-30 16:11:05 +02:00
Stéphane Nicoll 8288b8fc36 Merge pull request #50222 from henriquejsza
* gh-38275-letsencrypt-ssl-reload-docs-3.5.x:
  Polish "Document SSL reloading with Let's Encrypt"
  Document SSL reloading with Let's Encrypt

Closes gh-50222
2026-05-30 12:09:41 +02:00
Stéphane Nicoll f53d9571eb Polish "Document SSL reloading with Let's Encrypt"
See gh-50222
2026-05-30 12:09:17 +02:00
henriquejsza 4c8a95bcca Document SSL reloading with Let's Encrypt
See gh-50222

Signed-off-by: henriquejsza <henriquejsza@gmail.com>
2026-05-30 12:02:09 +02:00
Stéphane Nicoll 30876aacc2 Merge pull request #50600 from nosan
* 50598:
  Remove the use of Optional from Data Neo4j repository examples

Closes gh-50600
2026-05-29 12:41:20 +02:00
Dmytro Nosan c0d4ebc3a5 Remove the use of Optional from Data Neo4j repository examples
See gh-50600

Signed-off-by: Dmytro Nosan <dimanosan@gmail.com>
2026-05-29 12:38:33 +02:00
Stéphane Nicoll 6d44476202 Merge pull request #50593 from SJvaca30
* fix-docs-typos:
  Polish "Fix typos in documentation"
  Fix typos in documentation

Closes gh-50593
2026-05-29 12:35:58 +02:00
Stéphane Nicoll a862a087ee Polish "Fix typos in documentation"
See gh-50593
2026-05-29 12:33:38 +02:00
SJLIM 8786f37f2a Fix typos in documentation
See gh-50593

Signed-off-by: SJLIM <yyvaca30@gmail.com>
2026-05-29 12:32:41 +02:00
Stéphane Nicoll bb30ecc667 Merge pull request #50451 from SebTardif
* fix-processrunner-interrupt-flag:
  Restore interrupt flag in ProcessRunner on InterruptedException

Closes gh-50451
2026-05-29 12:29:44 +02:00
Sebastien Tardif 8a28cefd08 Restore interrupt flag in ProcessRunner on InterruptedException
ProcessRunner.waitForProcess and ReaderThread.toString catch
InterruptedException without restoring the thread interrupt flag.
This prevents callers higher up the stack from detecting the
interruption. Every other InterruptedException handler in the
codebase restores the flag; these two were the only omissions.

Add Thread.currentThread().interrupt() before re-throwing or
returning in both catch blocks. Also chain the original exception
as the cause in waitForProcess for debuggability.

See gh-50451

Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
2026-05-29 12:20:51 +02:00
Stéphane Nicoll 3e5ad73f01 Merge pull request #50447 from nosan
* polish-modified-classpath-classloader:
  Polish "Use new Maven Resolver API for ModifiedClassPathClassLoader"
  Use new Maven Resolver API for ModifiedClassPathClassLoader

Closes gh-50447
2026-05-29 12:05:44 +02:00
Stéphane Nicoll ae3222d5e0 Polish "Use new Maven Resolver API for ModifiedClassPathClassLoader"
See gh-50447
2026-05-29 11:57:42 +02:00
Dmytro Nosan 155b02f0e3 Use new Maven Resolver API for ModifiedClassPathClassLoader
Replace deprecated Maven Resolver components with
`RepositorySystemSupplier`.

See gh-50447

Signed-off-by: Dmytro Nosan <dimanosan@gmail.com>
2026-05-29 11:51:03 +02:00
Stéphane Nicoll 351a82627b Merge pull request #50290 from Kapil-chn7
* docs/validation-dependency:
  Polish "Clarify dependency requirement for Bean Validation support"
  Clarify dependency requirement for Bean Validation support

Closes gh-50290
2026-05-29 11:46:35 +02:00
Stéphane Nicoll 091b0f3c41 Polish "Clarify dependency requirement for Bean Validation support"
See gh-50290
2026-05-29 11:41:59 +02:00
Kapil-chn7 3c5309ba71 Clarify dependency requirement for Bean Validation support
See gh-50290

Signed-off-by: Kapil-chn7 <kapilchn7@gmail.com>
2026-05-29 11:39:38 +02:00
Stéphane Nicoll 19c7f5aff0 Merge pull request #50429 from igormukhin
* rabbitmq-empty-ssl-bundle:
  Treat empty RabbitMQ SSL bundle as unset

Closes gh-50429
2026-05-29 11:29:07 +02:00
igormukhin cfc1e89976 Treat empty RabbitMQ SSL bundle as unset
See gh-50429

Signed-off-by: igormukhin <618760+igormukhin@users.noreply.github.com>
2026-05-29 11:19:38 +02:00
Stéphane Nicoll d33962f37b Merge pull request #50301 from kwondh5217
* fix/50246-sni-fallback:
  Polish "Fall back to default SSL provider for unmapped SNI hostnames"
  Fall back to default SSL provider for unmapped SNI hostnames

Closes gh-50301
2026-05-29 11:06:27 +02:00
Stéphane Nicoll 8221bdb9d4 Polish "Fall back to default SSL provider for unmapped SNI hostnames"
See gh-50301
2026-05-29 10:54:06 +02:00
Daeho Kwon 08194cfee7 Fall back to default SSL provider for unmapped SNI hostnames
See gh-50301

Signed-off-by: Daeho Kwon <trewq231@naver.com>
2026-05-29 10:53:39 +02:00
Stéphane Nicoll b58a5b1e81 Merge pull request #50463 from dependabot[bot]
* dependabot/npm_and_yarn/antora/antora/site-generator-3.2.0-alpha.12:
  Bump @antora/site-generator in /antora

Closes gh-50463
2026-05-29 10:46:08 +02:00
dependabot[bot] 6074f06600 Bump @antora/site-generator in /antora
---
updated-dependencies:
- dependency-name: "@antora/site-generator"
  dependency-version: 3.2.0-alpha.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

See gh-50463

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-29 10:44:25 +02:00
Stéphane Nicoll cb06492523 Merge pull request #50464 from dependabot[bot]
* dependabot/npm_and_yarn/antora/antora/cli-3.2.0-alpha.12:
  Bump @antora/cli from 3.2.0-alpha.11 to 3.2.0-alpha.12 in /antora

Closes gh-50464
2026-05-29 10:15:22 +02:00
dependabot[bot] 325bfdb2ef Bump @antora/cli from 3.2.0-alpha.11 to 3.2.0-alpha.12 in /antora
---
updated-dependencies:
- dependency-name: "@antora/cli"
  dependency-version: 3.2.0-alpha.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

See gh-50464

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-29 10:14:21 +02:00
Moritz Halbritter 44629669e2 Disable Homebrew sandbox for the verification tests 2026-05-27 13:59:51 +02:00
Andy Wilkinson 76d56ab109 Upgrade to Tomcat 10.1.55
Closes gh-50534
2026-05-27 10:26:55 +01:00
Andy Wilkinson 9300366a55 Upgrade to SLF4J 2.0.18
Closes gh-50533
2026-05-27 10:26:50 +01:00
Andy Wilkinson 9f189ca245 Upgrade to Netty 4.1.134.Final
Closes gh-50532
2026-05-27 10:26:46 +01:00
Andy Wilkinson 9dfa40344a Upgrade to jOOQ 3.19.34
Closes gh-50531
2026-05-27 10:26:39 +01:00
Andy Wilkinson 7e16d2ca04 Upgrade to Jaxen 2.0.3
Closes gh-50530
2026-05-27 10:26:31 +01:00
Andy Wilkinson e9df8c3a07 Upgrade to Hibernate 6.6.51.Final
Closes gh-50529
2026-05-27 10:26:27 +01:00
Andy Wilkinson 12bb70253f Start building against Spring WS 4.1.4 snapshots
See gh-50528
2026-05-27 10:20:58 +01:00
Andy Wilkinson 4e1c7aaa2f Start building against Spring Session 3.5.7 snapshots
See gh-50527
2026-05-27 10:20:53 +01:00