Bump ring-jetty-adapter to 1.15.4 (Jetty 12.1.8) to address CVE-2026-2332#9
Merged
weavejester merged 1 commit intoJun 11, 2026
Conversation
Contributor
|
Thanks! Can you change the commit message to: This makes the commit message more searchable (as other commits use "update" rather than "bump"), and keeps it 50 characters or under. |
5c44827 to
c964e6d
Compare
Author
|
Done. |
Contributor
|
Thanks! I notice that Cursor has added itself as a co-author, which doesn't seem correct for a commit that's just changing a version number of a dependency. |
c964e6d to
bdb4d8e
Compare
Author
|
Thanks for spotting this! The Co-authored-by: Cursor trailer was added automatically by the tooling and isn't appropriate for a dependency version update. I've amended the commit to remove it and force-pushed the branch. |
Contributor
|
Merged, thanks! I'll cut a release soon. |
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.
Summary
Bumps
ring/ring-jetty-adapterfrom 1.15.3 to 1.15.4, which upgrades thetransitive Eclipse Jetty dependency from 12.1.0 to 12.1.8 — a version that
includes the fix for CVE-2026-2332.
Why
CVE-2026-2332 is an HTTP request smuggling vulnerability in Jetty's HTTP/1.1
parser, caused by improper parsing of quoted-string chunk extensions in chunked
transfer encoding (CWE-444). For the 12.1.x line, versions up to and including
12.1.6 are affected, and it is fixed in 12.1.7 and later.
server.http.jettycurrently depends onring/ring-jetty-adapter 1.15.3, whichpulls in Jetty 12.1.0 — within the affected range.
ring/ring-jetty-adapter 1.15.4depends on Jetty 12.1.8, which includes the fix.Today, downstream Duct applications have to override Jetty in their own
dependency manifests (e.g.
:override-depsindeps.edn) to pick up the fixedparser. Bumping the adapter here lets every consumer of
org.duct-framework/server.http.jettyget the fixed Jetty by default, withoutper-project overrides.
Changes
deps.edn:ring/ring-jetty-adapter1.15.3 → 1.15.4project.clj: same version bumpTesting
lein test→
Ran 3 tests containing 22 assertions. 0 failures, 0 errors.(this repo has no
:testalias indeps.edn, so uselein test;clj -M:testdoes not work here)org.eclipse.jetty*) at 12.1.8(
lein deps :tree | grep -i jetty)module.web+server.http.jettyboots and serves basicHTTP requests on Jetty 12.1.8
→ Verified with a minimal
org.duct-framework/mainapp(
module.web 0.13.4+ this branch'sserver.http.jettyvia:local/root).clojure -M:duct --mainboots, andcurl -i http://127.0.0.1:3000/returnsHTTP/1.1 200 OKwithServer: Jetty(12.1.8).References