Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V22.10.0 proposal #55343

Merged
merged 230 commits into from
Oct 16, 2024
Merged

V22.10.0 proposal #55343

merged 230 commits into from
Oct 16, 2024

Conversation

aduh95
Copy link
Contributor

@aduh95 aduh95 commented Oct 9, 2024

New "module-sync" exports condition

This release introduces a "module-sync" exports condition that's enabled when
require(esm) is enabled, so packages can supply a synchronous ES module to the
Node.js module loader, no matter if it's being required or imported. This is
similar to the "module" condition that bundlers have been using to support
require(esm) in Node.js, and allows dual-package authors to opt into ESM-first
only on newer versions of Node.js that supports require(esm) to avoid the
dual-package hazard.

{
  "type": "module",
  "exports": {
    "node": {
      // On new version of Node.js, both require() and import get
      // the ESM version
      "module-sync": "./index.js",
      // On older version of Node.js, where "module-sync" and require(esm) are
      // not supported, use the CJS version to avoid dual-package hazard.
      // When package authors think it's time to drop support for older versions of
      // Node.js, they can remove the exports conditions and just use "main": "index.js".
      "default": "./dist/index.cjs"
    },
    // On any other environment, use the ESM version.
    "default": "./index.js"
  }
}

Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have require(esm):

{
  "type": "module",
  "exports": {
    // On new version of Node.js, both require() and import get the ESM version
    "module-sync": "./index.js",
    // On older version of Node.js, where "module-sync" and require(esm) are
    // not supported, use the CJS version to avoid dual-package hazard.
    // When package authors think it's time to drop support for older versions of
    // Node.js, they can remove the exports conditions and just use "main": "index.js".
    "default": "./dist/index.cjs"
  }
}

