Skip to content

Update All (major) - #10

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-all
Open

renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-all

Conversation

@renovate

@renovate renovate Bot commented Nov 16, 2023

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@​prisma/extension-accelerate ^0.6.2^3.0.0 age confidence
@types/eslint (source) 8.44.39.6.1 age confidence
prisma (source) ^5.3.1^7.0.0 age confidence
typescript (source) 5.2.27.0.2 age confidence
undici (source) ^5.25.4^8.0.0 age confidence
vite (source) 4.4.118.3.0 age confidence
vite-tsconfig-paths 4.2.16.1.1 age confidence
wrangler (source) ^3.0.0^4.0.0 age confidence
zod (source) ^3.22.4^4.0.0 age confidence

Release Notes

microsoft/TypeScript (typescript)

v7.0.2

Compare Source

v6.0.3: TypeScript 6.0.3

Compare Source

For release notes, check out the release announcement blog post.

Downloads are available on:

v6.0.2: TypeScript 6.0

Compare Source

For release notes, check out the release announcement blog post.

Downloads are available on:

v5.9.3: TypeScript 5.9.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.9.2: TypeScript 5.9

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.8.3: TypeScript 5.8.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:

v5.8.2: TypeScript 5.8

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.

Downloads are available on npm

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.6.3: TypeScript 5.6.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.6.2: TypeScript 5.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.3: TypeScript 5.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.2: TypeScript 5.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.4: TypeScript 5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.3: TypeScript 5.4.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.2: TypeScript 5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.3.2: TypeScript 5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

nodejs/undici (undici)

v8.10.2

Compare Source

⚠️ Security fixes
High severity
  • GHSA-vp8m-p9jh-q5pm: cache and deduplication interceptors could use caller-controlled request metadata instead of the authoritative dispatcher origin, enabling cross-origin cache poisoning and data disclosure. Undici now derives interceptor identities from the dispatcher origin and bypasses origin-dependent interceptors when no authoritative origin exists. Fixed by caf6194d.
  • GHSA-w293-vg96-wgc3: BalancedPool could drop function-valued connection options while cloning its configuration, including custom TLS certificate validation callbacks. Undici now preserves connect and legacy tls options when creating upstreams. Fixed by 8f5868fb.
  • GHSA-rfgv-xxqx-mfg5: a WebSocket server could select a subprotocol when none was requested, causing an uncaught TypeError that could terminate the process. Undici now rejects the handshake with protocol error 1002. Fixed by 66e12816.
Medium severity
  • GHSA-3wwx-pv8p-q78v: a malformed permessage-deflate payload exceeding the configured decompression limit could emit an unhandled zlib error and terminate the process. Undici now destroys the inflater after reaching the limit. Fixed by 4411a238.
  • GHSA-rx4f-c7p8-82vq: an unclean WebSocketStream close could create an unobserved rejected promise when its writable stream was locked, potentially terminating the process. Undici now propagates the failure through the retained writable stream controller. Fixed by 662d0ea6.
  • GHSA-2jfj-6hjv-fm6j: shared caches could store and replay responses containing Set-Cookie, disclosing one user's cookies to another caller. Undici now excludes these responses from shared caches, including existing entries and revalidation paths. Fixed by cb75bbb3.
  • GHSA-3xpg-4rpp-hhhm: the decompression interceptor did not bound decoded output, allowing compressed responses to consume excessive memory. Undici now limits every decompression stage to 64 MiB by default and supports a configurable maxSize. Fixed by 7aac7f12.
  • GHSA-pmjh-fq2x-6v4x: a terminal retry failure after response headers were exposed could orphan the original response body, causing consumers to hang indefinitely. Undici now propagates the terminal error to the exposed body. Fixed by e905b5b8.
Low severity
  • GHSA-8436-99hf-9mmv: cache interceptors could store and replay responses to unsafe HTTP methods such as POST or DELETE. Undici now restricts cache reads and writes to safe methods while preserving invalidation by successful unsafe requests. Fixed by 2be07bf9.
  • GHSA-2gqq-gqf2-x968: the dump interceptor could treat an oversized chunked response as successfully truncated when no Content-Length was present. Undici now enforces maxSize against received bytes and aborts oversized responses. Fixed by 6d583124.
  • GHSA-r53p-7pc4-xj5r: the retry interceptor could concatenate a resumed response with inconsistent framing into downstream output, enabling response splitting or corruption. Undici now validates Content-Range against the original response framing before resuming. Fixed by 0160a719.
What's Changed
New Contributors

Full Changelog: nodejs/undici@v8.10.1...v8.10.2

v8.10.1

Compare Source

v8.10.0

Compare Source

What's Changed

New Contributors

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

v8.9.0

Compare Source

What's Changed

New Contributors

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

v8.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: nodejs/undici@v8.7.0...v8.8.0

v8.7.0

Compare Source

What's Changed
New Contributors

Full Changelog: nodejs/undici@v8.6.0...v8.7.0

v8.6.0

Compare Source

v8.5.0

Compare Source

⚠️ Security Release

This release line addresses 8 security advisories. Most are fixed in
v8.5.0; the SOCKS5 pool-reuse issue was fixed earlier in v8.2.0.

