Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v22.5.1
Choose a base ref
...
head repository: nodejs/node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v22.6.0
Choose a head ref

Commits on Jul 19, 2024

  1. Working on v22.5.2

    PR-URL: #53935
    richardlau committed Jul 19, 2024
    Copy the full SHA
    efebc95 View commit details

Commits on Jul 28, 2024

  1. build: disable test-asan workflow

    It is running on ubuntu-20.04, which will inevitably be removed from
    GitHub actions at some point. Attempts to upgrade it to ubuntu-22.04
    and ubuntu-24.04 have failed.
    
    It is now blocking V8 updates because of errors that happen only with
    the `test-asan` job.
    
    Refs: #52374
    Refs: #53651 (comment)
    PR-URL: #53844
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    targos committed Jul 28, 2024
    Copy the full SHA
    3c40868 View commit details
  2. src,lib: expose getCategoryEnabledBuffer to use on node.http

    Instead call the C++ code every time we need to check for a
    trace category, now we get the C++ pointer to the flag that
    holds the info if the trace is enabled and return this pointer
    inside a buffer that we can use to call/check if the value is
    enabled. With this change, no C++ call is made and the access
    to the info happens in JS side, which has no perf penalty.
    
    PR-URL: #53602
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    H4ad authored and targos committed Jul 28, 2024
    Copy the full SHA
    df5083e View commit details
  3. test_runner: consolidate option parsing

    This commit consolidates all option parsing for the test runner
    in the parseCommandLine() internal helper function. The exception
    is a couple of temporary flags used for feature gating which
    will eventually become no-ops. This consolidation is prep work
    for supporting running test files in the test runner process.
    
    PR-URL: #53849
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    cjihrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    97da7ca View commit details
  4. src: fix potential segmentation fault in SQLite

    The Local<Value> returned from ColumnToValue() and ColumnNameToValue()
    may be empty (if a JavaScript exception is pending), in which case a
    segmentation fault may occur at the call sites, which do not check if
    the Local<Value> is empty. Fix this bug returning early if an exception
    is pending (as indicated by the Local being empty).
    
    In the long term, these functions should return MaybeLocal instead of
    Local, but this patch is supposed to be a minimal bug fix only.
    
    PR-URL: #53850
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    tniessen authored and targos committed Jul 28, 2024
    Copy the full SHA
    bac3a48 View commit details
  5. test_runner: add context.filePath

    This commit adds a filePath getter to the TestContext and
    SuiteContext classes. This allows a context to be mapped back to
    the original test file that created it, even if it was imported
    from another file. This is useful for mapping features like test
    snapshots to the correct test file. This is also prep work for
    supporting running test files in the test runner process.
    
    PR-URL: #53853
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    cjihrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    698e44f View commit details
  6. test_runner: refactor snapshots to get file from context

    This commit refactors the internals of snapshot tests to get the
    name of the test file from the test context instead of passing
    it to the SnapshotManager constructor. This is prep work for
    supporting running test files in the test runner process.
    
    PR-URL: #53853
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    cjihrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    6ad6e01 View commit details
  7. src: fix env-file flag to ignore spaces before quotes

    Fix to ignore spaces between '=' and quoted string in env file
    
    Fixes: #53461
    
    Signed-off-by: Mohit Malhotra <dev.mohitmalhotra@gmail.com>
    PR-URL: #53786
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    MOHIT51196 authored and targos committed Jul 28, 2024
    Copy the full SHA
    c53cf44 View commit details
  8. fs: correctly pass dirent to exclude withFileTypes

    PR-URL: #53823
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    avivkeller authored and targos committed Jul 28, 2024
    Copy the full SHA
    b377b93 View commit details
  9. doc: update release-post nodejs.org script

    PR-URL: #53762
    Refs: nodejs/nodejs.org#6850
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    RafaelGSS authored and targos committed Jul 28, 2024
    Copy the full SHA
    b47c230 View commit details
  10. doc: fix casing of GitHub handle for two collaborators

    PR-URL: #53857
    Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    aduh95 authored and targos committed Jul 28, 2024
    Copy the full SHA
    dd2c0f3 View commit details
  11. doc: fix release date for 22.5.0

    The release has been postponed and I forgot to update the date in the
    `CHANGELOG_V22.md`.
    
    PR-URL: #53889
    Refs: #53826
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    aduh95 authored and targos committed Jul 28, 2024
    Copy the full SHA
    5b8dd78 View commit details
  12. meta: move anonrig to tsc voting members

    PR-URL: #53888
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Ruy Adorno <ruy@vlt.sh>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    anonrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    1688f00 View commit details
  13. fs: remove unnecessary option argument validation

    PR-URL: #53861
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    JonasBa authored and targos committed Jul 28, 2024
    Copy the full SHA
    8086337 View commit details
  14. deps: fix include_dirs of nbytes

    PR-URL: #53862
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    zcbenz authored and targos committed Jul 28, 2024
    Copy the full SHA
    c114082 View commit details
  15. doc: add MattiasBuelens to collaborators

    PR-URL: #53895
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    MattiasBuelens authored and targos committed Jul 28, 2024
    Copy the full SHA
    63cf715 View commit details
  16. deps: start working on ncrypto dep

    Start moving src/crypto functionality out to a separate dep that
    can be shared with other projects that need to emulate Node.js
    crypto behavior.
    
    PR-URL: #53803
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    jasnell authored and targos committed Jul 28, 2024
    Copy the full SHA
    8e66a18 View commit details
  17. cli: document --inspect port 0 behavior

    PR-URL: #53782
    Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
    avivkeller authored and targos committed Jul 28, 2024
    Copy the full SHA
    66f7c59 View commit details
  18. lib: decorate async stack trace in source maps

    Decorate stack frame with 'async' and 'new' keywords based on the type
    of the call site info.
    
    PR-URL: #53860
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    legendecas authored and targos committed Jul 28, 2024
    Copy the full SHA
    d8375d6 View commit details
  19. esm: refactor get_format

    PR-URL: #53872
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    aduh95 authored and targos committed Jul 28, 2024
    Copy the full SHA
    dcca9ba View commit details
  20. src: refactor webstorage implementation

    PR-URL: #53876
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    anonrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    55461be View commit details
  21. src: replace ToLocalChecked uses with ToLocal in node-file

    PR-URL: #53869
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    jasnell authored and targos committed Jul 28, 2024
    Copy the full SHA
    a94c3ae View commit details
  22. inspector: add initial support for network inspection

    PR-URL: #53593
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    cola119 authored and targos committed Jul 28, 2024
    Copy the full SHA
    de1fbc2 View commit details
  23. doc: update api_assets README for new files

    PR-URL: #53676
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Claudio Wunder <cwunder@gnome.org>
    avivkeller authored and targos committed Jul 28, 2024
    Copy the full SHA
    d761500 View commit details
  24. doc,tty: add documentation for ReadStream and WriteStream

    Co-authored-by: Qingyu Deng <i@ayase-lab.com>
    PR-URL: #53567
    Fixes: #37780
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
    Reviewed-By: Claudio Wunder <cwunder@gnome.org>
    2 people authored and targos committed Jul 28, 2024
    Copy the full SHA
    87bab76 View commit details
  25. src: use Maybe<void> in SecureContext

    With recent versions of V8, it is not necessary to use Maybe<bool>
    anymore. This changes member functions of SecureContext to use
    Maybe<void> instead.
    
    PR-URL: #53883
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    tniessen authored and targos committed Jul 28, 2024
    Copy the full SHA
    9ffaf76 View commit details
  26. build,tools: simplify upload of shasum signatures

    Use the same prompt for uploads to the web host and Cloudflare R2.
    
    PR-URL: #53892
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    targos committed Jul 28, 2024
    Copy the full SHA
    9c7b009 View commit details
  27. doc: add --experimental-sqlite note

    PR-URL: #53907
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    avivkeller authored and targos committed Jul 28, 2024
    Copy the full SHA
    8bf9960 View commit details
  28. lib: improve error message when index not found on cjs

    PR-URL: #53859
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    H4ad authored and targos committed Jul 28, 2024
    Copy the full SHA
    03f3532 View commit details
  29. test: deflake test-blob-file-backed

    Avoid race conditions by using a different file for each subtest.
    
    Fixes: #51860
    PR-URL: #53920
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Michael Dawson <midawson@redhat.com>
    lpinca authored and targos committed Jul 28, 2024
    Copy the full SHA
    c247582 View commit details
  30. doc: move --test-coverage-{ex,in}clude to proper location

    This commit moves the documentation for two CLI flags to the
    proper sorted location.
    
    PR-URL: #53926
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    cjihrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    e907236 View commit details
  31. test_runner: refactor and simplify internals

    This commit refactors some of the internals of the test runner.
    
    PR-URL: #53921
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    f45edb4 View commit details
  32. build: update codecov coverage build count

    PR-URL: #53929
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    anonrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    ad62b94 View commit details
  33. build: trigger coverage ci when updating codecov

    PR-URL: #53929
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    anonrig authored and targos committed Jul 28, 2024
    Copy the full SHA
    0f1fe63 View commit details