For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support require(esm) while some older ones don't.
When all active Node.js LTS lines support require(esm), packages can simplify
their distributions by bumping the major version, dropping their CJS exports,
and removing the module-sync exports condition (with only main or default
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync and module and point them to the same ESM file. If the package
already doesn't want to support older versions of Node.js that doesn't support
require(esm), don't use this export condition.

For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both module/module-sync conditions during the
transition period, and can drop module-sync+module when they no longer need
to support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.

We ended up implementing a condition with a different name instead of reusing
"module", because existing code in the ecosystem using the "module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding import './noext' or import './directory'), so it would be
breaking to implement a "module" condition without implementing the forbidden
ESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.

Contributed by Joyee Cheung in #54648.

node --run is now stable

This CLI flag runs a specified command from a package.json's "scripts" object.

For the following package.json:

{
  "scripts": {
    "test": "node --test-reporter junit --test ./test"
  }
}

You can run node --run test and that would start the test suite.

Contributed by Yagiz Nizipli in #53763.

Other notable changes

  • [f0b441230a] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #55262
  • [349d2ed07b] - (SEMVER-MINOR) crypto: add Date fields for validTo and validFrom (Andrew Moon) #54159
  • [bebc95ed58] - doc: add abmusse to collaborators (Abdirahim Musse) #55086
  • [914db60159] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #54875
  • [f7c3b03759] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #54826
  • [32261fc98a] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #54933
  • [06957ff355] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #54971
  • [2dcf70c347] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #54971
  • [f9b19d7c44] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #54971
  • [e95163b170] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #55241
  • [4050f68e5d] - (SEMVER_MINOR) process: add process.features.typescript (Aviv Keller) #54295
  • [86f7cb802d] - (SEMVER-MINOR) test_runner: support custom arguments in run() (Aviv Keller) #55126
  • [b62f2f8259] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #54851
  • [d7c708aec5] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #53937
  • [5fda4a1498] - (SEMVER-MINOR) worker: add markAsUncloneable api (Jason Zhang) #55234
Commits
  • [e3619510c8] - assert: show the diff when deep comparing data with a custom message (Giovanni) #54759
  • [39c7a9e70c] - benchmark: adjust config for deepEqual object (Rafael Gonzaga) #55254
  • [263526d5d0] - benchmark: rewrite detect-esm-syntax benchmark (Joyee Cheung) #55238
  • [cd0795fb00] - benchmark: add no-warnings to process.has bench (Rafael Gonzaga) #55159
  • [4352d9cc31] - benchmark: create benchmark for typescript (Marco Ippolito) #54904
  • [452bc9b48d] - benchmark: add webstorage benchmark (jakecastelli) #55040
  • [d4d5ba3a9b] - benchmark: include ascii to fs/readfile (Rafael Gonzaga) #54988
  • [23b628db65] - benchmark: add dotenv benchmark (Aviv Keller) #54278
  • [b1ebb0d8ca] - buffer: coerce extrema to int in blob.slice (Antoine du Hamel) #55141
  • [3a6e72483f] - buffer: extract Blob's .arrayBuffer() & webidl changes (Matthew Aitken) #53372
  • [d109f1c4ff] - buffer: use simdutf convert_latin1_to_utf8_safe (Robert Nagy) #54798
  • [77f8a3f9c2] - build: fix notify-on-review-wanted action (Rafael Gonzaga) #55304
  • [0d93b1ed0c] - build: fix not valid json in coverage (jakecastelli) #55179
  • [f89664d890] - build: include .nycrc in coverage workflows (Wuli Zuo) #55210
  • [d7a9df6417] - build: notify via slack when review-wanted (Rafael Gonzaga) #55102
  • [68822cc861] - build: add more information to Makefile help (Aviv Keller) #53381
  • [f3ca9c669b] - build: update ruff and add lint-py-fix (Aviv Keller) #54410
  • [d99ae548d7] - build: remove -v flag to reduce noise (iwuliz) #55025
  • [d3dfbe7ff9] - build: display free disk space after build in the test-macOS workflow (iwuliz) #55025
  • [3077f6a5b7] - build: support up to python 3.13 in android-configure (Aviv Keller) #54529
  • [a929c71281] - build: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) #52279
  • [a81f368b99] - build: fix eslint makefile target (Aviv Keller) #54999
  • [c8b7a645ae] - Revert "build: upgrade clang-format to v18" (Chengzhong Wu) #54994
  • [7861ca5dc3] - build: print Running XYZ linter... for py and yml (Aviv Keller) #54386
  • [aaea3944e5] - build,win: add winget config to set up env (Hüseyin Açacak) #54729
  • [30d47220bb] - build,win: float VS 17.11 compilation patch (Stefan Stojanovic) #54970
  • [048a1ab350] - cli: ensure --run has proper pwd (Yagiz Nizipli) #54949
  • [a97841ee10] - cli: fix spacing for port range error (Aviv Keller) #54495
  • [1dcc5eedff] - Revert "console: colorize console error and warn" (Aviv Keller) #54677
  • [f0b441230a] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #55262
  • [d3f8c35320] - crypto: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) #55041
  • [349d2ed07b] - (SEMVER-MINOR) crypto: add Date fields for validTo and validFrom (Andrew Moon) #54159
  • [34ca36a397] - deps: update undici to 6.20.0 (Node.js GitHub Bot) #55329
  • [f703652e84] - deps: upgrade npm to 10.9.0 (npm team) #55255
  • [b533a51856] - deps: V8: backport 0d5d6e71bbb0 (Yagiz Nizipli) #55115
  • [2f65b3fd07] - deps: V8: partially cherry-pick 8953e49478 (Ben Noordhuis) #55274
  • [bb9f77d53a] - deps: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) #55184
  • [63d51c82fe] - deps: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) #55184
  • [29e6484f3c] - deps: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) #54336
  • [283927ec88] - deps: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) #54336
  • [b0636a1e88] - deps: update timezone to 2024b (Node.js GitHub Bot) #55056
  • [173464d76f] - deps: update acorn-walk to 8.3.4 (Node.js GitHub Bot) #54950
  • [0d4536543b] - deps: update corepack to 0.29.4 (Node.js GitHub Bot) #54845
  • [1de5512383] - deps: V8: cherry-pick 217457d0a560 (Michaël Zasso) #54883
  • [1921d7a37c] - doc: add release key for aduh95 (Antoine du Hamel) #55349
  • [d8e42be1b2] - doc: move ERR_INVALID_PERFORMANCE_MARK to legacy errors (Antoine du Hamel) #55247
  • [5ea8aa183c] - doc: fix Markdown linter (Antoine du Hamel) #55344
  • [873588888d] - Revert "doc: update test context.assert" (Antoine du Hamel) #55344
  • [707e7cc702] - doc: add pmarchini to collaborators (Pietro Marchini) #55331
  • [b03272b9a1] - doc: fix events.once() example using AbortSignal (Ivo Janssen) #55144
  • [85b765953d] - doc: add onboarding details for ambassador program (Marco Ippolito) #55284
  • [5d41b8a8b0] - doc: update require(ESM) history and stability status (Antoine du Hamel) #55199
  • [195df659e9] - doc: move ERR_NAPI_TSFN_START/STOP_IDLE_LOOP to legacy errors (Antoine du Hamel) #55248
  • [8eae0d3f3c] - doc: fix initial default value of autoSelectFamily (Ihor Rohovets) #55245
  • [297cb0da5a] - doc: tweak onboarding instructions (Michael Dawson) #55212
  • [7ddbfe8c2b] - doc: update test context.assert (Pietro Marchini) #55186
  • [8a57550d20] - doc: fix unordered error anchors (Antoine du Hamel) #55242
  • [286ea4ed3d] - doc: mention addons to experimental permission (Rafael Gonzaga) #55166
  • [7c9ceabf38] - doc: use correct dash in stability status (Antoine du Hamel) #55200
  • [781ffd8ba1] - doc: fix link in test/README.md (Livia Medeiros) #55165
  • [61b9ed3bf2] - doc: add esm examples to node:net (Alfredo González) #55134
  • [bb3499038d] - doc: remove outdated https import reference (Edigleysson Silva (Edy)) #55111
  • [6cc49518c7] - doc: move the YAML changes element (sendoru) #55112
  • [b12b4a23e4] - doc: remove random horizontal separators in process.md (Antoine du Hamel) #55149
  • [7186ede388] - doc: put --env-file-if-exists=config right under --env-file=config (Edigleysson Silva (Edy)) #55131
  • [8ad0dfff10] - doc: fix the require resolve algorithm in modules.md (chirsz) #55117
  • [fd40f0873f] - doc: update style guide (Aviv Keller) #53223
  • [12c9d9780f] - doc: add missing : to run()'s globPatterns (Aviv Keller) #55135
  • [73b05cfb04] - doc: correct cleanup option in stream.(promises.)finished (René) #55043
  • [bebc95ed58] - doc: add abmusse to collaborators (Abdirahim Musse) #55086
  • [a97c80c6ae] - doc: add note about --expose-internals (Aviv Keller) #52861
  • [89aeae63bd] - doc: remove parseREPLKeyword from REPL documentation (Aviv Keller) #54749
  • [b3e0490b8b] - doc: add missing EventSource docs to globals (Matthew Aitken) #55022
  • [516c775fa5] - doc: cover --experimental-test-module-mocks flag (Jonathan Sharpe) #55021
  • [4244f1a269] - doc: add more details for localStorage and sessionStorage (Batuhan Tomo) #53881
  • [39a728c2e3] - doc: change backporting guide with updated info (Aviv Keller) #53746
  • [3a5fe95ad7] - doc: add missing definitions to internal-api.md (Aviv Keller) #53303
  • [f2d74a26a3] - doc: fix history of process.features (Antoine du Hamel) #54982
  • [29866ca438] - doc: fix typo callsite.lineNumber (Rafael Gonzaga) #54969
  • [c1d73abd29] - doc: update documentation for externalizing deps (Michael Dawson) #54792
  • [eca9668231] - doc: add documentation for process.features (Marco Ippolito) #54897
  • [0fb446e207] - esm: do not interpret "main" as a URL (Antoine du Hamel) #55003
  • [be2fe4b249] - events: allow null/undefined eventInitDict (Matthew Aitken) #54643
  • [cb47e169a0] - events: return currentTarget when dispatching (Matthew Aitken) #54642
  • [dbfae3fe14] - fs: acknowledge signal option in filehandle.createReadStream() (Livia Medeiros) #55148
  • [1c94725c07] - fs: check subdir correctly in cpSync (Jason Zhang) #55033
  • [79ffefab2a] - fs: convert to u8 string for filesystem path (Jason Zhang) #54653
  • [914db60159] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #54875
  • [08b5e6c794] - lib: fix module print timing when specifier includes " (Antoine du Hamel) #55150
  • [bf7d7aef4b] - lib: fix typos (Nathan Baulch) #55065
  • [d803355d92] - lib: prefer optional chaining (Aviv Keller) #55045
  • [d4873bcd6d] - lib: remove lib/internal/idna.js (Yagiz Nizipli) #55050
  • [f7c3b03759] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #54826
  • [397ae418db] - lib: the REPL should survive deletion of Array.prototype methods (Jordan Harband) #31457
  • [566179c9ec] - lib, tools: remove duplicate requires (Aviv Keller) #54987
  • [c9a1bbbef2] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #55300
  • [d7b73bbd1d] - meta: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot[bot]) #55225
  • [0f4269faa9] - meta: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot[bot]) #55224
  • [33be1990d8] - meta: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot[bot]) #55223
  • [f5b4ae5bf8] - meta: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot[bot]) #55219
  • [1985d9016e] - meta: add mailmap entry for abmusse (Abdirahim Musse) #55182
  • [93b215d5e6] - meta: add more information about nightly releases (Aviv Keller) #55084
  • [aeae5973c3] - meta: add linux to OS labels in collaborator guide (Aviv Keller) #54986
  • [4fb2c3baa8] - meta: remove never-used workflow trigger (Aviv Keller) #54983
  • [e1f36d0da8] - meta: remove unneeded ignore rules from ruff (Aviv Keller) #54360
  • [ce0d0c1ec8] - meta: remove build-windows.yml (Aviv Keller) #54662
  • [ca67c97f33] - meta: add links to alternative issue trackers (Aviv Keller) #54401
  • [6fcac73738] - module: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX (Marco Ippolito) #55316
  • [0412ac8bf3] - module: add internal type def for flushCompileCache (Jacob Smith) #55226
  • [32261fc98a] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #54933
  • [111261e245] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #54648
  • [b6fc9adf5b] - module: remove duplicated import (Aviv Keller) #54942
  • [06957ff355] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #54971
  • [2dcf70c347] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #54971
  • [f9b19d7c44] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #54971
  • [1d169764db] - module: report unfinished TLA in ambiguous modules (Antoine du Hamel) #54980
  • [c89c93496d] - module: refator ESM loader for adding future synchronous hooks (Joyee Cheung) #54769
  • [108cef22e6] - module: remove bogus assertion in CJS entrypoint handling with --import (Joyee Cheung) #54592
  • [67ecb10c78] - module: fix discrepancy between .ts and .js (Marco Ippolito) #54461
  • [3300d5990f] - os: use const with early return for path (Trivikram Kamat) #54959
  • [90cce6ec7c] - path: remove repetitive conditional operator in posix.resolve (Wiyeong Seo) #54835
  • [cbfc980f89] - perf_hooks: add missing type argument to getEntriesByName (Luke Taher) #54767
  • [0655d3a384] - process: fix process.features.typescript when Amaro is unavailable (Antoine du Hamel) #55323
  • [4050f68e5d] - process: add process.features.typescript (Aviv Keller) #54295
  • [75073c50ae] - quic: start adding in the internal quic js api (James M Snell) #53256
  • [538b1eb5b0] - repl: catch \v and \r in new-line detection (Aviv Keller) #54512
  • [57a9d3f15e] - sqlite: disable DQS misfeature by default (Tobias Nießen) #55297
  • [c126543374] - sqlite: make sourceSQL and expandedSQL string-valued properties (Tobias Nießen) #54721
  • [67f5f46c56] - sqlite: enable foreign key constraints by default (Tobias Nießen) #54777
  • [09999491bf] - src: handle errors correctly in webstorage (Michaël Zasso) #54544
  • [295c17c4ea] - src: make minor tweaks to quic c++ for c++20 (James M Snell) #53256
  • [b1d47d06f9] - src: apply getCallSite optimization (RafaelGSS) #55174
  • [d6bcc44829] - src: modernize likely/unlikely hints (Yagiz Nizipli) #55155
  • [1af5ad61ca] - src: fixup Error.stackTraceLimit during snapshot building (Joyee Cheung) #55121
  • [b229083235] - src: parse --stack-trace-limit and use it in --trace-* flags (Joyee Cheung) #55121
  • [942ad54e08] - src: move more key handling to ncrypto (James M Snell) #55108
  • [0bb5584288] - src: add receiver to fast api callback methods (Carlos Espa) #54408
  • [706e9611f0] - src: fix typos (Nathan Baulch) #55064
  • [a96d5d1bcc] - src: move more stuff over to use Maybe<void> (James M Snell) #54831
  • [ee0a98b5a2] - src: decode native error messages as UTF-8 (Joyee Cheung) #55024
  • [1fc8edecf8] - src: update clang-tidy and focus on modernization (Yagiz Nizipli) #53757
  • [3a1485a1a3] - src: move evp stuff to ncrypto (James M Snell) #54911
  • [9ae80e1e4d] - src: revert filesystem::path changes (Yagiz Nizipli) #55015
  • [465d05018a] - src: mark node --run as stable (Yagiz Nizipli) #53763
  • [ef546c872c] - src: cleanup per env handles directly without a list (Chengzhong Wu) #54993
  • [0876f78411] - src: add unistd.h import if node posix credentials is defined (Jonas) #54528
  • [284db53866] - src: remove duplicate code setting AF_INET (He Yang) #54939
  • [f332c4c4fc] - src: use Maybe<void> where bool isn't needed (Michaël Zasso) #54575
  • [c7ed2ff920] - stream: handle undefined chunks correctly in decode stream (devstone) #55153
  • [a9675a0cbc] - stream: treat null asyncIterator as undefined (Jason Zhang) #55119
  • [bf69ae1406] - stream: set stream prototype to closest transferable superclass (Jason Zhang) #55067
  • [3273707a3a] - test: fix tests when Amaro is unavailable (Richard Lau) #55320
  • [ff3cc3b2ab] - test: use more informative errors in test-runner-cli (Antoine du Hamel) #55321
  • [17d2f9de6d] - test: make test-loaders-workers-spawned less flaky (Antoine du Hamel) #55172
  • [1b1104e69b] - test: add resource to internal module stat test (RafaelGSS) #55157
  • [b36f8c2146] - test: update multiple assert tests to use node:test (James M Snell) #54585
  • [1b30f7fdd6] - test: move coverage source map tests to new file (Aviv Keller) #55123
  • [ce67e7b5b3] - test: adding more tests for strip-types (Kevin Toshihiro Uehara) #54929
  • [a57c8ba3ef] - test: update wpt test for encoding (devstone) #55151
  • [65fbe94d45] - test: add escapePOSIXShell util (Antoine du Hamel) #55125
  • [cc8838252e] - test: remove unnecessary await in test-watch-mode (Wuli) #55142
  • [9aeba48bf0] - test: fix typos (Nathan Baulch) #55063
  • [0999b5e493] - test: remove duplicated test descriptions (Christos Koutsiaris) #54140
  • [e99d4a4cb8] - test: deflake test/pummel/test-timers.js (jakecastelli) #55098
  • [fb8470afd7] - test: deflake test-http-remove-header-stays-removed (Luigi Pinca) #55004
  • [e879c5edf2] - test: fix test-tls-junk-closes-server (Michael Dawson) #55089
  • [b885f0583c] - test: fix more tests that fail when path contains a space (Antoine du Hamel) #55088
  • [85f1187942] - test: fix assertSnapshot when path contains a quote (Antoine du Hamel) #55087
  • [fdae57f1e1] - test: fix some tests when path contains % (Antoine du Hamel) #55082
  • [36c9ea8912] - Revert "test: mark test-fs-watch-non-recursive flaky on Windows" (Luigi Pinca) #55079
  • [80da5993cc] - test: remove interval and give more time to unsync (Pietro Marchini) #55006
  • [93c23e74b3] - test: deflake test-inspector-strip-types (Luigi Pinca) #55058
  • [43bbca2c08] - test: make test-runner-assert more robust (Aviv Keller) #55036
  • [268f1ec08f] - test: update tls test to support OpenSSL32 (Michael Dawson) #55030
  • [a50dd21423] - test: do not assume process.execPath contains no spaces (Antoine du Hamel) #55028
  • [c56e324cb8] - test: fix test-vm-context-dont-contextify when path contains a space (Antoine du Hamel) #55026
  • [6d42e44264] - test: adjust tls-set-ciphers for OpenSSL32 (Michael Dawson) #55016
  • [22e601a76c] - test: add util.stripVTControlCharacters test (RedYetiDev) #54865
  • [a6796696d7] - test: improve coverage for timer promises schedular (Aviv Keller) #53370
  • [9506f77b3e] - test: remove getCallSite from common (RedYetiDev) #54947
  • [20d3a806ea] - test: remove unused common utilities (RedYetiDev) #54825
  • [341b6d9b94] - test: deflake test-http-header-overflow (Luigi Pinca) #54978
  • [1e53c10853] - test: fix soucre to source (Aviv Keller) #55038
  • [6843ca7e0d] - test: add asserts to validate test assumptions (Michael Dawson) #54997
  • [98ff615c5e] - test: add runner watch mode isolation tests (Pietro Marchini) #54888
  • [327a8f7b59] - test: fix invalid wasm test (Aviv Keller) #54935
  • [5b012f544c] - test: move test-http-max-sockets to parallel (Luigi Pinca) #54977
  • [22b413910e] - test: remove test-http-max-sockets flaky designation (Luigi Pinca) #54976
  • [62b8640550] - test: refactor test-whatwg-webstreams-encoding to be shorter (David Dong) #54569
  • [1f11d68173] - test: adjust key sizes to support OpenSSL32 (Michael Dawson) #54972
  • [90a87ca8f7] - test: update test to support OpenSSL32 (Michael Dawson) #54968
  • [9b7834536a] - test: update DOM events web platform tests (Matthew Aitken) #54642
  • [1c001550a2] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #55029
  • [800f7c44ed] - test_runner: throw on invalid source map (Aviv Keller) #55055
  • [0f7e3f017f] - test_runner: assert entry is a valid object (Edigleysson Silva (Edy)) #55231
  • [c308862d2e] - test_runner: avoid spread operator on arrays (Antoine du Hamel) #55143
  • [12401972b7] - test_runner: support typescript files in default glob (Aviv Keller) #55081
  • [19cfa3140f] - test_runner: close and flush destinations on forced exit (Colin Ihrig) #55099
  • [86f7cb802d] - (SEMVER-MINOR) test_runner: support custom arguments in run() (Aviv Keller) #55126
  • [7eaeba499a] - test_runner: fix mocking modules with quote in their URL (Antoine du Hamel) #55083
  • [8818c6c88a] - test_runner: report error on missing sourcemap source (Aviv Keller) #55037
  • [b62f2f8259] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #54851
  • [449dad0db0] - test_runner: use test: symbol on second print of parent test (RedYetiDev) #54956
  • [4b962a78c7] - test_runner: replace ansi clear with ansi reset (Pietro Marchini) #55013
  • [d7c708aec5] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #53937
  • [93c6c90219] - test_runner: support typescript module mocking (Marco Ippolito) #54878
  • [1daec9a63f] - test_runner: avoid coverage report partial file names (Pietro Marchini) #54379
  • [d51e5a8667] - tools: enforce errors to not be documented in legacy section (Aviv Keller) #55218
  • [6a7d201b80] - tools: update gyp-next to 0.18.2 (Node.js GitHub Bot) #55160
  • [c988e7e2e5] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #55227
  • [7982d3d4ed] - tools: only check teams on the default branch (Antoine du Hamel) #55124
  • [60a35eddb0] - tools: make choco install script more readable (Aviv Keller) #54002
  • [b7b1fa6dd3] - tools: bump Rollup from 4.18.1 to 4.22.4 for lint-md (dependabot[bot]) #55093
  • [3304bf387f] - tools: unlock versions of irrelevant DB deps (Michaël Zasso) #55042
  • [65c376a819] - tools: remove redudant code from eslint require rule (Aviv Keller) #54892
  • [295f684b69] - tools: update error message for ICU in license-builder (Aviv Keller) #54742
  • [ce4b6e403d] - tools: refactor js2c.cc to use c++20 (Yagiz Nizipli) #54849
  • [31f0ef6ea3] - tools: bump the eslint group in /tools/eslint with 7 updates (dependabot[bot]) #54821
  • [676d0a09a0] - tools: update github_reporter to 1.7.1 (Node.js GitHub Bot) #54951
  • [0f01f38aea] - tty: fix links for terminal colors (Aviv Keller) #54596
  • [d264639f5f] - util: update ansi regex (Aviv Keller) #54865
  • [ea7aaf37bf] - v8: out of bounds copy (Robert Nagy) #55261
  • [fa695facf5] - watch: preserve output when gracefully restarted (Théo LUDWIG) #54323
  • [5fda4a1498] - (SEMVER-MINOR) worker: add markAsUncloneable api (Jason Zhang) #55234
  • [d65334c454] - worker: throw InvalidStateError in postMessage after close (devstone) #55206
  • [fc90d7c63a] - worker: handle --input-type more consistently (Antoine du Hamel) #54979
  • [a9fa2da870] - zlib: throw brotli initialization error from c++ (Yagiz Nizipli) #54698
  • [9abd1c7288] - zlib: remove prototype primordials usage (Yagiz Nizipli) #54695
  • [e95163b170] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #55241