Action required: Upgrade to undici 8.5.0 or later.

npm install undici@^8.5.0

Summary

Advisory CVE Severity (CVSS) Fixed in Fix commit
GHSA-vxpw-j846-p89q CVE-2026-12151 High (7.5) 8.5.0 32dbf0b3
GHSA-38rv-x7px-6hhq CVE-2026-9675 High (7.5) 8.5.0 b4c287b3
GHSA-vmh5-mc38-953g CVE-2026-9697 High (7.4) 8.5.0 42d49559
GHSA-hm92-r4w5-c3mj CVE-2026-6734 High (7.5) 8.2.0 a516f870
GHSA-pr7r-676h-xcf6 CVE-2026-9678 Moderate (5.9) 8.5.0 cb105d7c
GHSA-p88m-4jfj-68fv CVE-2026-9679 Moderate (5.9) 8.5.0 5655ea43
GHSA-g8m3-5g58-fq7m CVE-2026-11525 Low (3.7) 8.5.0 5655ea43
GHSA-35p6-xmwp-9g52 CVE-2026-6733 Low (3.7) 8.5.0 6ea54ef8

High severity

WebSocket DoS via fragment count bypass — CVE-2026-12151

GHSA-vxpw-j846-p89q · CWE-400, CWE-770
Fix: 32dbf0b3 websocket: limit the number of fragments in a message (also c5ed7875 handle empty fragments and stream limits)

A malicious WebSocket server can stream a large number of small or empty
continuation frames. Undici enforced a limit on cumulative payload size but did
not limit the number of fragments per message, leading to unbounded memory
growth and denial of service.

  • Affected: applications using new WebSocket(...) or WebSocketStream
    against untrusted endpoints.
  • Workaround: none — upgrade is required.
WebSocket DoS via cumulative fragment bypass — CVE-2026-9675

**[GHSA-38rv-x7px-6hhq](https://redirect.github.com/nodejs/undici/security/advisories/GHSA-38rv-x7px-6hhq

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Nov 16, 2023

Copy link
Copy Markdown

Deploying transcript with  Cloudflare Pages  Cloudflare Pages

Latest commit: cbe41d7
Status:🚫  Build failed.

View logs

@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from a6018f6 to b0823f2 Compare November 21, 2023 15:49
@renovate
renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from a17dfcd to 76e850d Compare December 4, 2023 11:33
@renovate renovate Bot changed the title Update dependency vite to v5 Update All (major) Dec 5, 2023
@renovate
renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from 73b38d3 to bacb2e5 Compare December 8, 2023 13:26
@renovate
renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from 5ca1df3 to 1bced79 Compare December 15, 2023 16:46
@renovate
renovate Bot force-pushed the renovate/major-all branch from 1bced79 to ed9e2ce Compare January 5, 2024 09:30
@renovate
renovate Bot force-pushed the renovate/major-all branch from ed9e2ce to 7260331 Compare January 19, 2024 17:25
@renovate
renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from 180a578 to b05e8f1 Compare February 14, 2024 18:18
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from d4d2ace to 1c94144 Compare February 21, 2024 13:47
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 742186d to 33c6572 Compare March 4, 2024 20:16
@renovate
renovate Bot force-pushed the renovate/major-all branch from 33c6572 to 1faf494 Compare March 11, 2024 15:49
@renovate
renovate Bot force-pushed the renovate/major-all branch 6 times, most recently from 720dcff to 317760e Compare March 24, 2024 14:20
@renovate
renovate Bot force-pushed the renovate/major-all branch from 317760e to 08eef04 Compare March 29, 2024 09:02
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from ec3559c to 576c16b Compare July 3, 2024 07:15
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 34f102d to 2be2ec1 Compare July 22, 2024 17:56
@renovate
renovate Bot force-pushed the renovate/major-all branch from 2be2ec1 to 349ebe1 Compare July 25, 2024 09:43
@renovate
renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from 6746be1 to 17fcb85 Compare August 8, 2024 23:25
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 5d247cb to edfb209 Compare August 20, 2024 17:42
@renovate
renovate Bot force-pushed the renovate/major-all branch from edfb209 to ab0cdfd Compare August 26, 2024 10:33
@renovate
renovate Bot force-pushed the renovate/major-all branch from ab0cdfd to df4bf25 Compare September 3, 2024 18:53
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from e054e80 to 0e5ec30 Compare September 13, 2024 09:14
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 8916334 to 7ed73ed Compare September 25, 2024 06:12
@renovate
renovate Bot force-pushed the renovate/major-all branch from 7ed73ed to 0e5746e Compare October 14, 2024 19:31
@renovate
renovate Bot force-pushed the renovate/major-all branch from 0e5746e to 129d1c4 Compare October 23, 2024 05:13
@renovate
renovate Bot force-pushed the renovate/major-all branch 4 times, most recently from afb197e to 70ea7bd Compare November 11, 2024 10:04
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 8e4b60f to 3a04eeb Compare November 26, 2024 10:10
@renovate
renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from 96981dc to 8f27ed4 Compare December 2, 2024 08:17
@renovate
renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from f2c6e69 to 3b4c725 Compare December 6, 2024 17:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants