From 712cd94e730e9a9a300af265d69659c577e4d5fb Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Thu, 31 Jul 2025 21:56:11 +0200 Subject: [PATCH 1/2] docs: clarify Node.js version support in LTS table MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Separate bundled Node.js versions from full version support range. - Add column showing which Node.js versions bundle each Undici version - Add column showing minimum required and tested Node.js versions - Makes it clear that v5.x supports Node.js ≥14.0 despite being bundled in v18.x 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Signed-off-by: Matteo Collina --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 93008eb0991..8bdec7bdf68 100644 --- a/README.md +++ b/README.md @@ -622,11 +622,11 @@ and `undici.Agent`) which will enable the family autoselection algorithm when es Undici aligns with the Node.js LTS schedule. The following table shows the supported versions: -| Version | Node.js | End of Life | -|---------|-------------|-------------| -| 5.x | v18.x | 2024-04-30 | -| 6.x | v20.x v22.x | 2026-04-30 | -| 7.x | v24.x | 2027-04-30 | +| Undici Version | Bundled in Node.js | Node.js Versions Supported | End of Life | +|----------------|-------------------|----------------------------|-------------| +| v5.x | v18.x | ≥14.0 (tested: 14, 16, 18) | 2024-04-30 | +| v6.x | v20.x, v22.x | ≥18.17 (tested: 18, 20, 21, 22) | 2026-04-30 | +| v7.x | v24.x | ≥20.18.1 (tested: 20, 22, 24) | 2027-04-30 | ## License From 98315d84e6b7e656c4051ee9795497a7c9ba1512 Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Fri, 1 Aug 2025 11:31:05 +0200 Subject: [PATCH 2/2] Update README.md Co-authored-by: Aras Abbasi --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8bdec7bdf68..eb69c0ca8f4 100644 --- a/README.md +++ b/README.md @@ -624,9 +624,9 @@ Undici aligns with the Node.js LTS schedule. The following table shows the suppo | Undici Version | Bundled in Node.js | Node.js Versions Supported | End of Life | |----------------|-------------------|----------------------------|-------------| -| v5.x | v18.x | ≥14.0 (tested: 14, 16, 18) | 2024-04-30 | -| v6.x | v20.x, v22.x | ≥18.17 (tested: 18, 20, 21, 22) | 2026-04-30 | -| v7.x | v24.x | ≥20.18.1 (tested: 20, 22, 24) | 2027-04-30 | +| 5.x | 18.x | ≥14.0 (tested: 14, 16, 18) | 2024-04-30 | +| 6.x | 20.x, 22.x | ≥18.17 (tested: 18, 20, 21, 22) | 2026-04-30 | +| 7.x | 24.x | ≥20.18.1 (tested: 20, 22, 24) | 2027-04-30 | ## License