marco-ippolito and others added 30 commits September 18, 2024 09:24
PR-URL: #54461
Backport-PR-URL: #54566
Fixes: #54457
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Original commit message:

    [set-methods] Handle SetLike with infinite size

    This CL adds a check for identifying SetLikes with infinite sizes in
    methods dependent on the size of `other`s.

    Bug: 351332634
    Change-Id: I5c6d9c0cc7f3f5fae5cedc72a44bc21c917c84b8
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5684652
    Reviewed-by: Shu-yu Guo <syg@chromium.org>
    Commit-Queue: Rezvan Mahdavi Hezaveh <rezvan@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#94897}

Refs: v8/v8@217457d
PR-URL: #54883
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
PR-URL: #54897
Refs: #54295
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Refs: #54646

- Add instructions to update how process.versions is reported
  as I missed that in a recent addition.

Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: #54792
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
PR-URL: #54969
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #54575
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
PR-URL: #54951
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
The synchronous CJS translator can handle entrypoints now, this
can be hit when --import is used, so lift the bogus assertions and
added tests.

PR-URL: #54592
Fixes: #54577
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: #54845
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #54982
Refs: aa0308d
Refs: 9010f5f
Refs: 52a40e0
Refs: b3ef289
Refs: #2564
Refs: #25819
Refs: #27311
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Specifically, `delete Array.prototype.lastIndexOf` immediately crashes
the REPL, as does deletion of a few other Array prototype methods.

