Skip to content

Commit 80dc25e

Browse files
authored
Merge branch 'main' into revert-cppgc
2 parents 0d9dda7 + 0f69ec4 commit 80dc25e

2,034 files changed

Lines changed: 116914 additions & 39324 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ module.exports = {
6868
files: ['**/*.md/*.cjs', '**/*.md/*.js'],
6969
parserOptions: {
7070
sourceType: 'script',
71-
ecmaFeatures: { impliedStrict: true }
71+
ecmaFeatures: { impliedStrict: true },
7272
},
7373
rules: { strict: 'off' },
7474
},
@@ -103,11 +103,11 @@ module.exports = {
103103
},
104104
{
105105
name: 'Buffer',
106-
message: 'Import Buffer instead of using the global'
106+
message: 'Import Buffer instead of using the global',
107107
},
108108
{
109109
name: 'process',
110-
message: 'Import process instead of using the global'
110+
message: 'Import process instead of using the global',
111111
},
112112
] },
113113
},
@@ -134,13 +134,7 @@ module.exports = {
134134
ignorePattern: '.*',
135135
},
136136
}],
137-
'comma-dangle': ['error', {
138-
arrays: 'always-multiline',
139-
exports: 'only-multiline',
140-
functions: 'only-multiline',
141-
imports: 'only-multiline',
142-
objects: 'only-multiline',
143-
}],
137+
'comma-dangle': ['error', 'always-multiline'],
144138
'comma-spacing': 'error',
145139
'comma-style': 'error',
146140
'computed-property-spacing': 'error',
@@ -239,6 +233,12 @@ module.exports = {
239233
selector: "CallExpression[callee.name='isNaN']",
240234
message: 'Use Number.isNaN() instead of the global isNaN() function.',
241235
},
236+
{
237+
// TODO(@panva): move this to no-restricted-properties
238+
// when https://github.com/eslint/eslint/issues/16412 is fixed
239+
selector: "Identifier[name='webcrypto']",
240+
message: 'Use `globalThis.crypto`.',
241+
},
242242
],
243243
'no-return-await': 'error',
244244
'no-self-compare': 'error',

.github/CODEOWNERS

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,18 @@
7171
/src/node_http2* @nodejs/http2 @nodejs/net
7272
/src/node_mem* @nodejs/http2
7373

74-
# modules
75-
76-
/doc/api/modules.md @nodejs/modules
77-
/doc/api/esm.md @nodejs/modules
78-
/doc/api/module.md @nodejs/modules
79-
/doc/api/packages.md @nodejs/modules
80-
/lib/module.js @nodejs/modules
81-
/lib/internal/modules/* @nodejs/modules
82-
/lib/internal/bootstrap/loaders.js @nodejs/modules
83-
/src/module_wrap* @nodejs/modules @nodejs/vm
74+
# modules, including loaders
75+
76+
/doc/api/esm.md @nodejs/modules @nodejs/loaders
77+
/doc/api/module.md @nodejs/modules @nodejs/loaders
78+
/doc/api/modules.md @nodejs/modules @nodejs/loaders
79+
/doc/api/packages.md @nodejs/modules @nodejs/loaders
80+
/lib/internal/bootstrap/loaders.js @nodejs/modules @nodejs/loaders
81+
/lib/internal/modules/* @nodejs/modules @nodejs/loaders
82+
/lib/internal/process/esm_loader.js @nodejs/modules @nodejs/loaders
83+
/lib/internal/process/execution.js @nodejs/modules @nodejs/loaders
84+
/lib/module.js @nodejs/modules @nodejs/loaders
85+
/src/module_wrap* @nodejs/modules @nodejs/loaders @nodejs/vm
8486

8587
# Node-API
8688

@@ -96,6 +98,7 @@
9698
/tools/gyp/**/* @nodejs/gyp
9799

