CVE-2026-43866: bump Apache Camel to 4.14.8 (activemq-6.0)#251
Open
jgallimore wants to merge 1 commit into
Open
CVE-2026-43866: bump Apache Camel to 4.14.8 (activemq-6.0)#251jgallimore wants to merge 1 commit into
jgallimore wants to merge 1 commit into
Conversation
Bumps the camel-version property (drives camel-bom) from 4.8.6 to 4.14.8, which contains the CAMEL-23373 objectMessageEnabled=false fix for the camel-jms ObjectMessage/DefaultExchangeHolder deserialization sink. NOTE: 4.8.6 -> 4.14.8 crosses ~6 Camel minor versions; needs CI validation for API compatibility. See tomitribe/cve#335 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix for CVE-2026-43866 — Apache Camel camel-jms ObjectMessage/DefaultExchangeHolder deserialization (CAMEL-23373).
Tracking issue: https://github.com/tomitribe/cve/issues/335
Reachability audit: https://github.com/tomitribe/cve/blob/main/docs/security-audits/2026/CVE-2026-43866.md
Changes
<camel-version>(root pom property driving the camel-bom import)4.8.6→4.14.8. Moves the whole Camel family incl. camel-jms.This is a larger jump than the other 43866 PRs: 4.8.6 → 4.14.8 crosses roughly 6 Camel minor versions (4.8 → 4.14), versus the 6.1/6.2 PRs which were single-patch bumps within 4.14.x. It is not a major-version bump (major stays 4) so it is a legitimate dependency bump, but Camel minor releases can carry API/behavioural changes. A green CI run is required before merge. Jenkins was not triggered in this run (VPN/Jenkins unavailable) — trigger the stable + manual-pr-trigger jobs before relying on this.
Rationale
The audit found CVE-2026-43866 REACHABLE (conditional) on 6.0: camel-jms 4.8.6 ships the un-gated ObjectMessage deserialization sink, and the shipped
examples/conf/camel.xmlJMS-consumer route reaches it when enabled. 4.14.8 introduces theobjectMessageEnabled=falsedefault that closes it.How the dep was found
camel-jms is pulled via the
camel-bomimport in the root pom, version-governed by the<camel-version>property. Single-line property bump moves it.Verification