From 36c53c69c40273900df1af319711d56ec6a13eef Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Fri, 3 Jan 2025 05:19:13 -0500 Subject: [PATCH] 2025-01-07, Version 23.6.0 (Current) Notable changes: lib: * (SEMVER-MINOR) add typescript support to STDIN eval (Marco Ippolito) https://github.com/nodejs/node/pull/56359 module: * (SEMVER-MINOR) unflag --experimental-strip-types (Marco Ippolito) https://github.com/nodejs/node/pull/56350 process: * (SEMVER-MINOR) add process.ref() and process.unref() methods (James M Snell) https://github.com/nodejs/node/pull/56400 worker: * (SEMVER-MINOR) add eval ts input (Marco Ippolito) https://github.com/nodejs/node/pull/56394 PR-URL: https://github.com/nodejs/node/pull/56450 --- CHANGELOG.md | 3 +- doc/api/cli.md | 6 +-- doc/api/process.md | 4 +- doc/api/typescript.md | 2 +- doc/changelogs/CHANGELOG_V23.md | 90 +++++++++++++++++++++++++++++++++ 5 files changed, 98 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a4ce72b717c1..67bb61e01ed772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,8 @@ release. -23.5.0
+23.6.0
+23.5.0
23.4.0
23.3.0
23.2.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index 46007c5b86b927..0e3ff72a7c51f5 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -886,7 +886,7 @@ It is possible to run code containing inline types unless the ### `--experimental-addon-modules` > Stability: 1.0 - Early development @@ -1665,7 +1665,7 @@ Disable the experimental [`node:sqlite`][] module. @@ -2354,7 +2354,7 @@ finished executing even if the event loop would otherwise remain active. * `maybeRefable` {any} An object that may be "refable". @@ -4292,7 +4292,7 @@ In [`Worker`][] threads, `process.umask(mask)` will throw an exception. ## `process.unref(maybeRefable)` * `maybeUnfefable` {any} An object that may be "unref'd". diff --git a/doc/api/typescript.md b/doc/api/typescript.md index 925324a65f0174..6551c8f484058b 100644 --- a/doc/api/typescript.md +++ b/doc/api/typescript.md @@ -2,7 +2,7 @@