98100
# WASI
101+
99102
/deps/uvwasi/ @nodejs/wasi
100103
/doc/api/wasi.md @nodejs/wasi
101104
/lib/wasi.js @nodejs/wasi
@@ -113,10 +116,20 @@
113116
/tools/snapshot/* @nodejs/startup
114117

115118
# V8
119+
116120
/deps/v8/* @nodejs/v8-update
117121
/tools/v8_gypfiles/* @nodejs/v8-update
118122

119123
# Actions
120124

121125
/.github/workflows/* @nodejs/actions
122126
/tools/actions/* @nodejs/actions
127+
128+
# Test runner
129+
130+
/test/message/test_runner_* @nodejs/test_runner
131+
/test/parallel/test-runner-* @nodejs/test_runner
132+
/doc/api/test.md @nodejs/test_runner
133+
/lib/test.js @nodejs/test_runner
134+
/lib/internal/main/test_runner.js @nodejs/test_runner
135+
/lib/internal/test_runner/* @nodejs/test_runner

.github/workflows/authors.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
Here are some new additions to the AUTHORS file.
3131
This is an automatically generated PR by the
3232
`authors.yml` GitHub Action, which runs `tools/update-authors.mjs`.
33+
Check the output of
34+
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
35+
for possible duplicates.
3336
branch: actions/authors-update # Custom branch *just* for this Action.
3437
commit-message: 'meta: update AUTHORS'
3538
labels: meta

.github/workflows/close-stale-feature-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: github.repository == 'nodejs/node'
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/stale@v4
42+
- uses: actions/stale@v7
4343
with:
4444
repo-token: ${{ secrets.GITHUB_TOKEN }}
4545
days-before-stale: 180

.github/workflows/close-stalled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.repository == 'nodejs/node'
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/stale@v4
23+
- uses: actions/stale@v7
2424
with:
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
2626
days-before-close: 30

.github/workflows/label-flaky-test-issue.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
issues:
55
types: [opened, labeled]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
label:
912
if: github.event.label.name == 'flaky-test'

.github/workflows/tools.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,16 @@ jobs:
125125
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
126126
./tools/dep_updaters/update-libuv.sh "$NEW_VERSION"
127127
fi
128+
- id: simdutf
129+
subsystem: deps
130+
label: dependencies
131+
run: |
132+
NEW_VERSION=$(gh api repos/simdutf/simdutf/releases/latest -q '.tag_name|ltrimstr("v")')
133+
CURRENT_VERSION=$(grep "#define SIMDUTF_VERSION" ./deps/simdutf/simdutf.h | sed -n "s/^.*VERSION \(.*\)/\1/p")
134+
if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
135+
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
136+
./tools/dep_updaters/update-simdutf.sh "$NEW_VERSION"
137+
fi
128138
steps:
129139
- uses: actions/checkout@v3
130140
with:

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,7 @@ Sreepurna Jasti <sreepurna.jasti@gmail.com> <jsreepur@in.ibm.com>
487487
Stanislav Opichal <opichals@gmail.com>
488488
Stefan Budeanu <stefan@budeanu.com> <stefanbu@ca.ibm.com>
489489
Stefan Bühler <stbuehler@web.de>
490+
Stefan Stojanovic <stefan.stojanovic@janeasystems.com> <StefanStojanovic@users.noreply.github.com>
490491
Stephen Belanger <admin@stephenbelanger.com> <stephen.belanger@datadoghq.com>
491492
Stephen Belanger <admin@stephenbelanger.com> <stephen.belanger@elastic.co>
492493
Steve Mao <maochenyan@gmail.com> <maochenyan@msn.com>

AUTHORS

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3517,7 +3517,7 @@ Brian Evans <53117772+mrbrianevans@users.noreply.github.com>
35173517
falsandtru <falsandtru@users.noreply.github.com>
35183518
东灯 <43312495+Lampese@users.noreply.github.com>
35193519
Fabian Meyer <3982806+meyfa@users.noreply.github.com>
3520-
StefanStojanovic <StefanStojanovic@users.noreply.github.com>
3520+
Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
35213521
Claudio Wunder <cwunder@gnome.org>
35223522
Shrujal Shah <shrujalshah@hotmail.com>
35233523
Taha-Chaudhry <46199675+Taha-Chaudhry@users.noreply.github.com>
@@ -3581,5 +3581,14 @@ chlorine <nicksonlvqq@gmail.com>
35813581
Shi Lei <lei.a.shi@intel.com>
35823582
Deokjin Kim <deokjin81.kim@gmail.com>
35833583
Marco Ippolito <marcoippolito54@gmail.com>
3584+
Alex Hunt <hello@alexhunt.io>
3585+
Debadree Chatterjee <debadree333@gmail.com>
3586+
Gabriela Gutierrez <gabibguti1@gmail.com>
3587+
emirgoren <61096652+emirgoren@users.noreply.github.com>
3588+
Pulkit Gupta <pulkit30.bsr@gmail.com>
3589+
Fabien Michel <104162117+welfoz@users.noreply.github.com>
3590+
A. Wilcox <AWilcox@Wilcox-Tech.com>
3591+
Daniel Lemire <daniel@lemire.me>
3592+
Eric Mutta <eric.mutta@gmail.com>
35843593

35853594
# Generated by tools/update-authors.mjs

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.1">19.0.1</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a><br/>
@@ -58,7 +59,8 @@ release.
5859
<a href="doc/changelogs/CHANGELOG_V18.md#18.0.0">18.0.0</a><br/>
5960
</td>
6061
<td valign="top">
61-
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.18.1">16.18.1</a></b><br/>
62+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.19.0">16.19.0</a></b><br/>
63+
<a href="doc/changelogs/CHANGELOG_V16.md#16.18.1">16.18.1</a><br/>
6264
<a href="doc/changelogs/CHANGELOG_V16.md#16.18.0">16.18.0</a><br/>
6365
<a href="doc/changelogs/CHANGELOG_V16.md#16.17.1">16.17.1</a><br/>
6466
<a href="doc/changelogs/CHANGELOG_V16.md#16.17.0">16.17.0</a><br/>
@@ -92,7 +94,8 @@ release.
9294
<a href="doc/changelogs/CHANGELOG_V16.md#16.0.0">16.0.0</a><br/>
9395
</td>
9496
<td valign="top">
95-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.21.1">14.21.1</a></b><br/>
97+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.21.2">14.21.2</a></b><br/>
98+
<a href="doc/changelogs/CHANGELOG_V14.md#14.21.1">14.21.1</a><br/>
9699
<a href="doc/changelogs/CHANGELOG_V14.md#14.21.0">14.21.0</a><br/>
97100
<a href="doc/changelogs/CHANGELOG_V14.md#14.20.1">14.20.1</a><br/>
98101
<a href="doc/changelogs/CHANGELOG_V14.md#14.20.0">14.20.0</a><br/>

0 commit comments

Comments
 (0)