PR-URL: #31457
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
This lays the foundation for supporting synchronous hooks proposed
in nodejs/loaders#198 for ESM.

- Corrects and adds several JSDoc comments for internal functions
  of the ESM loader, as well as explaining how require() for
  import CJS work in the special resolve/load paths. This doesn't
  consolidate it with import in require(esm) yet due to caching
  differences, which is left as a TODO.
- The moduleProvider passed into ModuleJob is replaced as
  moduleOrModulePromise, we call the translators directly in the
  ESM loader and verify it right after loading for clarity.
- Reuse a few refactored out helpers for require(esm) in
  getModuleJobForRequire().

PR-URL: #54769
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #54278
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Added equivalent fields to `X509Certificate` in Date form.

PR-URL: #54159
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
PR-URL: #54959
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
PR-URL: #54401
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
PR-URL: #53303
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
PR-URL: #54662
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
PR-URL: #53746
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
PR-URL: #54495
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #54386
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
`AF_INET` has been repeatedly set three times in the code. this should
be redundant. removed the last two times.

PR-URL: #54939
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #54835
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #54949
Refs: #53600
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
PR-URL: #54360
Reviewed-By: Christian Clauss <cclauss@me.com>
PR-URL: #54642
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Mattias Buelens <mattias@buelens.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #54642
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Mattias Buelens <mattias@buelens.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
This reverts commit c3e1c31.

PR-URL: #54994
Refs: #53957
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Co-author: Medhansh404 <21ucs126@lnmiit.ac.in>
PR-URL: #54379
Fixes: #51299
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Refs: #53382

This test fails on OpenSSL32 because it complains the key being
used is too short.

It seems to have been missed when the test suite was udpated to have
a Makefile to generate key material as the keys are hard coded in the
test as opposed to being read in from the fixtures/key directory.

Update the test to use keys/certs from the fixtures directory and
to remove newlines at the end of the key and cert to retain the
inteded test.

Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: #54968
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
@anonrig
Copy link
Member

anonrig commented Oct 11, 2024

It is in the Other notable changes already, does that work for you or are you asking for something else?

I was asking to be highlighted in more detail, like the one on the top, but I'm ok with keeping in the current place as well.

aduh95 and others added 2 commits October 11, 2024 20:58
PR-URL: #55323
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
This should make easier to read on benchmark/compare
and when generating graphs

PR-URL: #55254
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
aduh95 added a commit that referenced this pull request Oct 11, 2024
Notable changes:

crypto:
  * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262
  * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159
doc:
  * add abmusse to collaborators (Abdirahim Musse) #55086
http2:
  * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875
lib:
  * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826
module:
  * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933
  * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648
  * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971
src:
  * mark `node --run` as stable (Yagiz Nizipli) #53763
