Bump undici from 7.18.2 to 7.24.1 in the npm_and_yarn group across 1 directory#46
Merged
github-actions[bot] merged 1 commit intomainfrom Mar 13, 2026
Conversation
Bumps the npm_and_yarn group with 1 update in the / directory: [undici](https://github.com/nodejs/undici). Updates `undici` from 7.18.2 to 7.24.1 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](nodejs/undici@v7.18.2...v7.24.1) --- updated-dependencies: - dependency-name: undici dependency-version: 7.24.1 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
|
🤖 Hi @dependabot[bot], I've received your request, and I'm working on it now! You can track my progress in the logs for more details. |
Contributor
|
🤖 I'm sorry @dependabot[bot], but I was unable to process your request. Please see the logs for more details. |
There was a problem hiding this comment.
No issues found across 2 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant App as Node.js Application
participant Undici as Undici (v7.24.1)
participant Server as Remote Server / API
Note over App,Server: HTTP Request Flow (Security Hardened)
App->>Undici: fetch() / request()
rect rgb(20, 30, 50)
Note right of Undici: NEW: Enhanced Security Checks
Undici->>Undici: NEW: Validate 'upgrade' header (CRLF Injection fix)
Undici->>Undici: NEW: Reject duplicate Content-Length/Host (Smuggling fix)
end
Undici->>Server: HTTP Request
Server-->>Undici: HTTP Response
opt Deduplication Interceptor Active
Undici->>Undici: NEW: Buffering with bounded memory (DoS fix)
end
Undici-->>App: Response Data
Note over App,Server: WebSocket Connection Flow (Security Hardened)
App->>Undici: websocket()
Undici->>Server: Handshake
Server-->>Undici: 101 Switching Protocols
loop Message Exchange
Server->>Undici: Data Frames
rect rgb(20, 30, 50)
Note right of Undici: NEW: Frame Validation
Undici->>Undici: NEW: Validate 64-bit frame length (Overflow fix)
Undici->>Undici: NEW: Validate server_max_window_bits
Undici->>Undici: NEW: Apply maxDecompressedMessageSize (DoS fix)
end
Undici-->>App: OnMessage Event
end
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.
Bumps the npm_and_yarn group with 1 update in the / directory: undici.
Updates
undicifrom 7.18.2 to 7.24.1Release notes
Sourced from undici's releases.
... (truncated)
Commits
23e3cd3Bumped v7.24.13aedaa8remove PLAN.md0d7ec33fix: proto pollution (#4885)07a3906Bumped v7.24.0 (#4887)74495c6fix: reject duplicate content-length and host headers84235c6Fix websocket 64-bit length overflow77594f9fix: validate upgrade header to prevent CRLF injectioncb79c57fix: validate server_max_window_bits range in permessage-deflate4147ce2Merge commit '2ee00cb3'2ee00cbfix(websocket): add maxDecompressedMessageSize limit for permessage-deflateDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.
Summary by cubic
Upgrade
undicifrom 7.18.2 to 7.24.1 to address multiple security advisories and harden HTTP/WebSocket behavior. No application code changes.undici7.18.2 → 7.24.1 (fixes request smuggling, WebSocket 64-bit length crash, permessage-deflate memory limits, CRLF injection, and proto pollution).package-lock.jsonandyarn.lock.Written for commit c700411. Summary will update on new commits.