Skip to content

Conversation

renovate-bot
Copy link
Collaborator

@renovate-bot renovate-bot commented Aug 28, 2025

This PR contains the following updates:

Package Change Age Confidence
io.quarkus 3.25.4 -> 3.26.3 age confidence
io.quarkus.platform:quarkus-bom 3.25.4 -> 3.26.3 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

quarkusio/quarkus-platform (io.quarkus.platform:quarkus-bom)

v3.26.3

Compare Source

v3.26.2

Compare Source

v3.26.1

Compare Source

v3.26.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-project-automation github-project-automation bot moved this to PRs In Progress in Basic Kanban Board Aug 28, 2025
@renovate-bot renovate-bot changed the title chore(deps): update dependency io.quarkus to v3.26.0 fix(deps): update quarkus platform and group to v3.26.0 Aug 28, 2025
@renovate-bot renovate-bot changed the title fix(deps): update quarkus platform and group to v3.26.0 fix(deps): update dependency io.quarkus.platform:quarkus-bom to v3.26.0 Aug 28, 2025
@renovate-bot renovate-bot force-pushed the renovate/quarkus-platform-and-group branch from d7bff14 to b725d37 Compare August 28, 2025 20:07
@renovate-bot renovate-bot changed the title fix(deps): update dependency io.quarkus.platform:quarkus-bom to v3.26.0 fix(deps): update quarkus platform and group to v3.26.1 Aug 29, 2025
@renovate-bot renovate-bot force-pushed the renovate/quarkus-platform-and-group branch from b725d37 to 39c4830 Compare August 29, 2025 18:29
@renovate-bot renovate-bot changed the title fix(deps): update quarkus platform and group to v3.26.1 Update Quarkus Platform and Group to v3.26.1 Aug 31, 2025
@renovate-bot renovate-bot changed the title Update Quarkus Platform and Group to v3.26.1 fix(deps): update quarkus platform and group to v3.26.1 Sep 2, 2025
@renovate-bot renovate-bot changed the title fix(deps): update quarkus platform and group to v3.26.1 Update Quarkus Platform and Group to v3.26.1 Sep 2, 2025
@renovate-bot renovate-bot force-pushed the renovate/quarkus-platform-and-group branch from 39c4830 to ce8dc1a Compare September 3, 2025 13:12
@renovate-bot renovate-bot changed the title Update Quarkus Platform and Group to v3.26.1 Update Quarkus Platform and Group Sep 3, 2025
@renovate-bot renovate-bot changed the title Update Quarkus Platform and Group Update Quarkus Platform and Group to v3.26.2 Sep 3, 2025
@renovate-bot renovate-bot force-pushed the renovate/quarkus-platform-and-group branch from ce8dc1a to e8f2961 Compare September 3, 2025 16:28
@renovate-bot renovate-bot changed the title Update Quarkus Platform and Group to v3.26.2 fix(deps): update quarkus platform and group to v3.26.2 Sep 3, 2025
@renovate-bot renovate-bot changed the title fix(deps): update quarkus platform and group to v3.26.2 Update Quarkus Platform and Group to v3.26.2 Sep 3, 2025
@renovate-bot renovate-bot force-pushed the renovate/quarkus-platform-and-group branch 2 times, most recently from 0178c03 to a24ad6f Compare September 9, 2025 13:30
@renovate-bot renovate-bot changed the title Update Quarkus Platform and Group to v3.26.2 Update Quarkus Platform and Group Sep 9, 2025
@renovate-bot renovate-bot force-pushed the renovate/quarkus-platform-and-group branch from a24ad6f to 58ce609 Compare September 9, 2025 17:36
@renovate-bot renovate-bot changed the title Update Quarkus Platform and Group Update Quarkus Platform and Group to v3.26.3 Sep 10, 2025
@renovate-bot renovate-bot force-pushed the renovate/quarkus-platform-and-group branch from 58ce609 to b10d78d Compare September 10, 2025 05:47
snazy added a commit to snazy/polaris that referenced this pull request Sep 10, 2025
The above test asserts the the log record passed to `org.jboss.logmanager.Logger#logRaw(org.jboss.logmanager.ExtLogRecord)`. For the sake of this test, both the `IcebergJsonProcessingExceptionMapper` and `IcebergExceptionMapper` have a visible-for-testing function `getLogger()` to provide a mocked logger. `getLogger()` however is used for "all the logging", which makes the behavior `verify(JBOSS_LOGGER).logRaw(argThat(...))` "interesting" - the test fails with apache#2461 although no related dependencies have changed in that PR.

But eventually the test failure's caused by using `getLogger()` for all logging, which may provide the _wrong_ log record and cause the test to fail.

This change renames the `getLogger()` functions to make their special meaning clear, and adds some clarifying comments in the code.

Also adding some more test cases for the various exception mapper code paths.
snazy added a commit to snazy/polaris that referenced this pull request Sep 10, 2025
The above test asserts the the log record passed to `org.jboss.logmanager.Logger#logRaw(org.jboss.logmanager.ExtLogRecord)`. For the sake of this test, both the `IcebergJsonProcessingExceptionMapper` and `IcebergExceptionMapper` have a visible-for-testing function `getLogger()` to provide a mocked logger. `getLogger()` however is used for "all the logging", which makes the behavior `verify(JBOSS_LOGGER).logRaw(argThat(...))` "interesting" - the test fails with apache#2461 although no related dependencies have changed in that PR.

But eventually the test failure's caused by using `getLogger()` for all logging, which may provide the _wrong_ log record and cause the test to fail.

This change renames the `getLogger()` functions to make their special meaning clear, and adds some clarifying comments in the code.

Also adding some more test cases for the various exception mapper code paths.
snazy added a commit that referenced this pull request Sep 11, 2025
…2531)

The above test asserts the the log record passed to `org.jboss.logmanager.Logger#logRaw(org.jboss.logmanager.ExtLogRecord)`. For the sake of this test, both the `IcebergJsonProcessingExceptionMapper` and `IcebergExceptionMapper` have a visible-for-testing function `getLogger()` to provide a mocked logger. `getLogger()` however is used for "all the logging", which makes the behavior `verify(JBOSS_LOGGER).logRaw(argThat(...))` "interesting" - the test fails with #2461 although no related dependencies have changed in that PR.

But eventually the test failure's caused by using `getLogger()` for all logging, which may provide the _wrong_ log record and cause the test to fail.

This change renames the `getLogger()` functions to make their special meaning clear, and adds some clarifying comments in the code.

Also adding some more test cases for the various exception mapper code paths.

Co-authored-by: Alexandre Dutra <[email protected]>
@snazy snazy force-pushed the renovate/quarkus-platform-and-group branch from b10d78d to c973b61 Compare September 11, 2025 10:28
@github-project-automation github-project-automation bot moved this from PRs In Progress to Ready to merge in Basic Kanban Board Sep 11, 2025
@snazy snazy merged commit 81035e0 into apache:main Sep 11, 2025
12 checks passed
@github-project-automation github-project-automation bot moved this from Ready to merge to Done in Basic Kanban Board Sep 11, 2025
@renovate-bot renovate-bot deleted the renovate/quarkus-platform-and-group branch September 12, 2025 03:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants