Skip to content

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
dependabot/npm_and_yarn/npm_and_yarn-1d4d4816e9
Mar 13, 2026
Merged

Bump undici from 7.18.2 to 7.24.1 in the npm_and_yarn group across 1 directory#46
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm_and_yarn-1d4d4816e9

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2026

Bumps the npm_and_yarn group with 1 update in the / directory: undici.

Updates undici from 7.18.2 to 7.24.1

Release notes

Sourced from undici's releases.

v7.24.1

What's Changed

Full Changelog: nodejs/undici@v7.24.0...v7.24.1

v7.24.0

Undici v7.24.0 Security Release Notes

This release addresses multiple security vulnerabilities in Undici.

Upgrade guidance

All users on v7 should upgrade to v7.24.0 or later.

Fixed advisories

Affected and patched ranges

References

... (truncated)

Commits
  • 23e3cd3 Bumped v7.24.1
  • 3aedaa8 remove PLAN.md
  • 0d7ec33 fix: proto pollution (#4885)
  • 07a3906 Bumped v7.24.0 (#4887)
  • 74495c6 fix: reject duplicate content-length and host headers
  • 84235c6 Fix websocket 64-bit length overflow
  • 77594f9 fix: validate upgrade header to prevent CRLF injection
  • cb79c57 fix: validate server_max_window_bits range in permessage-deflate
  • 4147ce2 Merge commit '2ee00cb3'
  • 2ee00cb fix(websocket): add maxDecompressedMessageSize limit for permessage-deflate
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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 conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Summary by cubic

Upgrade undici from 7.18.2 to 7.24.1 to address multiple security advisories and harden HTTP/WebSocket behavior. No application code changes.

  • Dependencies
    • Bump undici 7.18.2 → 7.24.1 (fixes request smuggling, WebSocket 64-bit length crash, permessage-deflate memory limits, CRLF injection, and proto pollution).
    • Update package-lock.json and yarn.lock.

Written for commit c700411. Summary will update on new commits.

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>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 13, 2026
@github-actions
Copy link
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.

@github-actions
Copy link
Contributor

🤖 I'm sorry @dependabot[bot], but I was unable to process your request. Please see the logs for more details.

@github-actions github-actions bot merged commit 5b34df7 into main Mar 13, 2026
7 of 9 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm_and_yarn-1d4d4816e9 branch March 13, 2026 23:07
Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants