Commit Graph
59156 Commits
Author SHA1 Message Date
Phillip Webb dad1ca5e95 Merge branch '4.0.x' 2026-01-06 12:54:30 -08:00
Phillip Webb a4f35688aa Merge branch '3.5.x' into 4.0.x 2026-01-06 12:54:11 -08:00
Phillip Webb 92263e7e35 Add checkstyle rule for AssertJ Assertions import
Add a rule to ensure we consistently use `assertThat` rather than
`Assertions.assertThat`.

See gh-48630
2026-01-06 12:34:12 -08:00
Andy Wilkinson 56928bbe38 Upgrade to jOOQ 3.20 and require Java 21 to use it
Closes gh-48619
2026-01-06 13:03:11 +00:00
Andy Wilkinson a749b2fd58 Allow projects to configure their system requirements
Closes gh-48684
2026-01-06 12:31:23 +00:00
Stéphane Nicoll 82cb083869 Merge branch '4.0.x'
Closes gh-48683
2026-01-06 12:36:06 +01:00
Stéphane Nicoll 2e2981bfe4 Merge branch '3.5.x' into 4.0.x
Closes gh-48682
2026-01-06 12:35:34 +01:00
Stéphane Nicoll c10cf592ae Merge pull request #48630 from izeye
* pr/48630:
  Polish "Use static imports for Assertions.assertThat() consistently"
  Use static imports for Assertions.assertThat() consistently

Closes gh-48630
2026-01-06 12:27:12 +01:00
Stéphane Nicoll 918325aecc Polish "Use static imports for Assertions.assertThat() consistently"
See gh-48630
2026-01-06 12:23:07 +01:00
Johnny Lim 88f51fafee Use static imports for Assertions.assertThat() consistently
See gh-48630

Signed-off-by: Johnny Lim <izeye@naver.com>
2026-01-06 12:22:25 +01:00
Phillip Webb 6c9d3f92bc Merge pull request #48680 from quaff
* pr/48680:
  Fix typo

Closes gh-48680
2026-01-05 21:43:26 -08:00
Yanming Zhou d9528fdb0b Fix typo
See gh-48680

Signed-off-by: Yanming Zhou <zhouyanming@gmail.com>
2026-01-05 21:43:06 -08:00
Phillip Webb 21cf377f7e Add 'WAR_SOURCE_DIRECTORY' environment variable support
Add an escape hatch for users that deviate from the standard
`src/main/webbapp` directory structure.

Fixes gh-23829
2026-01-05 16:44:45 -08:00
Phillip Webb a6e4a93cda Merge branch '4.0.x'
Closes gh-48679
2026-01-05 14:34:20 -08:00
Phillip Webb eef6a6a5e2 Merge branch '3.5.x' into 4.0.x
Closes gh-48678
2026-01-05 14:33:39 -08:00
Phillip Webb 54d7f79501 Fix timestamps set on jars created by the extract command
Update `ExtractCommand` so that both the generated jar and the
contained manifest entry have timestamps copied from the original.

Fixes gh-48664
2026-01-05 14:11:54 -08:00
Phillip Webb 5b48eb30cc Polish 2026-01-05 14:11:51 -08:00
Stéphane Nicoll 6939fae297 Merge branch '4.0.x'
Closes gh-48671
2026-01-04 17:16:05 +01:00
Stéphane Nicoll 6b019c4ab2 Merge branch '3.5.x' into 4.0.x
Closes gh-48670
2026-01-04 17:15:53 +01:00
Stéphane Nicoll 2164b4ec7e Merge pull request #48668 from ngocnhan-tran1996
* pr/48668:
  Fix package of MyConnectorHttpConfiguration.kt

Closes gh-48668
2026-01-04 17:14:19 +01:00
Tran Ngoc Nhan f8d3d63f38 Fix package of MyConnectorHttpConfiguration.kt
See gh-48668

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
2026-01-04 17:12:01 +01:00
Stéphane Nicoll 4e7055c945 Merge branch '4.0.x' 2026-01-02 14:36:15 +01:00
Stéphane Nicoll 55d7550df2 Merge branch '3.5.x' into 4.0.x
Closes gh-48662
2026-01-02 14:36:05 +01:00
Stéphane Nicoll 54603fee87 Revisit condition to skip AOT processing of tests
This commit stop skipping AOT processing of tests when tests execution
is skipped. With this commit, only the presence of maven.test.skip makes
the processing to skip.

This harmonize the behavior with other standard plugins that do react
to the property. For instance, the compiler plugin will not compile the
tests if that property is set, but would do so if skipTests was
provided.

