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

[pull] main from nodejs:main #5

Open
wants to merge 6,199 commits into
base: main
Choose a base branch
from
Open

[pull] main from nodejs:main #5

wants to merge 6,199 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Oct 28, 2024

  1. fs: make dirent.path writable

    PR-URL: #55547
    Refs: #55538
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    aduh95 authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    7270f84 View commit details
    Browse the repository at this point in the history
  2. build: fix GN arg used in generate_config_gypi.py

    PR-URL: #55530
    Reviewed-By: Cheng Zhao <zcbenz@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    codebytere authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    4b48f9b View commit details
    Browse the repository at this point in the history
  3. module: allow ESM that failed to be required to be re-imported

    When a ESM module cannot be loaded by require due to the presence
    of TLA, its module status would be stopped at kInstantiated. In
    this case, when it's imported again, we should allow it to be
    evaluated asynchronously, as it's also a common pattern for users
    to retry with dynamic import when require fails.
    
    PR-URL: #55502
    Fixes: #55500
    Refs: #52697
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    joyeecheung authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    7cb3a66 View commit details
    Browse the repository at this point in the history
  4. http: don't emit error after destroy

    PR-URL: #55457
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    ronag authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    5633c62 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. src: migrate String::Value to String::ValueView

    Fixes #54417
    Ref: #55452
    
    PR-URL: #55458
    Refs: #55452
    Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    RedYetiDev authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    45c6a9e View commit details
    Browse the repository at this point in the history
  2. deps: update acorn to 8.13.0

    PR-URL: #55558
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    nodejs-github-bot authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    21d6f53 View commit details
    Browse the repository at this point in the history
  3. deps: update nghttp2 to 1.64.0

    PR-URL: #55559
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    nodejs-github-bot authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    ece37bc View commit details
    Browse the repository at this point in the history
  4. src: do not run IsWindowsBatchFile on non-windows

    PR-URL: #55560
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
    anonrig authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    e160e54 View commit details
    Browse the repository at this point in the history
  5. 2024-10-29, Version 22.11.0 'Jod' (LTS)

    Notable changes:
    
    This release marks the transition of Node.js 22.x into Long Term Support (LTS)
    with the codename 'Jod'. The 22.x release line now moves into "Active LTS"
    and will remain so until October 2025. After that time, it will move into
    "Maintenance" until end of life in April 2027.
    
    Other than updating metadata, such as the `process.release` object, to reflect
    that the release is LTS, no further changes from Node.js 22.10.0 are included.
    
    PR-URL: #55504
    richardlau committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    4354a1d View commit details
    Browse the repository at this point in the history
  6. module: trim off internal stack frames for require(esm) warnings

    Trim off irrelevant internal stack frames for require(esm) warnings
    so it's easier to locate where the call comes from when
    --trace-warnings is used.
    
    PR-URL: #55496
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    joyeecheung committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    3b3a95a View commit details
    Browse the repository at this point in the history
  7. module: fix error thrown from require(esm) hitting TLA repeatedly

    This tracks the asynchronicity in the ModuleWraps when they turn out to
    contain TLA after instantiation, and throw the right error
    (ERR_REQUIRE_ASYNC_MODULE) when it's required again. It removes
    the freezing of ModuleWraps since it's not meaningful to freeze
    this when the rest of the module loader is mutable, and we
    can record the asynchronicity in the ModuleWrap right after
    compilation after we get a V8 upgrade that contains
    v8::Module::HasTopLevelAwait() instead of searching through
    the module graph repeatedly which can be slow.
    
    PR-URL: #55520
    Fixes: #55516
    Refs: #52697
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    joyeecheung authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    8aac7da View commit details
    Browse the repository at this point in the history
  8. test: remove unneeded listeners

    Unhandled `'error'` events will make the process exit with an unclean
    exit code anyway.
    
    PR-URL: #55486
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    lpinca authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    84fe809 View commit details
    Browse the repository at this point in the history
  9. build: fix building with system icu 76

    ICU 76 decided to reduce overlinking[^1] thus `icu-i18n` will no longer
    add `icu-uc` when linking to shared libraries. This results in undefined
    symbols/references when trying to build with system ICU 76.
    
    [^1]: unicode-org/icu@199bc82
    
    PR-URL: #55563
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    cho-m authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    81517fa View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. test: split up test-runner-mock-timers test

    PR-URL: #55506
    Reviewed-By: Erick Wendel <erick.workspace@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Claudio Wunder <cwunder@gnome.org>
    badkeyy authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    6dea41d View commit details
    Browse the repository at this point in the history
  2. doc: capitalize "MIT License"

    PR-URL: #55575
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    RedYetiDev authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    26dae59 View commit details
    Browse the repository at this point in the history
  3. dns: stop using deprecated ares_query

    PR-URL: #55430
    Refs: #52464
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    RedYetiDev authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    8807549 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. src: use NewFromUtf8Literal in NODE_DEFINE_CONSTANT

    Small efficiency improvement over NewFromUtf8(): the literal's
    length is known at compile time, so V8 doesn't have to call
    strlen() or ToLocalChecked().
    
    PR-URL: #55581
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    ckerr authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    9967080 View commit details
    Browse the repository at this point in the history
  2. sqlite: add readOnly option

    Allow opening existing SQLite databases with SQLITE_OPEN_READONLY set.
    
    PR-URL: #55567
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    tniessen authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    a465b20 View commit details
    Browse the repository at this point in the history
  3. http: add diagnostic channel http.client.request.created

    PR-URL: #55586
    Fixes: #55352
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    Reviewed-By: theanarkh <theratliter@gmail.com>
    marco-ippolito authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    4379dfb View commit details
    Browse the repository at this point in the history
  4. module: unify TypeScript and .mjs handling in CommonJS

    This refactors the CommonJS loading a bit to create a center point
    that handles source loading (`loadSource`) and make format detection
    more consistent to pave the way for future synchronous hooks.
    
    - Handle .mjs in the .js handler, similar to how .cjs has been handled.
    - Generate the legacy ERR_REQUIRE_ESM in a getRequireESMError() for
      both .mts and require(esm) handling (when it's disabled).
    
    PR-URL: #55590
    Refs: nodejs/loaders#198
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    joyeecheung authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    d080f0d View commit details
    Browse the repository at this point in the history
  5. http2: fix client async storage persistence

    Create and store an AsyncResource for each stream, following a similar
    approach as used in HttpAgent.
    
    Fixes: #55376
    PR-URL: #55460
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    orgads authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    f67e45e View commit details
    Browse the repository at this point in the history
  6. url: refactor pathToFileURL to native

    PR-URL: #55476
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    aduh95 authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    e2bd64d View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. src: fix dns crash when failed to create NodeAresTask

    PR-URL: #55521
    Fixes: #52439
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    theanarkh authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    a53c0cc View commit details
    Browse the repository at this point in the history
  2. doc: improve c++ embedder API doc

    normalise the headers, fixup bullet points and
    expand `node::IsolateData` scope for clarity.
    
    PR-URL: #55597
    Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    gireeshpunathil authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    824c149 View commit details
    Browse the repository at this point in the history
  3. deps: update amaro to 0.2.0

    PR-URL: #55601
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    nodejs-github-bot authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    3d979dd View commit details
    Browse the repository at this point in the history
  4. test_runner: pass options directly to TestCoverage

    PR-URL: #55578
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
    RedYetiDev authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    9b6cea6 View commit details
    Browse the repository at this point in the history
  5. src,lib: optimize nodeTiming.uvMetricsInfo

    PR-URL: #55614
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    RafaelGSS committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    2d6f9c6 View commit details
    Browse the repository at this point in the history
  6. benchmark: add nodeTiming.uvmetricsinfo bench

    PR-URL: #55614
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    RafaelGSS committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    d83e9fa View commit details
    Browse the repository at this point in the history
  7. meta: show PR/issue title on review-wanted

    PR-URL: #55606
    Refs: https://openjs-foundation.slack.com/archives/C019Y2T6STH/p1730308054959239?thread_ts=1730296053.898089&cid=C019Y2T6STH
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    RedYetiDev authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    413975a View commit details
    Browse the repository at this point in the history
  8. build: stop pre-compiling lint-md

    PR-URL: #55266
    Reviewed-By: Claudio Wunder <cwunder@gnome.org>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    RedYetiDev authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    5ce3d10 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2024

  1. build: use rclone instead of aws CLI

    Use rclone to upload assets to Cloudflare as it is more reliable.
    
    Refs: nodejs/build#3508
    PR-URL: #55617
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    targos authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    d37214b View commit details
    Browse the repository at this point in the history
  2. src: refactor ECDHBitsJob signature

    PR-URL: #55610
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    panva authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    4bf5731 View commit details
    Browse the repository at this point in the history
  3. doc: remove mention of ECDH-ES in crypto.diffieHellman

    PR-URL: #55611
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    panva authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    ba8fc73 View commit details
    Browse the repository at this point in the history
  4. doc: add a note on console stream behavior

    Many user reported issues show poor awareness of the
    nature of console streams. explicitly document that.
    
    PR-URL: #55616
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    gireeshpunathil authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    44afd67 View commit details
    Browse the repository at this point in the history
  5. http: add diagnostic channel http.server.response.created

    PR-URL: #55622
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    marco-ippolito authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    560b2a1 View commit details
    Browse the repository at this point in the history
  6. tools: lint README lists more strictly

    PR-URL: #55625
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    aduh95 authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    91bce94 View commit details
    Browse the repository at this point in the history
  7. src: move more key related stuff to ncrypto

    PR-URL: #55368
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    jasnell authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    5b9bf39 View commit details
    Browse the repository at this point in the history
  8. os: improve path check with direct index access

    PR-URL: #55434
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    mertcanaltin authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    81859cf View commit details
    Browse the repository at this point in the history
  9. assert: fix the string length check for printing the simple diff

    PR-URL: #55474
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    puskin94 authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    10cce65 View commit details
    Browse the repository at this point in the history
  10. module: simplify findPackageJSON implementation

    PR-URL: #55543
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    aduh95 authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    c0db893 View commit details
    Browse the repository at this point in the history
  11. lib: make ALS default to AsyncContextFrame

    PR-URL: #55552
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Qard authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    51ae576 View commit details
    Browse the repository at this point in the history
  12. meta: make review-wanted message minimal

    PR-URL: #55607
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    RedYetiDev authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    9a16fde View commit details
    Browse the repository at this point in the history
  13. util: fix util.getCallSites plurality

    `util.getCallSite` returns an array of call site objects. Rename the
    function to reflect that it returns a given count of frames captured
    as an array of call site object.
    
    Renames the first parameter `frames` to be `frameCount` to indicate
    that it specifies the count of returned call sites.
    
    PR-URL: #55626
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    legendecas authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    68dc15e View commit details
    Browse the repository at this point in the history
  14. Revert "fs,win: fix bug in paths with trailing slashes"

    This reverts commit 00b2f07.
    
    PR-URL: #55527
    Fixes: #17801
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
    rvagg authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    7b01758 View commit details
    Browse the repository at this point in the history
  15. typings: fix ModulesBinding types

    PR-URL: #55549
    Refs: https://github.com/nodejs/node/pull/55412/files#r1817708918
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    aduh95 authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    df4a0c9 View commit details
    Browse the repository at this point in the history
  16. doc: add write flag when open file as the demo code's intention

    PR-URL: #54626
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    robberfree authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    7f6ea83 View commit details
    Browse the repository at this point in the history
  17. doc: broken PerformanceObserver code sample

    The code sample at the top of the "Performance measurements API"
    section of the docs does not run.
    
    The code in question:
    
    ```js
    const { PerformanceObserver, performance } = require('node:perf_hooks');
    
    const obs = new PerformanceObserver((items) => {
      console.log(items.getEntries()[0].duration);
      performance.clearMarks();
    });
    obs.observe({ type: 'measure' });
    performance.measure('Start to Now');
    
    performance.mark('A');
    doSomeLongRunningProcess(() => {
      performance.measure('A to Now', 'A');
    
      performance.mark('B');
      performance.measure('A to B', 'A', 'B');
    });
    ```
    
    If you replace `doSomeLongRunningProcess` with an IIFE with a sleep()
    at the top of it, you get this:
    
    ```js
    const { PerformanceObserver, performance } = require('node:perf_hooks');
    
    const obs = new PerformanceObserver((items) => {
      console.log(items.getEntries()[0].duration);
      performance.clearMarks();
    });
    obs.observe({ type: 'measure' });
    performance.measure('Start to Now');
    
    performance.mark('A');
    
    (async function doSomeLongRunningProcess() {
      await new Promise(r => setTimeout(r, 5000));
      performance.measure('A to Now', 'A');
    
      performance.mark('B');
      performance.measure('A to B', 'A', 'B');
    })()
    ```
    
    When you run this, you get the following output:
    
    ```sh
    $ node performance-test.js
    17.873416
    
    node:internal/per_context/domexception:53
        ErrorCaptureStackTrace(this);
        ^
    DOMException [SyntaxError]: The "A" performance mark has not been set
        at new DOMException (node:internal/per_context/domexception:53:5)
        at __node_internal_ (node:internal/util:695:10)
        at getMark (node:internal/perf/usertiming:65:11)
        at calculateStartDuration (node:internal/perf/usertiming:202:13)
        at measure (node:internal/perf/usertiming:220:7)
        at Performance.measure (node:internal/perf/performance:135:12)
        at /private/tmp/performance-test.js:14:15
    
    Node.js v20.11.1
    ```
    
    I believe it's due to the call to `performance.clearMarks();` in the
    PerformanceObserver callback. If you remove that, it works as expected:
    
    ```js
    const { PerformanceObserver, performance } = require('node:perf_hooks');
    
    const obs = new PerformanceObserver((items) => {
      console.log(items.getEntries()[0].duration);
    });
    obs.observe({ type: 'measure' });
    performance.measure('Start to Now');
    
    performance.mark('A');
    
    (async function doSomeLongRunningProcess() {
      await new Promise(r => setTimeout(r, 5000));
      performance.measure('A to Now', 'A');
    
      performance.mark('B');
      performance.measure('A to B', 'A', 'B');
    })()
    ```
    
    ```sh
    $ node performance-test.js
    17.761083
    5002.468417
    ```
    
    PR-URL: #54227
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    domharrington authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    e124b0f View commit details
    Browse the repository at this point in the history
  18. tools: run daily WPT.fyi report on all supported releases

    PR-URL: #55619
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    panva authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    57d0ea6 View commit details
    Browse the repository at this point in the history
  19. tools: compact jq output in daily-wpt-fyi.yml action

    PR-URL: #55695
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    panva authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    7fefa36 View commit details
    Browse the repository at this point in the history
  20. deps: update sqlite to 3.47.0

    PR-URL: #55557
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    nodejs-github-bot authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    c1b3531 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2024

  1. crypto: fix RSA_PKCS1_PADDING error message

    The ability to revert the fix for CVE-2023-46809 was only added to
    Node.js 18.x, 20.x and 21.x as, per policy, security reverts are only
    added to the existing supported release lines at the time of the fix.
    
    The error message thrown when `RSA_PKCS1_PADDING` is used on `main`
    and subsequent major versions (i.e. Node.js 22 and 23) when OpenSSL
    does not support implicit rejections should not have suggested that
    it is possible to revert the fix.
    
    PR-URL: #55629
    Fixes: #55628
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    richardlau authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    c2ff449 View commit details
    Browse the repository at this point in the history
  2. module: simplify --inspect-brk handling

    Previously in the CommonJS loader, --inspect-brk is implemented
    checking whether the module points to the result of re-resolving
    process.argv[1] to determine whether the module is the entry point.
    This is unnecessarily complex, especially now that we store that
    information in the module as kIsMainSymbol. This patch updates
    it to simply check that symbol property instead.
    
    PR-URL: #55679
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    joyeecheung authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    8ab3140 View commit details
    Browse the repository at this point in the history
  3. meta: bump github/codeql-action from 3.26.10 to 3.27.0

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.10 to 3.27.0.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@e2b3eaf...6624720)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55682
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    dependabot[bot] authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    8bf99f1 View commit details
    Browse the repository at this point in the history
  4. meta: bump actions/checkout from 4.2.0 to 4.2.2

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.2.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@d632683...11bd719)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55683
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    ba907d6 View commit details
    Browse the repository at this point in the history
  5. meta: bump actions/cache from 4.0.2 to 4.1.2

    Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.2.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@0c45773...6849a64)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55684
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    40d9ca2 View commit details
    Browse the repository at this point in the history
  6. meta: bump actions/upload-artifact from 4.4.0 to 4.4.3

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.0 to 4.4.3.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@5076954...b4b15b8)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55685
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    f03d914 View commit details
    Browse the repository at this point in the history
  7. meta: bump rtCamp/action-slack-notify from 2.3.0 to 2.3.2

    Bumps [rtCamp/action-slack-notify](https://github.com/rtcamp/action-slack-notify) from 2.3.0 to 2.3.2.
    - [Release notes](https://github.com/rtcamp/action-slack-notify/releases)
    - [Commits](rtCamp/action-slack-notify@4e5fb42...c337377)
    
    ---
    updated-dependencies:
    - dependency-name: rtCamp/action-slack-notify
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55686
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    dependabot[bot] authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    9aa694f View commit details
    Browse the repository at this point in the history
  8. meta: bump actions/setup-node from 4.0.4 to 4.1.0

    Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.0.4 to 4.1.0.
    - [Release notes](https://github.com/actions/setup-node/releases)
    - [Commits](actions/setup-node@0a44ba7...39370e3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-node
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55687
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    7f392d4 View commit details
    Browse the repository at this point in the history
  9. meta: bump actions/setup-python from 5.2.0 to 5.3.0

    Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.2.0 to 5.3.0.
    - [Release notes](https://github.com/actions/setup-python/releases)
    - [Commits](actions/setup-python@f677139...0b93645)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-python
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55688
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Nov 3, 2024
    Configuration menu
    Copy the full SHA
    8dd0819 View commit details
    Browse the repository at this point in the history
  10. tools: fix root certificate updater

    Determine the NSS version from actual Firefox releases, instead of
    attempting to parse a wiki page (which is sensitive to formatting
    changes and relies on the page being up to date).
    
    PR-URL: #55681
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    richardlau authored and nodejs-github-bot committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    794cb51 View commit details
    Browse the repository at this point in the history
  11. crypto: update root certificates to NSS 3.104

    This is the certdata.txt[0] from NSS 3.104.
    
    This is the version of NSS that shipped in Firefox 131.0 on 2024-10-01.
    
    Certificates added:
    - FIRMAPROFESIONAL CA ROOT-A WEB
    - TWCA CYBER Root CA
    - SecureSign Root CA12
    - SecureSign Root CA14
    - SecureSign Root CA15
    
    [0] https://raw.githubusercontent.com/nss-dev/nss/refs/tags/NSS_3_104_RTM/lib/ckfw/builtins/certdata.txt
    
    PR-URL: #55681
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    richardlau authored and nodejs-github-bot committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    32ff100 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. sqlite: improve error handling using MaybeLocal

    As per James' suggestion, consistently use MaybeLocal and avoid Check()
    and ToLocalChecked() entirely.
    
    Refs: #54687
    PR-URL: #55571
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    tniessen authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    bdc2662 View commit details
    Browse the repository at this point in the history
  2. util: add sourcemap support to getCallSites

    PR-URL: #55589
    Fixes: #55109
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    marco-ippolito authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    d35cde6 View commit details
    Browse the repository at this point in the history
  3. tools: use util.parseArgs in lint-md

    PR-URL: #55694
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    RedYetiDev authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    0b58160 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. deps: update acorn to 8.14.0

    PR-URL: #55699
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    nodejs-github-bot authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    73cfaba View commit details
    Browse the repository at this point in the history
  2. test,crypto: update WebCryptoAPI WPT

    PR-URL: #55703
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    panva authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    58a7b00 View commit details
    Browse the repository at this point in the history
  3. src: nuke deprecated and un-used enum members in OptionEnvvarSettings

    Delete deprecated an never used enum options `kAllowedInEnvironment`
    and `kDisallowedInEnvironment` in `OptionEnvvarSettings`
    
    Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
    PR-URL: #53079
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    juanarbol authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    03dcd70 View commit details
    Browse the repository at this point in the history
  4. lib: prefer number to string in webidl type function

    PR-URL: #55489
    Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    jazelly authored and aduh95 committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    270da88 View commit details
    Browse the repository at this point in the history
  5. lib: implement webidl dictionary converter and use it in structuredClone

    This commit provides a factory to generate `dictionaryConverter`
    compliant with the spec. The implemented factory function is used for
    the `structuredClone` algorithm with updated test cases.
    
    PR-URL: #55489
    Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    jazelly authored and aduh95 committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    e53fe03 View commit details
    Browse the repository at this point in the history
  6. doc: update --max-semi-space-size description

    PR-URL: #55495
    Fixes: #55487
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    joebowbeer authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    25f8474 View commit details
    Browse the repository at this point in the history
  7. path,win: fix bug in resolve and normalize

    Fixes: #54025
    PR-URL: #55623
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    huseyinacacak-janea authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    7f68e54 View commit details
    Browse the repository at this point in the history
  8. tools: update ESLint to 9.14.0

    Bumps the eslint group with 7 updates in the /tools/eslint directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.25.2` | `7.26.0` |
    | [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.25.1` | `7.25.9` |
    | [@babel/plugin-syntax-import-attributes](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-syntax-import-attributes) | `7.25.6` | `7.26.0` |
    | [@stylistic/eslint-plugin-js](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin-js) | `2.8.0` | `2.10.1` |
    | [eslint](https://github.com/eslint/eslint) | `9.11.1` | `9.14.0` |
    | [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.3.1` | `50.4.3` |
    | [globals](https://github.com/sindresorhus/globals) | `15.10.0` | `15.11.0` |
    
    Updates `@babel/core` from 7.25.2 to 7.26.0
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.26.0/packages/babel-core)
    
    Updates `@babel/eslint-parser` from 7.25.1 to 7.25.9
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.9/eslint/babel-eslint-parser)
    
    Updates `@babel/plugin-syntax-import-attributes` from 7.25.6 to 7.26.0
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.26.0/packages/babel-plugin-syntax-import-attributes)
    
    Updates `@stylistic/eslint-plugin-js` from 2.8.0 to 2.10.1
    - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
    - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v2.10.1/packages/eslint-plugin-js)
    
    Updates `eslint` from 9.11.1 to 9.14.0
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
    - [Commits](eslint/eslint@v9.11.1...v9.14.0)
    
    Updates `eslint-plugin-jsdoc` from 50.3.1 to 50.4.3
    - [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
    - [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
    - [Commits](gajus/eslint-plugin-jsdoc@v50.3.1...v50.4.3)
    
    Updates `globals` from 15.10.0 to 15.11.0
    - [Release notes](https://github.com/sindresorhus/globals/releases)
    - [Commits](sindresorhus/globals@v15.10.0...v15.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: eslint
    - dependency-name: "@babel/eslint-parser"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: eslint
    - dependency-name: "@babel/plugin-syntax-import-attributes"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: eslint
    - dependency-name: "@stylistic/eslint-plugin-js"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: eslint
    - dependency-name: eslint
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: eslint
    - dependency-name: eslint-plugin-jsdoc
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: eslint
    - dependency-name: globals
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: eslint
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55689
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    9c40cd7 View commit details
    Browse the repository at this point in the history
  9. test: refactor some esm tests

    PR-URL: #55472
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    aduh95 authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    ecc6238 View commit details
    Browse the repository at this point in the history
  10. assert: fix deepStrictEqual on errors when cause is not undefined

    PR-URL: #55406
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    geeksilva97 authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    4da8d11 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. test: ignore unrelated events in FW watch tests

    Change assertions on `test-fs-watch-recursive-add-*` tests to only take
    into account change events that match the file.
    
    PR-URL: #55605
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Ceres6 authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    42f4659 View commit details
    Browse the repository at this point in the history
  2. src: provide workaround for container-overflow

    PR-URL: #55591
    Refs: #55584
    Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    lemire authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    ccac4ee View commit details
    Browse the repository at this point in the history
  3. doc: clarity to available addon options

    bullet pointed addon optons; wording clarity; fixes typo
    
    PR-URL: #55715
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    preveen-stack authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    98e5693 View commit details
    Browse the repository at this point in the history
  4. util: do not catch on circular @@toStringTag errors

    PR-URL: #55544
    Fixes: #55539
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Co-Authored-By: Colin Ihrig <cjihrig@gmail.com>
    RedYetiDev and cjihrig authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    c185e11 View commit details
    Browse the repository at this point in the history
  5. test: update performance-timeline wpt

    PR-URL: #55197
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    RedYetiDev authored and aduh95 committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    1aa7135 View commit details
    Browse the repository at this point in the history
  6. doc: consistent use of word child process

    reword "child" to "child process" wherever possible.
    this helps in maintaining clarity and precision,
    consistency while avoiding misinterpretation.
    
    PR-URL: #55654
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    gireeshpunathil authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    6f12f1e View commit details
    Browse the repository at this point in the history
  7. tools: fix c-ares updater script for Node.js 18

    GitHub Actions is by default running the tools updater workflow
    with Node.js 18. Avoid use of `import.meta.dirname`, which wasn't
    backported to Node.js 18.
    
    PR-URL: #55717
    Refs: #55445
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    richardlau authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    e0145b4 View commit details
    Browse the repository at this point in the history
  8. lib: use Promise.withResolvers() in timers

    PR-URL: #55720
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    anonrig authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    f38cefa View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. repl: runtime deprecate instantiating without new

    PR-URL: #54869
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    RedYetiDev authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    0368f2f View commit details
    Browse the repository at this point in the history
  2. deps: update icu to 76.1

    PR-URL: #55551
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    nodejs-github-bot authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    34dc8e3 View commit details
    Browse the repository at this point in the history
  3. lib: remove unnecessary optional chaining

    PR-URL: #55728
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    gurgunday authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    7788999 View commit details
    Browse the repository at this point in the history
  4. test: improve test coverage for ServerResponse

    Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
    PR-URL: #55711
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    juanarbol authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    6970a77 View commit details
    Browse the repository at this point in the history
  5. doc: enforce strict policy to semver-major releases

    Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
    PR-URL: #55732
    Refs: nodejs/Release#1054
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    RafaelGSS and aduh95 authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    5ddde04 View commit details
    Browse the repository at this point in the history
  6. test: add buffer to fs_permission tests

    PR-URL: #55734
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    RafaelGSS authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    c8e1298 View commit details
    Browse the repository at this point in the history
  7. lib: prefer symbol to number in webidl type function

    PR-URL: #55737
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    aduh95 authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    979526f View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. assert: differentiate cases where cause is undefined or missing

    PR-URL: #55738
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    6af5c4e View commit details
    Browse the repository at this point in the history
  2. doc: add esm example in path.md

    PR-URL: #55745
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    RedYetiDev authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    daf5346 View commit details
    Browse the repository at this point in the history
  3. doc: add path aliases typescript doc

    PR-URL: #55766
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Ceres6 authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    765f16c View commit details
    Browse the repository at this point in the history
  4. test: ensure that test priority is not higher than current priority

    PR-URL: #55739
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    LiviaMedeiros authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    a094a81 View commit details
    Browse the repository at this point in the history
  5. doc: clarify removal of experimental API does not require a deprecation

    PR-URL: #55746
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    37c941b View commit details
    Browse the repository at this point in the history
  6. fs: fix bufferSize option for opendir recursive

    The bufferSize option was not respected in recursive mode. This PR
    implements a naive solution to fix this issue until a better
    implementation can be designed.
    
    Fixes: #48820
    PR-URL: #55744
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Ethan-Arrowood authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    e0ef622 View commit details
    Browse the repository at this point in the history
  7. util: do not mark experimental feature as deprecated

    PR-URL: #55740
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    aduh95 authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    94be10a View commit details
    Browse the repository at this point in the history
  8. test: improve test coverage for child process message sending

    Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
    PR-URL: #55710
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    juanarbol authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    5d85b05 View commit details
    Browse the repository at this point in the history
  9. src: add cli option to preserve env vars on dr

    PR-URL: #55697
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    RafaelGSS authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    a243225 View commit details
    Browse the repository at this point in the history
  10. src: improve node:os userInfo performance

    PR-URL: #55719
    Reviewed-By: Robert Nagy <ronagy@icloud.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    anonrig authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    58a8eb4 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2024

  1. doc: consolidate history table of CustomEvent

    PR-URL: #55758
    Fixes: #55733
    Refs: #55733
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
    geeksilva97 authored Nov 9, 2024
    Configuration menu
    Copy the full SHA
    069ec1b View commit details
    Browse the repository at this point in the history
  2. doc: sort --report-exclude alphabetically

    PR-URL: #55788
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    RafaelGSS authored Nov 9, 2024
    Configuration menu
    Copy the full SHA
    0a00217 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2024

  1. tools: remove non-existent file from eslint config

    PR-URL: #55772
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    RedYetiDev authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    c5a1360 View commit details
    Browse the repository at this point in the history
  2. tools: make commit-queue check blocked label

    PR-URL: #55781
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    marco-ippolito authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    69f8794 View commit details
    Browse the repository at this point in the history
  3. tools: fix exclude labels for commit-queue

    The `gh` cli doesn't recognise `--no-label`. Instead exclude labels
    via the `--search` flag.
    
    Refs: #55781 (comment)
    Refs: cli/cli#4142
    PR-URL: #55809
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    richardlau authored and LiviaMedeiros committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    7bcc250 View commit details
    Browse the repository at this point in the history
  4. build: apply cpp linting and formatting to ncrypto

    PR-URL: #55362
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    RedYetiDev authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    e7991e8 View commit details
    Browse the repository at this point in the history
  5. build: use glob for dependencies of out/Makefile

    The `out/Makefile` target in `Makefile` has an incomplete list of
    `.gyp` files for Node.js dependencies in `deps`, but also the ones
    that are listed are unconditional. If using any of the `--shared-*`
    configure options, it should be possible to still build Node.js if
    the corresponding directory under `deps` is removed.
    
    Convert the explicit list of dependency `*.gyp` files for the
    `out/Makefile` target to a glob. This will pick up any toplevel
    `.gyp` files for dependencies present in `deps`.
    
    PR-URL: #55789
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    richardlau authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    fe1dd26 View commit details
    Browse the repository at this point in the history
  6. doc: clarify triager role

    highlight additional points around triager role
    
    Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
    PR-URL: #55775
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    gireeshpunathil and aduh95 authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    e542686 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. build: implement node_use_amaro flag in GN build

    PR-URL: #55798
    Refs: #54136
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    zcbenz authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    57f23b4 View commit details
    Browse the repository at this point in the history
  2. doc: run license-builder

    PR-URL: #55813
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    github-actions[bot] authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    8531e07 View commit details
    Browse the repository at this point in the history
  3. esm: fix import.meta.resolve crash

    PR-URL: #55777
    Fixes: #55518
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    marco-ippolito authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    07e2819 View commit details
    Browse the repository at this point in the history
  4. permission: ignore internalModuleStat on module loading

    This improves Permission Model usage when allowing read access to
    specifi modules. To achieve that, the permission model check on
    internalModuleStat has been removed meaning that on module loading,
    uv_fs_stat is performed on files and folders even when the permission
    model is enabled. Although a uv_fs_stat is performed, reading/executing
    the module will still pass by the permission model check.
    
    Without this PR when an app tries to --allow-fs-read=./a.js
    --allow-fs-read=./b.js where `a` attempt to load b, it will fails as
    it reads $pwd and no permission has been given to this path.
    
    PR-URL: #55797
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    RafaelGSS authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    3a0968d View commit details
    Browse the repository at this point in the history
  5. 2024-11-11, Version 23.2.0 (Current)

    Notable changes:
    
    crypto:
      * update root certificates to NSS 3.104 (Richard Lau) #55681
    doc:
      * move typescript support to active development (Marco Ippolito) #55536
      * add jazelly to collaborators (Jason Zhang) #55531
    fs:
      * (SEMVER-MINOR) make `dirent.path` writable (Antoine du Hamel) #55547
    http:
      * (SEMVER-MINOR) add diagnostic channel `http.client.request.created` (Marco Ippolito) #55586
    module:
      * (SEMVER-MINOR) add `findPackageJSON` util (Jacob Smith) #55412
      * (SEMVER-MINOR) add `module.stripTypeScriptTypes` (Marco Ippolito) #55282
    
    PR-URL: #55741
    aduh95 committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    c52c670 View commit details
    Browse the repository at this point in the history
  6. benchmark: add test_runner/mock-fn

    PR-URL: #55771
    Refs: #55723
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    RedYetiDev authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    2d63dee View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. deps: update c-ares to v1.34.3

    PR-URL: #55803
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    nodejs-github-bot authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    03d414e View commit details
    Browse the repository at this point in the history
  2. report: fix network queries in getReport libuv with exclude-network

    PR-URL: #55602
    Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    Tofandel authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    2310409 View commit details
    Browse the repository at this point in the history
  3. test: fix permission fixtures lint

    PR-URL: #55819
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    RafaelGSS authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    bd0c4f8 View commit details
    Browse the repository at this point in the history
  4. doc: update unflag info of import.meta.resolve

    PR-URL: #55810
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    skyclouds2001 authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    0d29315 View commit details
    Browse the repository at this point in the history
  5. 2024-11-12, Version 18.20.5 'Hydrogen' (LTS)

    Notable changes:
    
    esm:
      * mark import attributes and JSON module as stable (Nicolò Ribaudo) #55333
    
    PR-URL: #55768
    aduh95 committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    f17b9a4 View commit details
    Browse the repository at this point in the history
  6. doc: correct max-semi-space-size statement

    Signed-off-by: Joe Bowbeer <joe.bowbeer@gmail.com>
    PR-URL: #55812
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    joebowbeer authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    598bbf4 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. module: tidy code string concat → string templates

    PR-URL: #55820
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    JakobJingleheimer authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    b52a49b View commit details
    Browse the repository at this point in the history
  2. doc: fix history info for URL.prototype.toJSON

    PR-URL: #55818
    Fixes: #55806
    Refs: #11236
    Refs: #17365
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    aduh95 authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    be5a500 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. doc: add notable-change mention to sec release

    PR-URL: #55830
    Refs: nodejs/changelog-maker#167
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    RafaelGSS authored Nov 14, 2024
    Configuration menu
    Copy the full SHA
    8a29648 View commit details
    Browse the repository at this point in the history
  2. fs: remove dirent.path

    PR-URL: #55548
    Fixes: #55538
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
    aduh95 committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    d9540b5 View commit details
    Browse the repository at this point in the history
  3. events: add hasEventListener util for validate

    There was some repetitive logics that validated the existence of
    eventlisteners. We now replace this with a single line of,
    `hasEventListener(self, type)`.
    `self` is the object(e.g. EventEmitter) to be checked whether
    eventlisteners exists or not.
    `type` is the type of eventlisteners, which can be `undefined`
    
    PR-URL: #55230
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    sungpaks authored Nov 14, 2024
    Configuration menu
    Copy the full SHA
    7a461ed View commit details
    Browse the repository at this point in the history
  4. fs: runtime deprecate fs.F_OK, fs.R_OK, fs.W_OK, fs.X_OK

    PR-URL: #49686
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    LiviaMedeiros authored Nov 14, 2024
    Configuration menu
    Copy the full SHA
    b02cd41 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2024

  1. doc: clarify UV_THREADPOOL_SIZE env var usage

    Setting of UV_THREADPOOL_SIZE from inside process using
    process.env.UV_THREADPOOL_SIZE is not guaranteed to work as
    the thread pool would have been created as part of the runtime
    initialisation much before user code is run.
    
    update doc/api/cli.md
    
    PR-URL: #55832
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    preveen-stack authored Nov 15, 2024
    Configuration menu
    Copy the full SHA
    0c8ef48 View commit details
    Browse the repository at this point in the history
  2. doc: add -S flag release preparation example

    PR-URL: #55836
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored Nov 15, 2024
    Configuration menu
    Copy the full SHA
    def4c28 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2024

  1. benchmark: add test-reporters

    PR-URL: #55757
    Refs: #55723
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
    RedYetiDev authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    7d28de9 View commit details
    Browse the repository at this point in the history
  2. doc: add node:sqlite to mandatory node: prefix list

    PR-URL: #55846
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    sapphi-red authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    b67986f View commit details
    Browse the repository at this point in the history
  3. doc: add history entries for JSON modules stabilization

    PR-URL: #55855
    Refs: #55333
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    aduh95 authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    a6d853c View commit details
    Browse the repository at this point in the history
  4. doc: remove non-working example

    PR-URL: #55856
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    aduh95 authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    669b692 View commit details
    Browse the repository at this point in the history
  5. deps: update undici to 6.21.0

    PR-URL: #55851
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
    nodejs-github-bot authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    2933866 View commit details
    Browse the repository at this point in the history
  6. fs: fix getDirent().parentPath when type is UV_DIRENT_UNKNOWN

    PR-URL: #55553
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    LiviaMedeiros authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    c91ce21 View commit details
    Browse the repository at this point in the history
  7. deps: update simdutf to 5.6.1

    PR-URL: #55850
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    nodejs-github-bot authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    7fa2a13 View commit details
    Browse the repository at this point in the history
  8. Revert "src: migrate String::Value to String::ValueView"

    This reverts commit 45c6a9e.
    
    PR-URL: #55828
    Fixes: #55826
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    targos authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    9f2885a View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2024

  1. test: add test case for util.inspect

    PR-URL: #55778
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    ljharb authored and nodejs-github-bot committed Nov 17, 2024
    Configuration menu
    Copy the full SHA
    23275cc View commit details
    Browse the repository at this point in the history
  2. util: inspect: enumerable Symbols no longer have square brackets

    Implements https://github.com/orgs/nodejs/discussions/41283#discussioncomment-11188239
    
    PR-URL: #55778
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    ljharb authored and nodejs-github-bot committed Nov 17, 2024
    Configuration menu
    Copy the full SHA
    e577618 View commit details
    Browse the repository at this point in the history
  3. src: use env strings to create sqlite results

    PR-URL: #55785
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    targos authored Nov 17, 2024
    Configuration menu
    Copy the full SHA
    b648d37 View commit details
    Browse the repository at this point in the history
  4. test_runner: error on mocking an already mocked date

    Fixes #55849
    
    PR-URL: #55858
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    RedYetiDev authored Nov 17, 2024
    Configuration menu
    Copy the full SHA
    775a100 View commit details
    Browse the repository at this point in the history
  5. fs: prevent unwanted dependencyOwners removal

    Remove files from watcher `dependencyOwners` on file change only if it
    has no other owners.
    
    Co-authored-by: Pietro Marchini <pietro.marchini94@gmail.com>
    PR-URL: #55565
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Ceres6 and pmarchini authored Nov 17, 2024
    Configuration menu
    Copy the full SHA
    b0051de View commit details
    Browse the repository at this point in the history
  6. tools: disable doc building when ICU is not available

    PR-URL: #51192
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    aduh95 authored and nodejs-github-bot committed Nov 17, 2024
    Configuration menu
    Copy the full SHA
    be34b5e View commit details
    Browse the repository at this point in the history
  7. tools: update doc to new version

    PR-URL: #51192
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    nodejs-github-bot committed Nov 17, 2024
    Configuration menu
    Copy the full SHA
    b1ee186 View commit details
    Browse the repository at this point in the history
  8. crypto: allow length=0 for HKDF and PBKDF2 in SubtleCrypto.deriveBits

    PR-URL: #55866
    Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    panva authored Nov 17, 2024
    Configuration menu
    Copy the full SHA
    1618463 View commit details
    Browse the repository at this point in the history
  9. tools: bump @eslint/plugin-kit from 0.2.0 to 0.2.3 in /tools/eslint

    Bumps [@eslint/plugin-kit](https://github.com/eslint/rewrite) from 0.2.0 to 0.2.3.
    - [Release notes](https://github.com/eslint/rewrite/releases)
    - [Changelog](https://github.com/eslint/rewrite/blob/main/release-please-config.json)
    - [Commits](eslint/rewrite@core-v0.2.0...plugin-kit-v0.2.3)
    
    ---
    updated-dependencies:
    - dependency-name: "@eslint/plugin-kit"
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55875
    Reviewed-By: Claudio Wunder <cwunder@gnome.org>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Nov 17, 2024
    Configuration menu
    Copy the full SHA
    d159c97 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2024

  1. sqlite: add support for SQLite Session Extension

    PR-URL: #54181
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    louwers authored Nov 18, 2024
    Configuration menu
    Copy the full SHA
    746b17e View commit details
    Browse the repository at this point in the history
  2. lib: remove unused file fetch_module

    PR-URL: #55880
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    targos authored Nov 18, 2024
    Configuration menu
    Copy the full SHA
    a2edde4 View commit details
    Browse the repository at this point in the history
  3. tools: bump cross-spawn from 7.0.3 to 7.0.5 in /tools/eslint

    Bumps [cross-spawn](https://github.com/moxystudio/node-cross-spawn) from 7.0.3 to 7.0.5.
    - [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
    - [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.5)
    
    ---
    updated-dependencies:
    - dependency-name: cross-spawn
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #55894
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    dependabot[bot] authored Nov 18, 2024
    Configuration menu
    Copy the full SHA
    f8c9ab4 View commit details
    Browse the repository at this point in the history
  4. tools: fix riscv64 build failed

    PR-URL: #52888
    Reviewed-By: Stewart X Addison <sxa@redhat.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    luyahan authored Nov 18, 2024
    Configuration menu
    Copy the full SHA
    bdaa898 View commit details
    Browse the repository at this point in the history
  5. doc: add history entry for import assertion removal

    PR-URL: #55883
    Refs: #52104
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    aduh95 authored Nov 18, 2024
    Configuration menu
    Copy the full SHA
    a8daa45 View commit details
    Browse the repository at this point in the history
  6. build: compile bundled ada conditionally

    The --shared-ada flag was introduced in #52924, but the implementation
    was incomplete.
    
    Resolves #52914
    
    PR-URL: #55886
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    jirutka authored and nodejs-github-bot committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    88719f6 View commit details
    Browse the repository at this point in the history
  7. build: compile bundled simdjson conditionally

    The --shared-simdjson flag was introduced in #52924, but the
    implementation was incomplete.
    
    Resolves #52914
    
    PR-URL: #55886
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    jirutka authored and nodejs-github-bot committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    dd15563 View commit details
    Browse the repository at this point in the history
  8. build: compile bundled simdutf conditionally

    The --shared-simdutf flag was introduced in #52924, but the
    implementation was incomplete.
    
    Resolves #52914
    
    PR-URL: #55886
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    jirutka authored and nodejs-github-bot committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    64c647e View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. deps: update simdutf to 5.6.2

    PR-URL: #55889
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    nodejs-github-bot authored Nov 19, 2024
    Configuration menu
    Copy the full SHA
    d183068 View commit details
    Browse the repository at this point in the history
  2. doc,lib,src,test: unflag sqlite module

    This commit allows the node:sqlite module to be used without
    starting Node with a CLI flag. The module is still experimental.
    
    Fixes: #55854
    PR-URL: #55890
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    cjihrig authored Nov 19, 2024
    Configuration menu
    Copy the full SHA
    1d01ad6 View commit details
    Browse the repository at this point in the history
  3. test_runner: mark context.plan() as stable

    This function does not require a CLI flag, does not emit a warning,
    and is a fairly simple API that is already being used heavily in
    the ecosystem. This commit marks context.plan() as stable.
    
    PR-URL: #55895
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    cjihrig authored Nov 19, 2024
    Configuration menu
    Copy the full SHA
    01b9a54 View commit details
    Browse the repository at this point in the history
  4. test_runner: mark snapshot testing as stable

    This commit marks the test runner's snapshot testing API as
    stable.
    
    PR-URL: #55897
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    cjihrig authored Nov 19, 2024
    Configuration menu
    Copy the full SHA
    c921676 View commit details
    Browse the repository at this point in the history
  5. doc: include git node release --promote to steps

    Refs: nodejs/node-core-utils#835
    PR-URL: #55835
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    RafaelGSS authored Nov 19, 2024
    Configuration menu
    Copy the full SHA
    172841c View commit details
    Browse the repository at this point in the history
  6. doc: fix relative path mention in --allow-fs

    PR-URL: #55791
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    RafaelGSS authored Nov 19, 2024
    Configuration menu
    Copy the full SHA
    f4cd4d9 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2024

  1. tools: lint js in doc/**/*.md

    PR-URL: #55904
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    LiviaMedeiros authored Nov 20, 2024
    Configuration menu
    Copy the full SHA
    2c11d6e View commit details
    Browse the repository at this point in the history
  2. src: fix kill signal on Windows

    Fixes: #42923
    PR-URL: #55514
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
    huseyinacacak-janea authored Nov 20, 2024
    Configuration menu
    Copy the full SHA
    eb1cb36 View commit details
    Browse the repository at this point in the history
  3. 2024-11-20, Version 20.18.1 'Iron' (LTS)

    Notable changes:
    
    doc:
      * add abmusse to collaborators (Abdirahim Musse) #55086
    
    PR-URL: #55879
    marco-ippolito committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    81f7c76 View commit details
    Browse the repository at this point in the history
  4. test: fix determining lower priority

    PR-URL: #55908
    Fixes: NixOS/nixpkgs#355919
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    LiviaMedeiros authored Nov 20, 2024
    Configuration menu
    Copy the full SHA
    f270462 View commit details
    Browse the repository at this point in the history
  5. 2024-11-20, Version 23.3.0 (Current)

    Notable changes:
    
    doc:
      * enforce strict policy to semver-major releases (Rafael Gonzaga) #55732
    src:
      * (SEMVER-MINOR) add cli option to preserve env vars on dr (Rafael Gonzaga) #55697
    util:
      * (SEMVER-MINOR) add sourcemap support to getCallSites (Marco Ippolito) #55589
      * (SEMVER-MINOR) fix util.getCallSites plurality (Chengzhong Wu) #55626
    
    PR-URL: #55921
    RafaelGSS committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    cb7d855 View commit details
    Browse the repository at this point in the history
  6. doc: add esm examples to node:timers

    PR-URL: #55857
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    mfdebian authored Nov 20, 2024
    Configuration menu
    Copy the full SHA
    d894772 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2024

  1. build: fix GN build for sqlite

    PR-URL: #55912
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    zcbenz authored Nov 21, 2024
    Configuration menu
    Copy the full SHA
    5ba3b54 View commit details
    Browse the repository at this point in the history
  2. deps: update simdjson to 3.10.1

    PR-URL: #54678
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    nodejs-github-bot authored Nov 21, 2024
    Configuration menu
    Copy the full SHA
    6db7b24 View commit details
    Browse the repository at this point in the history
  3. doc: remove RedYetiDev from triagers team

    PR-URL: #55947
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    RedYetiDev authored Nov 21, 2024
    Configuration menu
    Copy the full SHA
    ead8bd1 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2024

  1. sqlite: add StatementSync.prototype.iterate method

    PR-URL: #54213
    Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    tpoisseau authored and targos committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    bc701e9 View commit details
    Browse the repository at this point in the history
  2. test: make x509 crypto tests work with BoringSSL

    PR-URL: #55927
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    codebytere authored Nov 22, 2024
    Configuration menu
    Copy the full SHA
    3178a76 View commit details
    Browse the repository at this point in the history
  3. doc: fix Node.js 23 column in CHANGELOG.md

    The column for Node.js 23 in `CHANGELOG.md` is missing an opening
    `<td>` tag so was not correctly rendering.
    
    PR-URL: #55935
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    richardlau authored Nov 22, 2024
    Configuration menu
    Copy the full SHA
    05b3fcb View commit details
    Browse the repository at this point in the history
  4. tools: add linter for release commit proposals

    PR-URL: #55923
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    aduh95 authored Nov 22, 2024
    Configuration menu
    Copy the full SHA
    02921e1 View commit details
    Browse the repository at this point in the history
  5. doc: document approach for building wasm in deps

    Refs: nodejs/security-wg#1236
    
    Signed-off-by: Michael Dawson <midawson@redhat.com>
    PR-URL: #55940
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    mhdawson authored Nov 22, 2024
    Configuration menu
    Copy the full SHA
    92c7dde View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2024

  1. build: use variable for crypto dep path

    PR-URL: #55928
    Reviewed-By: Cheng Zhao <zcbenz@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    codebytere authored Nov 23, 2024
    Configuration menu
    Copy the full SHA
    d3bcb97 View commit details
    Browse the repository at this point in the history
  2. module: do not warn when require(esm) comes from node_modules

    As part of the standard experimental feature graduation
    policy, when we unflagged require(esm) we moved the
    experimental warning to be emitted when require() is
    actually used to load ESM, which previously was an error.
    However, some packages in the ecosystem have already
    being using try-catch to load require(esm) to e.g.
    resolve optional dependency, and emitting warning from
    there instead of throwing directly could break the CLI
    output.
    
    To reduce the disruption for releases, as a compromise, this
    patch skips the warning if require(esm) comes from
    node_modules, where users typically don't have much control
    over the code. This warning will be eventually removed
    when require(esm) becomes stable.
    
    This patch was originally intended for the LTS releases,
    though it seems there's appetite for it on v23.x as
    well so it's re-targeted to the main branch.
    
    PR-URL: #55960
    Refs: #55217
    Refs: #52697
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    joyeecheung authored Nov 23, 2024
    Configuration menu
    Copy the full SHA
    1919560 View commit details
    Browse the repository at this point in the history
  3. doc: add esm example for zlib

    PR-URL: #55946
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    peixotoleonardo authored Nov 23, 2024
    Configuration menu
    Copy the full SHA
    6190bbc View commit details
    Browse the repository at this point in the history
  4. deps: update zlib to 1.3.0.1-motley-7e2e4d7

    PR-URL: #54432
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    nodejs-github-bot authored and jasnell committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    3889b44 View commit details
    Browse the repository at this point in the history
  5. crypto: allow non-multiple of 8 in SubtleCrypto.deriveBits

    PR-URL: #55296
    Reviewed-By: James M Snell <jasnell@gmail.com>
    panva authored and jasnell committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    0116e80 View commit details
    Browse the repository at this point in the history
  6. doc: doc how to add message for promotion

    Document the process for adding a message that
    ambassadors will be asked to promote.
    
    Signed-off-by: Michael Dawson <midawson@redhat.com>
    PR-URL: #55843
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    mhdawson authored and jasnell committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    3218698 View commit details
    Browse the repository at this point in the history
  7. build: add create release proposal action

    PR-URL: #55690
    Refs: nodejs/security-wg#860
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    RafaelGSS authored Nov 23, 2024
    Configuration menu
    Copy the full SHA
    c75aaac View commit details
    Browse the repository at this point in the history
  8. doc: order node:crypto APIs alphabetically

    PR-URL: #55831
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    badkeyy authored Nov 23, 2024
    Configuration menu
    Copy the full SHA
    a2a0c22 View commit details
    Browse the repository at this point in the history
  9. assert: add partialDeepStrictEqual

    Fixes: #50399
    
    Co-Authored-By: Cristian Barlutiu <cristian.barlutiu@gmail.com>
    PR-URL: #54630
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Jithil P Ponnan <jithil@outlook.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    puskin94 and synapse authored Nov 23, 2024
    Configuration menu
    Copy the full SHA
    d0d5209 View commit details
    Browse the repository at this point in the history
  10. test: convert readdir test to use test runner

    Signed-off-by: tchetwin <tchetwin@bloomberg.net>
    PR-URL: #55750
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    tchetwin authored Nov 23, 2024
    Configuration menu
    Copy the full SHA
    e92499c View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2024

  1. deps: upgrade npm to 10.9.1

    PR-URL: #55951
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    npm-cli-bot authored Nov 24, 2024
    Configuration menu
    Copy the full SHA
    1d0738a View commit details
    Browse the repository at this point in the history
  2. test: make HTTP/1.0 connection test more robust

    Fixes: #47200
    
    Co-authored-by: Luigi Pinca <luigipinca@gmail.com>
    PR-URL: #55959
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    FliegendeWurst and lpinca authored Nov 24, 2024
    Configuration menu
    Copy the full SHA
    b6fe731 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2024

  1. test_runner: simplify hook running logic

    This commit removes some asynchronous logic from the runHook()
    method and replaces ArrayPrototypeReduce() with a for loop.
    
    PR-URL: #55963
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    cjihrig authored Nov 25, 2024
    Configuration menu
    Copy the full SHA
    b09618e View commit details
    Browse the repository at this point in the history
  2. lib: avoid excluding symlinks in recursive fs.readdir with filetypes

    Fixes: #52663
    Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
    PR-URL: #55714
    Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    juanarbol authored Nov 25, 2024
    Configuration menu
    Copy the full SHA
    c9bf257 View commit details
    Browse the repository at this point in the history
  3. test_runner: refactor build Promise in Suite()

    This commit refactors the buildSuite Promise logic in the Suite
    constructor to use an async function instead of creating an
    awkward primordial-based Promise chain.
    
    PR-URL: #55958
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    cjihrig authored and nodejs-github-bot committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    216fd20 View commit details
    Browse the repository at this point in the history
  4. test_runner: refactor Promise chain in run()

    This commit refactors the chain of functions in run() to use an
    async function instead of creating an awkward primordial-based
    Promise chain.
    
    PR-URL: #55958
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    cjihrig authored and nodejs-github-bot committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    3c35188 View commit details
    Browse the repository at this point in the history
  5. tools: use tokenless Codecov uploads

    Refs: https://docs.codecov.com/docs/codecov-tokens#uploading-without-a-token
    PR-URL: #55943
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    targos authored Nov 25, 2024
    Configuration menu
    Copy the full SHA
    ce346b6 View commit details
    Browse the repository at this point in the history
  6. doc: add vetted courses to the ambassador benefits

    Signed-off-by: Matteo Collina <hello@matteocollina.com>
    PR-URL: #55934
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mcollina authored Nov 25, 2024
    Configuration menu
    Copy the full SHA
    abd95a8 View commit details
    Browse the repository at this point in the history
  7. doc: add doc for PerformanceObserver.takeRecords()

    PR-URL: #55786
    Fixes: #55779
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    skyclouds2001 authored Nov 25, 2024
    Configuration menu
    Copy the full SHA
    b17a1fb View commit details
    Browse the repository at this point in the history
  8. assert: optimize partial comparison of two Sets

    PR-URL: #55970
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored Nov 25, 2024
    Configuration menu
    Copy the full SHA
    a43a283 View commit details
    Browse the repository at this point in the history
  9. doc: deprecate passing invalid types in fs.existsSync

    PR-URL: #55892
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Ceres6 authored Nov 25, 2024
    Configuration menu
    Copy the full SHA
    a01319a View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2024

  1. quic: multiple updates to quic impl

    * separate stats and symbols into separate files
    * quic: rename `EndpointStats` and `SessionStats` to be consistent
      * s/EndpointStats/QuicEndpointStats/
      * s/SessionStats/QuicSessionStats/
    * separate state into separate files and other cleanups
    * extend tls options validations
    * rename classes for consistency and other cleanups
    
    PR-URL: #55971
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    jasnell committed Nov 26, 2024
    Configuration menu
    Copy the full SHA
    3511c5c View commit details
    Browse the repository at this point in the history
  2. deps: update simdutf to 5.6.3

    PR-URL: #55973
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    nodejs-github-bot authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    9fde4f6 View commit details
    Browse the repository at this point in the history
  3. deps: update ngtcp2 to 1.9.0

    PR-URL: #55975
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    nodejs-github-bot authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    1fd48f2 View commit details
    Browse the repository at this point in the history
  4. deps: update corepack to 0.30.0

    PR-URL: #55977
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    nodejs-github-bot authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    619355b View commit details
    Browse the repository at this point in the history
  5. http2: fix memory leak caused by premature listener removing

    Http2Session should always call ondone into JS to detach the
    handle. In some case, ondone is defered to be called by the
    StreamListener through WriteWrap, we should be careful of this
    before getting rid of the StreamListener.
    
    PR-URL: #55966
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    ywave620 authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    fb8de03 View commit details
    Browse the repository at this point in the history
  6. build: set node_arch to target_cpu in GN

    PR-URL: #55967
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    codebytere authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    0ba264f View commit details
    Browse the repository at this point in the history
  7. build: avoid compiling with VS v17.12

    Refs: nodejs/build#3963
    PR-URL: #55930
    Refs: #53863
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    StefanStojanovic authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    542f252 View commit details
    Browse the repository at this point in the history
  8. src: safely remove the last line from dotenv

    Refs: #55925
    PR-URL: #55982
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    islandryu authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    3bb1d28 View commit details
    Browse the repository at this point in the history
  9. tools: add WPT updater for specific subsystems

    PR-URL: #54460
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    mertcanaltin authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    4f62ab5 View commit details
    Browse the repository at this point in the history
  10. tools: update WPT updater

    Update the workflow to support subsystems that contains non alphanumeric
    char. Remove the Jenkins token as it is unused. Update external actions.
    Use shorter ref for upstream commits.
    
    PR-URL: #56003
    Reviewed-By: Filip Skokan <panva.ip@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    aduh95 authored Nov 26, 2024
    Configuration menu
    Copy the full SHA
    7450332 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2024

  1. process: deprecate features.{ipv6,uv} and features.tls_*

    PR-URL: #55545
    Fixes: #55537
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Renegade334 authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    ae8280c View commit details
    Browse the repository at this point in the history
  2. cli: implement --trace-env and --trace-env-[js|native]-stack

    This implements --trace-env, --trace-env-js-stack and
    --trace-env-native-stack CLI options which can be used to find
    out what environment variables are accessed and where they are
    accessed.
    
    PR-URL: #55604
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joyeecheung authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    9029aec View commit details
    Browse the repository at this point in the history
  3. doc: remove confusing and outdated sentence

    Remove confusing and outdated sentence in `doc/api/stream.md`.
    
    Fixes: #55987
    PR-URL: #55988
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    lpinca authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    17f39bc View commit details
    Browse the repository at this point in the history
  4. doc: fix deprecation codes

    PR-URL: #56018
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    panva authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    5bdf1c4 View commit details
    Browse the repository at this point in the history
  5. doc: improve GN build documentation a bit

    PR-URL: #55968
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    codebytere authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    c6d3fdd View commit details
    Browse the repository at this point in the history
  6. doc: add history entry for textEncoder.encodeInto()

    Fixes: #55938
    PR-URL: #55990
    Refs: #29524
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    lpinca authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    090aa8b View commit details
    Browse the repository at this point in the history
  7. doc: move history entry to class description

    Move the history entry for the `TextDecoder` class into the class
    description itself instead of its constructor.
    
    Refs: #55938
    PR-URL: #55991
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    lpinca authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    db8ff56 View commit details
    Browse the repository at this point in the history
  8. doc: add FAQ to releases section

    PR-URL: #55992
    Reviewed-By: Ruy Adorno <ruy@vlt.sh>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    RafaelGSS authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    585f7bc View commit details
    Browse the repository at this point in the history
  9. tools: filter release keys to reduce interactivity

    PR-URL: #55950
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    aduh95 authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    5ae07d0 View commit details
    Browse the repository at this point in the history
  10. doc: remove unused import from sample code

    The `node:path` module is referenced in a code snippet that doesn't
    actually use it.
    
    PR-URL: #55570
    Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    blended-bram authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    e64f949 View commit details
    Browse the repository at this point in the history
  11. lib: refactor code to improve readability

    PR-URL: #55995
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    pmarchini authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    24a8662 View commit details
    Browse the repository at this point in the history
  12. doc: add added tag and fix typo sqlite.md

    PR-URL: #56012
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    louwers authored Nov 27, 2024
    Configuration menu
    Copy the full SHA
    853b304 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2024

  1. test,crypto: update WebCryptoAPI WPT

    PR-URL: #55997
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    panva authored Nov 28, 2024
    Configuration menu
    Copy the full SHA
    08e0147 View commit details
    Browse the repository at this point in the history
  2. fs: lazily load ReadFileContext

    PR-URL: #55998
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    gurgunday authored Nov 28, 2024
    Configuration menu
    Copy the full SHA
    ba912ee View commit details
    Browse the repository at this point in the history
  3. test: update WPT for url to 67880a4eb83ca9aa732eec4b35a1971ff5bf37ff

    PR-URL: #55999
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    nodejs-github-bot authored Nov 28, 2024
    Configuration menu
    Copy the full SHA
    d09458f View commit details
    Browse the repository at this point in the history
  4. src: fix check fd

    PR-URL: #56000
    Fixes: #55983
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Jason Zhang <xzha4350@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    theanarkh authored Nov 28, 2024
    Configuration menu
    Copy the full SHA
    aa7c8cc View commit details
    Browse the repository at this point in the history
  5. quic: update more QUIC implementation

    Signed-off-by: James M Snell <jasnell@gmail.com>
    PR-URL: #55986
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    jasnell committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    4cf6fab View commit details
    Browse the repository at this point in the history
  6. tools: fix nghttp3 updater script

    PR-URL: #56007
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    aduh95 authored Nov 28, 2024
    Configuration menu
    Copy the full SHA
    0a9524b View commit details
    Browse the repository at this point in the history
  7. tools: allow dispatch of tools.yml from forks

    PR-URL: #56008
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    aduh95 authored Nov 28, 2024
    Configuration menu
    Copy the full SHA
    b5eb77f View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2024

  1. deps: update zlib to 1.3.0.1-motley-82a5fec

    PR-URL: #55980
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    nodejs-github-bot authored Nov 29, 2024
    Configuration menu
    Copy the full SHA
    4efb7ae View commit details
    Browse the repository at this point in the history
  2. tools: fix update-undici script

    The `build:node` npm script now expects esbuild to be installed and
    bin-linked.
    
    Closes: #56061
    PR-URL: #56069
    Fixes: #56061
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    targos authored Nov 29, 2024
    Configuration menu
    Copy the full SHA
    61b077d View commit details
    Browse the repository at this point in the history
  3. sqlite: deps include sqlite3ext.h

    PR-URL: #56010
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    himself65 authored Nov 29, 2024
    Configuration menu
    Copy the full SHA
    22792b8 View commit details
    Browse the repository at this point in the history
  4. zlib: deprecate classes usage without new

    PR-URL: #55718
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Robert Nagy <ronagy@icloud.com>
    anonrig authored Nov 29, 2024
    Configuration menu
    Copy the full SHA
    4ee87b8 View commit details
    Browse the repository at this point in the history
  5. meta: add releasers as CODEOWNERS to proposal action

    PR-URL: #56043
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    RafaelGSS authored Nov 29, 2024
    Configuration menu
    Copy the full SHA
    1c81dbb View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2024

  1. build: remove defaults for create-release-proposal

    To prevent users from executing the workflow via CLI
    without passing the desired inputs.
    
    PR-URL: #56042
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    RafaelGSS authored Nov 30, 2024
    Configuration menu
    Copy the full SHA
    03ec900 View commit details
    Browse the repository at this point in the history
  2. doc: rename file to advocacy-ambassador-program.md

    PR-URL: #56046
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    tniessen authored Nov 30, 2024
    Configuration menu
    Copy the full SHA
    3fb2ea8 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2024

  1. test: move test-worker-arraybuffer-zerofill to parallel

    Move `test/sequential/test-worker-arraybuffer-zerofill.js` back to
    `test/parallel/test-worker-arraybuffer-zerofill.js` and remove the
    flaky designation.
    
    The original issue is likely the same as other tests that time out.
    
    Refs: #54918
    Refs: #54839
    Refs: #54802
    PR-URL: #56053
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: LiviaMedeiros <livia@cirno.name>
    Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
    lpinca authored Dec 1, 2024
    Configuration menu
    Copy the full SHA
    3f9c6c0 View commit details
    Browse the repository at this point in the history
  2. src: avoid copy on getV8FastApiCallCount

    PR-URL: #56081
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    anonrig authored Dec 1, 2024
    Configuration menu
    Copy the full SHA
    de5f91d View commit details
    Browse the repository at this point in the history
  3. src: add async context frame to AsyncResource

    Add member to hold the async context frame to AsyncResource to avoid
    the need for the async_resource_context_frames_ map in env.
    
    Semver major because it changes ABI.
    
    PR-URL: #56082
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Flarna authored Dec 1, 2024
    Configuration menu
    Copy the full SHA
    58982d7 View commit details
    Browse the repository at this point in the history
  4. src: remove dead code in async_wrap

    The silent option for AsyncWrap and AsyncReset is not used anywhere.
    
    Seems like a leftover from times PromiseWrap was used.
    
    PR-URL: #56065
    Refs: #39135
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Flarna authored Dec 1, 2024
    Configuration menu
    Copy the full SHA
    384fa62 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2024

  1. dgram: check udp buffer size to avoid fd leak

    PR-URL: #56084
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    theanarkh authored Dec 2, 2024
    Configuration menu
    Copy the full SHA
    61e4ad5 View commit details
    Browse the repository at this point in the history
  2. src: use std::string_view for process emit fns

    PR-URL: #56086
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    anonrig authored Dec 2, 2024
    Configuration menu
    Copy the full SHA
    8bd9a84 View commit details
    Browse the repository at this point in the history
  3. net: support blocklist for net.Server

    PR-URL: #56079
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    theanarkh authored Dec 2, 2024
    Configuration menu
    Copy the full SHA
    d5d1e80 View commit details
    Browse the repository at this point in the history
  4. deps: update undici to 7.0.0

    PR-URL: #56070
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    nodejs-github-bot authored Dec 2, 2024
    Configuration menu
    Copy the full SHA
    47b80c2 View commit details
    Browse the repository at this point in the history
  5. module: remove --experimental-default-type

    PR-URL: #56092
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Jacob Smith <jacob@frende.me>
    GeoffreyBooth authored Dec 2, 2024
    Configuration menu
    Copy the full SHA
    94c327c View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. deps: update sqlite to 3.47.1

    PR-URL: #56094
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    nodejs-github-bot authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    5ef4985 View commit details
    Browse the repository at this point in the history
  2. util: add fast path for Latin1 decoding

    PR-URL: #55275
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Daniel Lemire <daniel@lemire.me>
    mertcanaltin authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    20bcaa0 View commit details
    Browse the repository at this point in the history
  3. doc: add create-release-action to process

    PR-URL: #55993
    Reviewed-By: Ruy Adorno <ruy@vlt.sh>
    RafaelGSS authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    742ea1c View commit details
    Browse the repository at this point in the history
  4. src: add missing qualifiers to env.cc

    PR-URL: #56062
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    anonrig authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    ebc179d View commit details
    Browse the repository at this point in the history
  5. build: allow overriding clang usage

    PR-URL: #56016
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    codebytere authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    3b6da7c View commit details
    Browse the repository at this point in the history
  6. src: use spaceship operator in SocketAddress

    PR-URL: #56059
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    jasnell committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    b915124 View commit details
    Browse the repository at this point in the history
  7. 2024-12-03, Version 22.12.0 'Jod' (LTS)

    Notable changes:
    
    assert:
      * (SEMVER-MINOR) make assertion_error use Myers diff algorithm (Giovanni Bucci) #54862
    buffer:
      * (SEMVER-MINOR) make Buffer work with resizable ArrayBuffer (James M Snell) #55377
    crypto:
      * update root certificates to NSS 3.104 (Richard Lau) #55681
    doc:
      * enforce strict policy to semver-major releases (Rafael Gonzaga) #55732
      * add jazelly to collaborators (Jason Zhang) #55531
    esm:
      * mark import attributes and JSON module as stable (Nicolò Ribaudo) #55333
    http:
      * (SEMVER-MINOR) add diagnostic channel `http.client.request.created` (Marco Ippolito) #55586
    lib:
      * (SEMVER-MINOR) add UV_UDP_REUSEPORT for udp (theanarkh) #55403
    module:
      * (SEMVER-MINOR) unflag --experimental-require-module (Joyee Cheung) #55085
    net:
      * (SEMVER-MINOR) add UV_TCP_REUSEPORT for tcp (theanarkh) #55408
    sqlite:
      * (SEMVER-MINOR) add support for SQLite Session Extension (Bart Louwers) #54181
    tools:
      * fix root certificate updater (Richard Lau) #55681
    
    PR-URL: #56040
    ruyadorno committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    7924ea3 View commit details
    Browse the repository at this point in the history
  8. meta: bump actions/setup-node from 4.0.3 to 4.1.0

    Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.0.3 to 4.1.0.
    - [Release notes](https://github.com/actions/setup-node/releases)
    - [Commits](actions/setup-node@v4.0.3...39370e3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-node
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #56100
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    f601984 View commit details
    Browse the repository at this point in the history
  9. meta: bump step-security/harden-runner from 2.10.1 to 2.10.2

    Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.10.1 to 2.10.2.
    - [Release notes](https://github.com/step-security/harden-runner/releases)
    - [Commits](step-security/harden-runner@91182cc...0080882)
    
    ---
    updated-dependencies:
    - dependency-name: step-security/harden-runner
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #56101
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    34174bc View commit details
    Browse the repository at this point in the history
  10. meta: bump actions/checkout from 4.1.7 to 4.2.2

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.2.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v4.1.7...11bd719)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #56102
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    b24a8e0 View commit details
    Browse the repository at this point in the history
  11. meta: bump github/codeql-action from 3.27.0 to 3.27.5

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.27.0 to 3.27.5.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@6624720...f09c1c0)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    PR-URL: #56103
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    Reviewed-By: Tierney Cyren <hello@bnb.im>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    dependabot[bot] authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    fe12b01 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2024

  1. doc: fix typo

    PR-URL: #56125
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    himself65 authored Dec 4, 2024
    Configuration menu
    Copy the full SHA
    7bedcfd View commit details
    Browse the repository at this point in the history