Commits on Aug 5, 2024

  1. meta: store actions secrets in environment

    PR-URL: #53930
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    avivkeller authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    d252612 View commit details
  2. doc: remove scroll-behavior: smooth;

    PR-URL: #53942
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    cloydlau authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    defdc3c View commit details
  3. doc,tools: enforce use of node: prefix

    PR-URL: #53950
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
    aduh95 authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    44a08f7 View commit details
  4. test: use PYTHON executable from env in assertSnapshot

    PR-URL: #53938
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    aduh95 authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    58cb0dd View commit details
  5. test: reduce flakiness of test-assert-esm-cjs-message-verify

    PR-URL: #53967
    Fixes: #53962
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    aduh95 authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    5cea7ed View commit details
  6. doc: add info about prefix-only modules to module.builtinModules

    PR-URL: #53954
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    SunsetTechuila authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    86fa46d View commit details
  7. tools: fix SLACK_TITLE in invalid commit workflow

    PR-URL: #53912
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    aduh95 authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    43afcbf View commit details
  8. src: move ToNamespacedPath call of webstorage

    PR-URL: #53875
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    anonrig authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    04bb677 View commit details
  9. child_process: fix incomplete prototype pollution hardening

    Prior pull request (#48726) hardened against prototype pollution
    vulnerabilities but effectively missed some use-cases which
    opened a window for prototype pollution for some child_process
    functions such as spawn(), spawnSync(), and execFileSync().
    
    PR-URL: #53781
    Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    lirantal authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    057bd44 View commit details
  10. src: switch from ToLocalChecked to ToLocal in node_webstorage

    PR-URL: #53959
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    jasnell authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    fbf74bc View commit details
  11. meta: reword linter messages

    PR-URL: #53949
    Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    avivkeller authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    b312ec0 View commit details
  12. lib: improve cluster/primary code

    PR-URL: #53756
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    ehsankhfr authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    494df98 View commit details
  13. doc: update boxstarter README

    PR-URL: #53785
    Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    avivkeller authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    04d203a View commit details
  14. src: avoid strcmp in ImportJWKAsymmetricKey

    Use std::string_view and its operator== instead of calling strcmp on a
    const char*.
    
    PR-URL: #53813
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    tniessen authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    fd0da6c View commit details
  15. src: cache invariant code motion

    PR-URL: #53879
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Paolo Insogna <paolo@cowtech.it>
    Reviewed-By: Tim Perry <pimterry@gmail.com>
    Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
    RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    c457f9e View commit details
  16. test_runner: refactor coverage to pass in config options

    This commit updates the test runner's code coverage so that
    coverage options are explicitly passed in instead of pulled
    from command line options.
    
    PR-URL: #53931
    Refs: #53924
    Refs: #53867
    Refs: #53866
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
    Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and RafaelGSS committed Aug 5, 2024
    Copy the full SHA
    876e7b3 View commit details
Showing 391 changed files with 16,284 additions and 10,542 deletions.
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug-report.yml
Original file line number Diff line number Diff line change
@@ -33,13 +33,19 @@ body:
be run using `node` directly without installing third-party dependencies
or downloading code from the internet (i.e. no ZIP archive, no GitHub
repository, etc.).
validations:
required: true
- type: textarea
attributes:
label: How often does it reproduce? Is there a required condition?
validations:
required: true
- type: textarea
attributes:
label: What is the expected behavior? Why is that the expected behavior?
description: If possible please provide textual output instead of screenshots.
validations:
required: true
- type: textarea
attributes:
label: What do you see instead?
1 change: 1 addition & 0 deletions .github/label-pr-config.yml
Original file line number Diff line number Diff line change
@@ -187,6 +187,7 @@ allJsSubSystems:
- readline
- repl
- report
- sqlite
- stream
- string_decoder
- timers
10 changes: 7 additions & 3 deletions .github/workflows/auto-start-ci.yml
Original file line number Diff line number Diff line change
@@ -59,11 +59,15 @@ jobs:

- name: Setup @node-core/utils
run: |
ncu-config set username ${{ secrets.JENKINS_USER }}
ncu-config set token "${{ secrets.GH_USER_TOKEN }}"
ncu-config set jenkins_token ${{ secrets.JENKINS_TOKEN }}
ncu-config set username "$USERNAME"
ncu-config set token "$GH_TOKEN"
ncu-config set jenkins_token "$JENKINS_TOKEN"
ncu-config set owner "${{ github.repository_owner }}"
ncu-config set repo "$(echo ${{ github.repository }} | cut -d/ -f2)"
env:
USERNAME: ${{ secrets.JENKINS_USER }}
GH_TOKEN: ${{ secrets.GH_USER_TOKEN }}
JENKINS_TOKEN: ${{ secrets.JENKINS_TOKEN }}

- name: Start the CI
run: ./tools/actions/start-ci.sh ${{ needs.get-prs-for-ci.outputs.numbers }}
10 changes: 7 additions & 3 deletions .github/workflows/commit-queue.yml
Original file line number Diff line number Diff line change
@@ -86,11 +86,15 @@ jobs:
run: |
ncu-config set branch ${GITHUB_REF_NAME}
ncu-config set upstream origin
ncu-config set username "${{ secrets.GH_USER_NAME }}"
ncu-config set token "${{ secrets.GH_USER_TOKEN }}"
ncu-config set jenkins_token "${{ secrets.JENKINS_TOKEN }}"
ncu-config set username "$USERNAME"
ncu-config set token "$GH_TOKEN"
ncu-config set jenkins_token "$JENKINS_TOKEN"
ncu-config set repo "${REPOSITORY}"
ncu-config set owner "${OWNER}"
env:
USERNAME: ${{ secrets.JENKINS_USER }}
GH_TOKEN: ${{ secrets.GH_USER_TOKEN }}
JENKINS_TOKEN: ${{ secrets.JENKINS_TOKEN }}

- name: Start the Commit Queue
run: ./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} ${{ needs.get_mergeable_prs.outputs.numbers }}
6 changes: 4 additions & 2 deletions .github/workflows/coverage-linux-without-intl.yml
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ on:
- tools/gyp/**
- tools/test.py
- .github/workflows/coverage-linux-without-intl.yml
- codecov.yml
push:
branches:
- main
@@ -24,6 +25,7 @@ on:
- tools/gyp/**
- tools/test.py
- .github/workflows/coverage-linux-without-intl.yml
- codecov.yml

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -58,7 +60,7 @@ jobs:
- name: Environment Information
run: npx envinfo
- name: Install gcovr
run: pip install gcovr==4.2
run: pip install gcovr==7.2
- name: Build
run: make build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn --coverage --without-intl"
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
@@ -70,7 +72,7 @@ jobs:
env:
NODE_OPTIONS: --max-old-space-size=8192
- name: Report C++
run: cd out && gcovr --gcov-exclude='.*\b(deps|usr|out|obj|cctest|embedding)\b' -v -r Release/obj.target --xml -o ../coverage/coverage-cxx.xml --root=$(cd ../ && pwd)
run: gcovr --object-directory=out -v --filter src --xml -o ./coverage/coverage-cxx.xml --root=./ --gcov-executable="llvm-cov-18 gcov"
# Clean temporary output from gcov and c8, so that it's not uploaded:
- name: Clean tmp
run: rm -rf coverage/tmp && rm -rf out
6 changes: 4 additions & 2 deletions .github/workflows/coverage-linux.yml
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ on:
- tools/gyp/**
- tools/test.py
- .github/workflows/coverage-linux.yml
- codecov.yml
push:
branches:
- main
@@ -24,6 +25,7 @@ on:
- tools/gyp/**
- tools/test.py
- .github/workflows/coverage-linux.yml
- codecov.yml

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -58,7 +60,7 @@ jobs:
- name: Environment Information
run: npx envinfo
- name: Install gcovr
run: pip install gcovr==4.2
run: pip install gcovr==7.2
- name: Build
run: make build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn --coverage"
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
@@ -70,7 +72,7 @@ jobs:
env:
NODE_OPTIONS: --max-old-space-size=8192
- name: Report C++
run: cd out && gcovr --gcov-exclude='.*\b(deps|usr|out|obj|cctest|embedding)\b' -v -r Release/obj.target --xml -o ../coverage/coverage-cxx.xml --root=$(cd ../ && pwd)
run: gcovr --object-directory=out -v --filter src --xml -o ./coverage/coverage-cxx.xml --root=./ --gcov-executable="llvm-cov-18 gcov"
# Clean temporary output from gcov and c8, so that it's not uploaded:
- name: Clean tmp
run: rm -rf coverage/tmp && rm -rf out
2 changes: 2 additions & 0 deletions .github/workflows/coverage-windows.yml
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ on:
- tools/gyp/**
- tools/test.py
- .github/workflows/coverage-windows.yml
- codecov.yml
push:
branches:
- main
@@ -24,6 +25,7 @@ on:
- tools/gyp/**
- tools/test.py
- .github/workflows/coverage-windows.yml
- codecov.yml

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
2 changes: 1 addition & 1 deletion .github/workflows/notify-on-push.yml
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ jobs:
env:
SLACK_COLOR: '#DE512A'
SLACK_ICON: https://github.com/nodejs.png?size=48
SLACK_TITLE: Invalid commit was pushed to ${{ github.repository.default_branch }}
SLACK_TITLE: Invalid commit was pushed to ${{ github.ref }}
SLACK_MESSAGE: |
<!here> A commit with an invalid message was pushed to <https://github.com/${{ github.repository }}/tree/${{ github.ref_name }}|${{ github.repository }}@${{ github.ref_name }}> by <https://github.com/${{ github.actor }}|${{ github.actor }}>.
2 changes: 1 addition & 1 deletion .github/workflows/test-asan.yml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ permissions:

jobs:
test-asan:
if: github.event.pull_request.draft == false
if: false # Temporarily disabled. References: https://github.com/nodejs/node/pull/52374, https://github.com/nodejs/node/pull/53651#issuecomment-2198510810
runs-on: ubuntu-20.04
env:
CC: sccache clang
9 changes: 9 additions & 0 deletions .github/workflows/tools.yml
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ on:
- acorn
- acorn-walk
- ada
- amaro
- brotli
- c-ares
- cjs-module-lexer
@@ -82,6 +83,14 @@ jobs:
cat temp-output
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
rm temp-output
- id: amaro
subsystem: deps
label: dependencies
run: |
./tools/dep_updaters/update-amaro.sh > temp-output
cat temp-output
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
rm temp-output
- id: brotli
subsystem: deps
label: dependencies
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -38,7 +38,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.0">22.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.1">22.4.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.0">22.4.0</a><br/>
58 changes: 25 additions & 33 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -130,6 +130,31 @@ The externally maintained libraries used by Node.js are:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""

- amaro, located at deps/amaro, is licensed as follows:
"""
MIT License

Copyright (c) Marco Ippolito and Amaro contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""

- ICU, located at deps/icu-small, is licensed as follows:
"""
UNICODE LICENSE V3
@@ -2194,39 +2219,6 @@ The externally maintained libraries used by Node.js are:
THE POSSIBILITY OF SUCH DAMAGE.
"""

- highlight.js, located at doc/api_assets/highlight.pack.js, is licensed as follows:
"""
BSD 3-Clause License

Copyright (c) 2006, Ivan Sagalaev.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""

- node-heapdump, located at src/heap_utils.cc, is licensed as follows:
"""
ISC License
12 changes: 7 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -175,7 +175,8 @@ with-code-cache test-code-cache:
out/Makefile: config.gypi common.gypi common_node.gypi node.gyp \
deps/uv/uv.gyp deps/llhttp/llhttp.gyp deps/zlib/zlib.gyp \
deps/simdutf/simdutf.gyp deps/ada/ada.gyp deps/nbytes/nbytes.gyp \
tools/v8_gypfiles/toolchain.gypi tools/v8_gypfiles/features.gypi \
tools/v8_gypfiles/toolchain.gypi \
tools/v8_gypfiles/features.gypi \
tools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp
$(PYTHON) tools/gyp_node.py -f make

@@ -253,7 +254,7 @@ coverage: coverage-test ## Run the tests and generate a coverage report.
.PHONY: coverage-build
coverage-build: all
-$(MAKE) coverage-build-js
if [ ! -d gcovr ]; then $(PYTHON) -m pip install -t gcovr gcovr==4.2; fi
if [ ! -d gcovr ]; then $(PYTHON) -m pip install -t gcovr gcovr==7.2; fi
$(MAKE)

.PHONY: coverage-build-js
@@ -269,9 +270,10 @@ coverage-test: coverage-build
-NODE_V8_COVERAGE=coverage/tmp \
TEST_CI_ARGS="$(TEST_CI_ARGS) --type=coverage" $(MAKE) $(COVTESTS)
$(MAKE) coverage-report-js
-(cd out && PYTHONPATH=../gcovr $(PYTHON) -m gcovr \
--gcov-exclude='.*\b(deps|usr|out|cctest|embedding)\b' -v \
-r ../src/ --object-directory Release/obj.target \
-(PYTHONPATH=./gcovr $(PYTHON) -m gcovr \
--object-directory=out \
--filter src -v \
--root ./ \
--html --html-details -o ../coverage/cxxcoverage.html \
--gcov-executable="$(GCOV)")
@printf "Javascript coverage %%: "
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -164,14 +164,12 @@ For information about the governance of the Node.js project, see

* [aduh95](https://github.com/aduh95) -
**Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
* [apapirovski](https://github.com/apapirovski) -
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
* [anonrig](https://github.com/anonrig) -
**Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him)
* [benjamingr](https://github.com/benjamingr) -
**Benjamin Gruenbaum** <<benjamingr@gmail.com>>
* [BridgeAR](https://github.com/BridgeAR) -
**Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
* [GeoffreyBooth](https://github.com/geoffreybooth) -
**Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)
* [gireeshpunathil](https://github.com/gireeshpunathil) -
**Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
* [jasnell](https://github.com/jasnell) -
@@ -205,8 +203,8 @@ For information about the governance of the Node.js project, see

#### TSC regular members

* [anonrig](https://github.com/anonrig) -
**Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him)
* [apapirovski](https://github.com/apapirovski) -
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
* [BethGriggs](https://github.com/BethGriggs) -
**Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
* [bnoordhuis](https://github.com/bnoordhuis) -
@@ -215,6 +213,8 @@ For information about the governance of the Node.js project, see
**Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
* [codebytere](https://github.com/codebytere) -
**Shelley Vohr** <<shelley.vohr@gmail.com>> (she/her)
* [GeoffreyBooth](https://github.com/GeoffreyBooth) -
**Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)
* [Trott](https://github.com/Trott) -
**Rich Trott** <<rtrott@gmail.com>> (he/him)

@@ -329,7 +329,7 @@ For information about the governance of the Node.js project, see
**Deokjin Kim** <<deokjin81.kim@gmail.com>> (he/him)
* [edsadr](https://github.com/edsadr) -
**Adrian Estrada** <<edsadr@gmail.com>> (he/him)
* [erickwendel](https://github.com/erickwendel) -
* [ErickWendel](https://github.com/ErickWendel) -
**Erick Wendel** <<erick.workspace@gmail.com>> (he/him)
* [Ethan-Arrowood](https://github.com/Ethan-Arrowood) -
**Ethan Arrowood** <<ethan@arrowood.dev>> (he/him)
@@ -343,7 +343,7 @@ For information about the governance of the Node.js project, see
**Gabriel Schulhof** <<gabrielschulhof@gmail.com>>
* [gengjiawen](https://github.com/gengjiawen) -
**Jiawen Geng** <<technicalcute@gmail.com>>
* [GeoffreyBooth](https://github.com/geoffreybooth) -
* [GeoffreyBooth](https://github.com/GeoffreyBooth) -
**Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)
* [gireeshpunathil](https://github.com/gireeshpunathil) -
**Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
@@ -355,6 +355,8 @@ For information about the governance of the Node.js project, see
**Harshitha K P** <<harshitha014@gmail.com>> (she/her)
* [himself65](https://github.com/himself65) -
**Zeyu "Alex" Yang** <<himself65@outlook.com>> (he/him)
* [jakecastelli](https://github.com/jakecastelli) -
**Jake Yuesong Li** <<jake.yuesong@gmail.com>> (he/him)
* [JakobJingleheimer](https://github.com/JakobJingleheimer) -
**Jacob Smith** <<jacob@frende.me>> (he/him)
* [jasnell](https://github.com/jasnell) -
@@ -379,7 +381,7 @@ For information about the governance of the Node.js project, see
**Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
* [lemire](https://github.com/lemire) -
**Daniel Lemire** <<daniel@lemire.me>>
* [linkgoron](https://github.com/linkgoron) -
* [Linkgoron](https://github.com/Linkgoron) -
**Nitzan Uziely** <<linkgoron@gmail.com>>
* [LiviaMedeiros](https://github.com/LiviaMedeiros) -
**LiviaMedeiros** <<livia@cirno.name>>
@@ -393,6 +395,8 @@ For information about the governance of the Node.js project, see
**Marco Ippolito** <<marcoippolito54@gmail.com>> (he/him)
* [marsonya](https://github.com/marsonya) -
**Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
* [MattiasBuelens](https://github.com/MattiasBuelens) -
**Mattias Buelens** <<mattias@buelens.com>> (he/him)
* [mcollina](https://github.com/mcollina) -
**Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
* [meixg](https://github.com/meixg) -
@@ -443,7 +447,7 @@ For information about the governance of the Node.js project, see
**Trivikram Kamat** <<trivikr.dev@gmail.com>>
* [Trott](https://github.com/Trott) -
**Rich Trott** <<rtrott@gmail.com>> (he/him)
* [UlisesGascon](https://github.com/ulisesgascon) -
* [UlisesGascon](https://github.com/UlisesGascon) -
**Ulises Gascón** <<ulisesgascongonzalez@gmail.com>> (he/him)
* [vmoroz](https://github.com/vmoroz) -
**Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)
1 change: 1 addition & 0 deletions benchmark/napi/property_keys/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/
Loading