test_runner:
  * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126
  * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851
  * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937
worker:
  * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234

PR-URL: #55343
@aduh95
Copy link
Contributor Author

aduh95 commented Oct 11, 2024

@anonrig I tried doing a general presentation of node --run in the notable changes section, PTAL and let me know if something's wrong in what I wrote.

@nodejs-github-bot
Copy link
Collaborator

For detecting whether `require(esm)` is supported without triggering
the experimental warning.

PR-URL: #55241
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
aduh95 added a commit that referenced this pull request Oct 11, 2024
Notable changes:

crypto:
  * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262
  * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159
doc:
  * add abmusse to collaborators (Abdirahim Musse) #55086
http2:
  * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875
lib:
  * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826
module:
  * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933
  * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648
  * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971
process:
  * (SEMVER-MINOR) add `process.features.require_module` (Joyee Cheung) #55241
src:
  * mark `node --run` as stable (Yagiz Nizipli) #53763
test_runner:
  * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126
  * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851
  * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937
worker:
  * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234

PR-URL: #55343
@nodejs-github-bot
Copy link
Collaborator

@anonrig
Copy link
Member

anonrig commented Oct 11, 2024

@anonrig I tried doing a general presentation of node --run in the notable changes section, PTAL and let me know if something's wrong in what I wrote.

