Skip to content

chore(deps): bump undici from 7.29.0 to 8.10.0 - #712

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/undici-8.9.0
Open

chore(deps): bump undici from 7.29.0 to 8.10.0#712
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/undici-8.9.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 6, 2026

Copy link
Copy Markdown

Bumps undici from 7.29.0 to 8.10.0.

Release notes

Sourced from undici's releases.

v8.10.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v8.9.0...v8.10.0

v8.9.0

⚠️ Security fixes

High severity

  • GHSA-4cwx-7wf7-3272: malformed qualified private Cache-Control directives could cause cross-user information disclosure in shared caches or a parse-time crash. The cache parser now treats empty qualified directives conservatively and safely handles mixed qualified and unqualified directives. Fixed by 4fe5bc5f with regression coverage in 9f09b49a.

Medium severity

  • GHSA-m8rv-5g2x-5cg5: a malicious type property on a duck-typed blob-like HTTP/1.1 request body could inject CRLF sequences into the generated content-type header. Undici now coerces and validates the value before adding it to the request. Fixed by 7d3cf924.
  • GHSA-jr45-8vmc-qm54: optional whitespace around = in qualified no-cache and private directives could bypass shared-cache restrictions and disclose authenticated data across users. Cache-Control parsing now normalizes these forms and applies conservative cache decisions. Fixed by c601fff1.
  • GHSA-8xcm-r25x-g524: the retry interceptor could expose a stale Content-Length after resuming a partial response, potentially causing downstream response desynchronization, hangs, or corruption. Undici now rejects partial responses whose Content-Length is inconsistent with Content-Range. Fixed by e11a68ed, with corrected fixtures in 2b3f7493.
  • GHSA-v3r7-h72x-cjcm: unsanitized domain and unparsed values passed to setCookie() could inject cookie attributes. Undici now validates cookie domains, paths, and unparsed attributes more strictly. Fixed by 10d93fc3.

Additional hardening

... (truncated)