Closes gh-48661
2026-01-02 14:22:22 +01:00
Stéphane Nicoll 3e8df5d901 Merge branch '4.0.x'
Closes gh-48660
2026-01-02 14:03:07 +01:00
Stéphane Nicoll cb1596e8c8 Merge branch '3.5.x' into 4.0.x
Closes gh-48659
2026-01-02 14:02:59 +01:00
Stéphane Nicoll 196d665e63 Clarify scope of HazelcastConfigCustomizer
Closes gh-48634
2026-01-02 14:00:02 +01:00
Stéphane Nicoll 4c14695322 Merge branch '4.0.x' 2026-01-02 10:48:03 +01:00
Stéphane Nicoll 57ae8a5778 Merge branch '3.5.x' into 4.0.x 2026-01-02 10:47:53 +01:00
Stéphane Nicoll eedc47a15b Remove unused code 2026-01-02 10:34:59 +01:00
Stéphane Nicoll 754a3aa2ab Merge branch '4.0.x'
Closes gh-48654
2025-12-31 17:13:18 +01:00
Stéphane Nicoll 1f4a8dff98 Restore RANDOM_PORT handing in tests with a separate management port
This commit fixes a regression where RANDOM_PORT was no longer honored
if a defined management port is set. Due to the modularization efforts,
the code has moved from an EnvironmentPostProcessor to an
ApplicationListener. Unfortunately, the listener is registered too
late to handle the event it is listening to. While the event type could
have been changed, the listener was added on the ApplicationContext
which are not honored before the ApplicationContext is in a state to be
used.

The contract of ContextCustomizerFactory is already giving us everything
we need. While the environment is post-processed later than we would
like, it is still post-processed before the refresh state so that the
additional property is honored.

This commit also adds an integration test to cover this scenario.

Closes gh-48653
2025-12-31 17:10:39 +01:00
Stéphane Nicoll 6c91bf5b02 Merge branch '4.0.x'
Closes gh-48651
2025-12-31 10:50:46 +01:00
Stéphane Nicoll 47c24fcb93 Merge branch '3.5.x' into 4.0.x
Closes gh-48650
2025-12-31 10:50:38 +01:00
Stéphane Nicoll 13a7f5613e Merge pull request #48649 from GaoSSR
* pr/48649:
  Polish "Fix zero-length byte buffer in InspectedContent"
  Fix zero-length byte buffer in InspectedContent

Closes gh-48649
2025-12-31 10:50:33 +01:00
Stéphane Nicoll c5a50cb7f6 Polish "Fix zero-length byte buffer in InspectedContent"
See gh-48649
2025-12-31 10:45:17 +01:00
高春晖 ba94cc48f2 Fix zero-length byte buffer in InspectedContent
See gh-48649

Signed-off-by: 高春晖 <18220699480@163.com>
2025-12-31 10:39:38 +01:00
Stéphane Nicoll 12652a313e Deprecate Derby support since Apache Derby is retired
Closes gh-48567
2025-12-30 17:36:53 +01:00
Stéphane Nicoll 4d402513d7 Merge branch '4.0.x'
Closes gh-48647
2025-12-30 17:04:50 +01:00
Stéphane Nicoll 03118a068b Merge branch '3.5.x' into 4.0.x
Closes gh-48646
2025-12-30 17:04:41 +01:00
Stéphane Nicoll 1a4ad9595e Fix Artifactory secrets for commercial builds
Closes gh-48645
2025-12-30 17:04:18 +01:00
Stéphane Nicoll ca4a11c672 Merge branch '4.0.x'
Closes gh-48644
2025-12-30 13:25:59 +01:00
Stéphane Nicoll 2ef60a10da Clarify how to include devtools using Maven
Closes gh-48641
2025-12-30 13:25:14 +01:00
Stéphane Nicoll 96c9295c7c Merge branch '4.0.x'
Closes gh-48643
2025-12-30 10:42:48 +01:00
Stéphane Nicoll 5c2b908788 Merge branch '3.5.x' into 4.0.x
Closes gh-48642
2025-12-30 10:42:38 +01:00
Stéphane Nicoll a3d1e01fa1 Merge pull request #48640 from GaoSSR
* pr/48640:
  Fix method naming to follow Java conventions

Closes gh-48640
2025-12-30 10:42:33 +01:00
高春晖 2075a2cfdb Fix method naming to follow Java conventions
See gh-48640

Signed-off-by: 高春晖 <18220699480@163.com>
2025-12-30 10:40:27 +01:00
Stéphane Nicoll 927b2eefdc Merge branch '4.0.x'
Closes gh-48637
2025-12-29 15:04:15 +01:00
Stéphane Nicoll d555a11282 Fix nullMarked settings when ignoredPackages is used
Closes gh-48636
2025-12-29 15:03:18 +01:00
Stéphane Nicoll 5caaf1ef09 Merge branch '4.0.x' 2025-12-29 14:42:38 +01:00