I couldn't have written better. Thank you @aduh95

aduh95 added a commit that referenced this pull request Oct 11, 2024
Notable changes:

crypto:
  * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262
  * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159
doc:
  * add abmusse to collaborators (Abdirahim Musse) #55086
http2:
  * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875
lib:
  * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826
module:
  * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933
  * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648
  * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971
process:
  * (SEMVER-MINOR) add `process.features.require_module` (Joyee Cheung) #55241
src:
  * mark `node --run` as stable (Yagiz Nizipli) #53763
test_runner:
  * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126
  * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851
  * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937
worker:
  * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234

PR-URL: #55343
@nodejs-github-bot
Copy link
Collaborator

nodejs-github-bot commented Oct 11, 2024

aduh95 added a commit that referenced this pull request Oct 13, 2024
Notable changes:

crypto:
  * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262
  * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159
doc:
  * add abmusse to collaborators (Abdirahim Musse) #55086
http2:
  * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875
lib:
  * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826
module:
  * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933
  * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648
  * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971
process:
  * (SEMVER-MINOR) add `process.features.require_module` (Joyee Cheung) #55241
  * (SEMVER-MINOR) add `process.features.typescript` (Aviv Keller) #54295
src:
  * mark `node --run` as stable (Yagiz Nizipli) #53763