Commits
  • c8d80e6 Bumped v8.10.0 (#5644)
  • 66923b4 fix: preserve DNS origin hostname on sockets (#5577)
  • 3926499 fix: retry refused HTTP/2 streams (#5598)
  • 73d6e9e fix(h2): detach upgrade close handler after GOAWAY (#5641)
  • b111adb fix(mock): emit request body lifecycle hooks (#5367)
  • ae4a3e3 build(deps): bump actions/setup-node from 6.4.0 to 7.0.0 (#5636)
  • ec3fbf1 build(deps): bump github/codeql-action/init from 4.36.2 to 4.37.3 (#5634)
  • 2151720 build(deps): bump ossf/scorecard-action from 2.4.3 to 2.4.4 (#5633)
  • b96a116 fix(interceptors): allow interceptors without opts.origin (#5628)
  • a18ef2d fix(mock): non-string path matchers under ignoreTrailingSlash, and DataView r...
  • Additional commits viewable in compare view

Note

Bump undici from v7.29.0 to v8.10.0 in ai and coding-agent packages

Updates the undici dependency range from ^7.29.0 to ^8.10.0 in packages/ai/package.json and packages/coding-agent/package.json. Risk: undici v8 is a major version bump and may include breaking API changes.

Macroscope summarized 8382c40.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 6, 2026

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 158f2ce. Configure here.

Comment thread packages/coding-agent/package.json Outdated
"strip-ansi": "^7.1.0",
"typebox": "^1.1.24",
"undici": "^7.28.0",
"undici": "^8.9.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Declared Node engines below undici v8 minimum

High Severity

undici@8 requires Node >=22.19.0, but packages/coding-agent still declares >=22.8.0, packages/ai declares >=20.0.0, and the startup guard in node-version-check.ts accepts 22.8.0. Users on Node 20.x or 22.8–22.18 pass the guard and install with EBADENGINE warnings, then run an unsupported undici build.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 158f2ce. Configure here.

snimu added a commit that referenced this pull request Aug 11, 2026
Adds the reviewed bumps from #571, #599, #713, and #714 to the
consolidated update:

- brace-expansion 5.0.7 -> 5.0.9 (transitive, lockfile only)
- ip-address 10.2.0 -> 10.4.0 (transitive, lockfile only)
- typebox ^1.1.24 -> ^1.3.9 in packages/agent, packages/ai, and
  packages/coding-agent (lockfile resolves 1.3.10, released 2026-08-02,
  past the seven-day minimum release age)
- typescript ^5.9.2/^5.7.3 -> ^7.0.2 (dev-only; every build and check in
  this repo runs through tsgo, nothing invokes tsc)

undici 8.9.0 from #712 is intentionally NOT included: undici 8 requires
Node >= 22.19.0 while this package supports >= 22.8.0, so the major bump
would silently drop supported Node versions. It stays on 7.29.0.
@snimu

snimu commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Not folding this one into #632: undici 8 requires Node >= 22.19.0 (its engines field), while this package declares support for Node >= 22.8.0 — the major bump would silently drop supported Node versions. #632 keeps undici at 7.29.0. This PR should stay open until the repo's Node floor moves to >= 22.19.0 (or be closed if that is not planned).

sethkarten pushed a commit that referenced this pull request Aug 11, 2026
* chore(deps): consolidate dependency updates

* chore(deps): fold in remaining eligible Dependabot updates

Adds the reviewed bumps from #571, #599, #713, and #714 to the
consolidated update:

- brace-expansion 5.0.7 -> 5.0.9 (transitive, lockfile only)
- ip-address 10.2.0 -> 10.4.0 (transitive, lockfile only)
- typebox ^1.1.24 -> ^1.3.9 in packages/agent, packages/ai, and
  packages/coding-agent (lockfile resolves 1.3.10, released 2026-08-02,
  past the seven-day minimum release age)
- typescript ^5.9.2/^5.7.3 -> ^7.0.2 (dev-only; every build and check in
  this repo runs through tsgo, nothing invokes tsc)

undici 8.9.0 from #712 is intentionally NOT included: undici 8 requires
Node >= 22.19.0 while this package supports >= 22.8.0, so the major bump
would silently drop supported Node versions. It stays on 7.29.0.
Bumps [undici](https://github.com/nodejs/undici) from 7.29.0 to 8.10.0.
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.29.0...v8.10.0)

---
updated-dependencies:
- dependency-name: undici
  dependency-version: 8.9.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump undici from 7.28.0 to 8.9.0 chore(deps): bump undici from 7.29.0 to 8.10.0 Aug 11, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/undici-8.9.0 branch from 158f2ce to 8382c40 Compare August 11, 2026 18:00
0oAstro pushed a commit to 0oAstro/fulcrum that referenced this pull request Aug 11, 2026
* chore(deps): consolidate dependency updates

* chore(deps): fold in remaining eligible Dependabot updates

Adds the reviewed bumps from PrimeIntellect-ai#571, PrimeIntellect-ai#599, PrimeIntellect-ai#713, and PrimeIntellect-ai#714 to the
consolidated update:

- brace-expansion 5.0.7 -> 5.0.9 (transitive, lockfile only)
- ip-address 10.2.0 -> 10.4.0 (transitive, lockfile only)
- typebox ^1.1.24 -> ^1.3.9 in packages/agent, packages/ai, and
  packages/coding-agent (lockfile resolves 1.3.10, released 2026-08-02,
  past the seven-day minimum release age)
- typescript ^5.9.2/^5.7.3 -> ^7.0.2 (dev-only; every build and check in
  this repo runs through tsgo, nothing invokes tsc)

undici 8.9.0 from PrimeIntellect-ai#712 is intentionally NOT included: undici 8 requires
Node >= 22.19.0 while this package supports >= 22.8.0, so the major bump
would silently drop supported Node versions. It stays on 7.29.0.
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.

1 participant