test_runner:
  * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126
  * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851
  * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937
worker:
  * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234

PR-URL: #55343
aduh95 added a commit that referenced this pull request Oct 13, 2024
Notable changes:

crypto:
  * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262
  * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159
doc:
  * add abmusse to collaborators (Abdirahim Musse) #55086
http2:
  * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875
lib:
  * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826
module:
  * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933
  * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648
  * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971
process:
  * (SEMVER-MINOR) add `process.features.require_module` (Joyee Cheung) #55241
  * (SEMVER-MINOR) add `process.features.typescript` (Aviv Keller) #54295
src:
  * mark `node --run` as stable (Yagiz Nizipli) #53763
test_runner:
  * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126
  * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851
  * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937
worker:
  * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234

PR-URL: #55343
@aduh95
Copy link
Contributor Author

aduh95 commented Oct 14, 2024

The release build keeps getting stuck, I'll have to postpone the release to later this week (after v23.0.0 release is done)

Notable changes:

crypto:
  * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262
  * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159
doc:
  * add abmusse to collaborators (Abdirahim Musse) #55086
http2:
  * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875
lib:
  * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826
module:
  * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933
  * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648
  * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971
process:
  * (SEMVER-MINOR) add `process.features.require_module` (Joyee Cheung) #55241
  * (SEMVER-MINOR) add `process.features.typescript` (Aviv Keller) #54295
src:
  * mark `node --run` as stable (Yagiz Nizipli) #53763
test_runner:
  * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126
  * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851
  * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937
worker:
  * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234

PR-URL: #55343
@aduh95
Copy link
Contributor Author

aduh95 commented Oct 16, 2024

@aduh95 aduh95 merged commit afe4bc6 into v22.x Oct 16, 2024
20 of 22 checks passed
@aduh95 aduh95 deleted the v22.10.0-proposal branch October 16, 2024 22:28
aduh95 added a commit that referenced this pull request Oct 16, 2024
aduh95 added a commit that referenced this pull request Oct 16, 2024
Notable changes:

crypto:
  * (SEMVER-MINOR) add `KeyObject.prototype.toCryptoKey` (Filip Skokan) #55262
  * (SEMVER-MINOR) add Date fields for `validTo` and `validFrom` (Andrew Moon) #54159
doc:
  * add abmusse to collaborators (Abdirahim Musse) #55086
http2:
  * (SEMVER-MINOR) expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) #54875
lib:
  * (SEMVER-MINOR) propagate aborted state to dependent signals before firing events (jazelly) #54826
module:
  * (SEMVER-MINOR) support loading entrypoint as url (RedYetiDev) #54933
  * (SEMVER-MINOR) implement the `"module-sync"` exports condition (Joyee Cheung) #54648
  * (SEMVER-MINOR) implement `flushCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) #54971
  * (SEMVER-MINOR) write compile cache to temporary file and then rename it (Joyee Cheung) #54971
process:
  * (SEMVER-MINOR) add `process.features.require_module` (Joyee Cheung) #55241
  * (SEMVER-MINOR) add `process.features.typescript` (Aviv Keller) #54295
src:
  * mark `node --run` as stable (Yagiz Nizipli) #53763
test_runner:
  * (SEMVER-MINOR) support custom arguments in `run()` (Aviv Keller) #55126
  * (SEMVER-MINOR) add `'test:summary'` event (Colin Ihrig) #54851
  * (SEMVER-MINOR) add support for coverage via `run()` (Chemi Atlow) #53937
worker:
  * (SEMVER-MINOR) add `markAsUncloneable` api (Jason Zhang) #55234

PR-URL: #55343
aduh95 added a commit to aduh95/nodejs.org that referenced this pull request Oct 16, 2024
github-merge-queue bot pushed a commit to nodejs/nodejs.org that referenced this pull request Oct 17, 2024
* Blog: v22.10.0 release post

Refs: nodejs/node#55343

* Update apps/site/pages/en/blog/release/v22.10.0.md

Co-authored-by: Rafael Gonzaga <rafael.nunu@hotmail.com>
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com>

---------

Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
Co-authored-by: Rafael Gonzaga <rafael.nunu@hotmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release Issues and PRs related to Node.js releases. v22.x v22.x Issues that can be reproduced on v22.x or PRs targeting the v22.x-staging branch.
Projects
None yet
Development

Successfully merging this pull request may close these issues.