Skip to content

Commit f42bbe9

Browse files
authored
Merge branch 'master' into actions/authors-update
2 parents 52ceb80 + 5c1adda commit f42bbe9

File tree

1,230 files changed

+15901
-18654
lines changed

Some content is hidden

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

1,230 files changed

+15901
-18654
lines changed

.eslintrc.js

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const hacks = [
1818
'eslint-plugin-markdown',
1919
'@babel/eslint-parser',
2020
'@babel/plugin-syntax-class-properties',
21+
'@babel/plugin-syntax-import-assertions',
2122
'@babel/plugin-syntax-top-level-await',
2223
];
2324
Module._findPath = (request, paths, isMain) => {
@@ -41,6 +42,7 @@ module.exports = {
4142
babelOptions: {
4243
plugins: [
4344
Module._findPath('@babel/plugin-syntax-class-properties'),
45+
Module._findPath('@babel/plugin-syntax-import-assertions'),
4446
Module._findPath('@babel/plugin-syntax-top-level-await'),
4547
],
4648
},

.github/workflows/authors.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: "authors update"
22
on:
3+
schedule:
4+
# Run once a week at 00:05 AM UTC on Sunday.
5+
- cron: '5 0 * * 0'
6+
37
workflow_dispatch:
48

59
jobs:

.github/workflows/build-windows.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ env:
1818
jobs:
1919
build-windows:
2020
if: github.event.pull_request.draft == false
21-
runs-on: windows-latest
21+
strategy:
22+
matrix:
23+
windows: [windows-2019, windows-2022]
24+
fail-fast: false
25+
runs-on: ${{ matrix.windows }}
2226
steps:
2327
- uses: actions/checkout@v2
2428
- name: Set up Python ${{ env.PYTHON_VERSION }}

.github/workflows/comment-labeled.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Post stalled comment
1414
env:
15-
COMMENTS_URL: ${{ github.event.issue.comments_url || github.event.pull_request.comments_url }}
15+
COMMENTS_URL: ${{ github.event.issue.comments_url || github.event.pull_request.comments_url }}
1616
run: |
1717
curl -X POST $COMMENTS_URL \
1818
-H "Content-Type: application/json" \

.github/workflows/coverage-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Report JS
4646
run: npx c8 report --check-coverage
4747
env:
48-
NODE_OPTIONS: --max-old-space-size=8192
48+
NODE_OPTIONS: --max-old-space-size=8192
4949
- name: Report C++
5050
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)
5151
# Clean temporary output from gcov and c8, so that it's not uploaded:

.github/workflows/find-inactive-collaborators.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
find:
16-
16+
1717
runs-on: ubuntu-latest
1818

1919
steps:

.github/workflows/linters.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,23 @@ jobs:
9090
- name: Lint Python
9191
run: |
9292
make lint-py-build || true
93-
NODE=$(command -v node) make lint-py
93+
make lint-py
94+
lint-yaml:
95+
if: github.event.pull_request.draft == false
96+
runs-on: ubuntu-latest
97+
steps:
98+
- uses: actions/checkout@v2
99+
- name: Use Python ${{ env.PYTHON_VERSION }}
100+
uses: actions/setup-python@v2
101+
with:
102+
python-version: ${{ env.PYTHON_VERSION }}
103+
- name: Environment Information
104+
run: npx envinfo
105+
- name: Lint YAML
106+
run: |
107+
make lint-yaml-build || true
108+
make lint-yaml
109+
94110
lint-sh:
95111
if: github.event.pull_request.draft == false
96112
runs-on: ubuntu-20.04

.github/workflows/notify-force-push.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ jobs:
1111
if: ${{ github.event.forced && github.repository == 'nodejs/node' }}
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Slack Notification
15-
uses: rtCamp/action-slack-notify@master
16-
env:
17-
SLACK_COLOR: '#DE512A'
18-
SLACK_ICON: https://github.com/nodejs.png?size=48
19-
SLACK_TITLE: '${{ github.actor }} force-pushed to ${{ github.ref }}'
20-
SLACK_MESSAGE: |
21-
A commit was force-pushed to <https://github.com/${{ github.repository }}/tree/${{ github.repository.default_branch }}|${{ github.repository }}@${{ github.repository.default_branch }}> by <https://github.com/${{ github.actor }}|${{ github.actor }}>
14+
- name: Slack Notification
15+
uses: rtCamp/action-slack-notify@master
16+
env:
17+
SLACK_COLOR: '#DE512A'
18+
SLACK_ICON: https://github.com/nodejs.png?size=48
19+
SLACK_TITLE: '${{ github.actor }} force-pushed to ${{ github.ref }}'
20+
SLACK_MESSAGE: |
21+
A commit was force-pushed to <https://github.com/${{ github.repository }}/tree/${{ github.repository.default_branch }}|${{ github.repository }}@${{ github.repository.default_branch }}> by <https://github.com/${{ github.actor }}|${{ github.actor }}>
2222
23-
Before: <https://github.com/${{ github.repository }}/commit/${{ github.event.before }}|${{ github.event.before }}>
24-
After: <https://github.com/${{ github.repository }}/commit/${{ github.event.after }}|${{ github.event.after }}>
25-
SLACK_USERNAME: nodejs-bot
26-
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
23+
Before: <https://github.com/${{ github.repository }}/commit/${{ github.event.before }}|${{ github.event.before }}>
24+
After: <https://github.com/${{ github.repository }}/commit/${{ github.event.after }}|${{ github.event.after }}>
25+
SLACK_USERNAME: nodejs-bot
26+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@
99
!deps/**/.*
1010
!test/fixtures/**/.*
1111
!.clang-format
12+
!.cpplint
1213
!.editorconfig
1314
!.eslintignore
1415
!.eslintrc.js
16+
!.eslintrc.yaml
1517
!.flake8
1618
!.gitattributes
1719
!.github
1820
!.gitignore
1921
!.gitkeep
2022
!.mailmap
2123
!.nycrc
22-
!.eslintrc.yaml
23-
!.cpplint
24+
!.yamllint.yaml
2425

2526
# === Rules for root dir ===
2627
/core

.mailmap

+6-1
Original file line numberDiff line numberDiff line change
@@ -287,12 +287,16 @@ Micleusanu Nicu <[email protected]>
287287
Miguel Angel Asencio Hurtado <[email protected]>
288288
Mikael Bourges-Sevenier <[email protected]> <[email protected]>
289289
290+
290291
Minqi Pan <[email protected]>
291292
Minuk Park <[email protected]>
292293
293294
294-
295+
296+
297+
295298
Mitar Milutinovic <[email protected]>
299+
296300
297301
298302
@@ -301,6 +305,7 @@ Nebu Pookins <[email protected]>
301305
Netto Farah <[email protected]>
302306
Nicholas Kinsey <[email protected]>
303307
308+
304309
305310
Nikolai Vavilov <[email protected]>
306311
Nils Kuhnhenn <[email protected]>

.yamllint.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
extends: relaxed
2+
3+
rules:
4+
line-length: disable
5+
6+
ignore: |
7+
/deps/
8+
node_modules/

AUTHORS

+3-7
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ Ryan Graham <[email protected]>
444444
Kelly Gerber <[email protected]>
445445
Ryan Doenges <[email protected]>
446446
Sean Silva <[email protected]>
447-
Miroslav Bajtoš <[email protected]>
447+
Miroslav Bajtoš <[email protected]>
448448
Olof Johansson <[email protected]>
449449
Sam Roberts <[email protected]>
450450
Kevin Locke <[email protected]>
@@ -744,7 +744,7 @@ Sakthipriyan Vairamani <[email protected]>
744744
AQNOUCH Mohammed <[email protected]>
745745
Ivan Kozik <[email protected]>
746746
Oleg Elifantiev <[email protected]>
747-
Mike MacCana <mike@certsimple.com>
747+
Mike MacCana <mike.maccana@gmail.com>
748748
Josh Gummersall <[email protected]>
749749
Sam Mikes <[email protected]>
750750
Frederic Hemberger <[email protected]>
@@ -1242,7 +1242,7 @@ Dan Villa <[email protected]>
12421242
CodeTheInternet <[email protected]>
12431243
Eric Gonzalez <[email protected]>
12441244
1245-
Nigel Kibodeaux <[email protected]>
1245+
Nigel Kibodeaux <[email protected]>
12461246
12471247
12481248
Paul Lucas <[email protected]>
@@ -1626,7 +1626,6 @@ Pini Houri <[email protected]>
16261626
Runite618 <[email protected]>
16271627
phisixersai <[email protected]>
16281628
1629-
Miroslav Bajtoš <[email protected]>
16301629
Sebastian Murphy <[email protected]>
16311630
16321631
@@ -1772,7 +1771,6 @@ Guilherme Akio Sakae <[email protected]>
17721771
Martin Michaelis <[email protected]>
17731772
Christopher Sidebottom <[email protected]>
17741773
Edward Andrew Robinson <[email protected]>
1775-
Nigel Kibodeaux <[email protected]>
17761774
Shakeel Mohamed <[email protected]>
17771775
Tobias Kieslich <[email protected]>
17781776
Ruy Adorno <[email protected]>
@@ -2173,7 +2171,6 @@ Beni von Cheni <[email protected]>
21732171
Ilya Sotov <[email protected]>
21742172
William Cohen <[email protected]>
21752173
2176-
Mithun Sasidharan <[email protected]>
21772174
kailash k yogeshwar <[email protected]>
21782175
Daniel Hritzkiv <[email protected]>
21792176
Mark Tiedemann <[email protected]>
@@ -2783,7 +2780,6 @@ Ivan Villa <[email protected]>
27832780
Caleb ツ Everett <[email protected]>
27842781
27852782
Gabriela Niño <[email protected]>
2786-
Mike MacCana <[email protected]>
27872783
Tim Baverstock <[email protected]>
27882784
Walle Cyril <[email protected]>
27892785

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.8.0">16.8.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.9.1">16.9.1</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V16.md#16.9.0">16.9.0</a><br/>
37+
<a href="doc/changelogs/CHANGELOG_V16.md#16.8.0">16.8.0</a><br/>
3638
<a href="doc/changelogs/CHANGELOG_V16.md#16.7.0">16.7.0</a><br/>
3739
<a href="doc/changelogs/CHANGELOG_V16.md#16.6.2">16.6.2</a><br/>
3840
<a href="doc/changelogs/CHANGELOG_V16.md#16.6.1">16.6.1</a><br/>
@@ -47,7 +49,8 @@ release.
4749
<a href="doc/changelogs/CHANGELOG_V16.md#16.0.0">16.0.0</a><br/>
4850
</td>
4951
<td valign="top">
50-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.17.5">14.17.5</a></b><br/>
52+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.17.6">14.17.6</a></b><br/>
53+
<a href="doc/changelogs/CHANGELOG_V14.md#14.17.5">14.17.5</a><br/>
5154
<a href="doc/changelogs/CHANGELOG_V14.md#14.17.4">14.17.4</a><br/>
5255
<a href="doc/changelogs/CHANGELOG_V14.md#14.17.3">14.17.3</a><br/>
5356
<a href="doc/changelogs/CHANGELOG_V14.md#14.17.2">14.17.2</a><br/>
@@ -80,7 +83,8 @@ release.
8083
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>
8184
</td>
8285
<td valign="top">
83-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.5">12.22.5</a></b><br/>
86+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.6">12.22.6</a></b><br/>
87+
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.5">12.22.5</a><br/>
8488
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.4">12.22.4</a><br/>
8589
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.3">12.22.3</a><br/>
8690
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.2">12.22.2</a><br/>

Makefile

+22-3
Original file line numberDiff line numberDiff line change
@@ -1389,13 +1389,13 @@ cpplint: lint-cpp
13891389

13901390
.PHONY: lint-py-build
13911391
# python -m pip install flake8
1392-
# Try with '--system' is to overcome systems that blindly set '--user'
1392+
# Try with '--system' if it fails without; the system may have set '--user'
13931393
lint-py-build:
13941394
$(info Pip installing flake8 linter on $(shell $(PYTHON) --version)...)
13951395
$(PYTHON) -m pip install --upgrade -t tools/pip/site-packages flake8 || \
13961396
$(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages flake8
13971397

1398-
ifneq ("","$(wildcard tools/pip/site-packages)")
1398+
ifneq ("","$(wildcard tools/pip/site-packages/flake8)")
13991399
.PHONY: lint-py
14001400
# Lints the Python code with flake8.
14011401
# Flag the build if there are Python syntax errors or undefined names
@@ -1407,6 +1407,24 @@ lint-py:
14071407
$(warning Run 'make lint-py-build')
14081408
endif
14091409

1410+
.PHONY: lint-yaml-build
1411+
# python -m pip install yamllint
1412+
# Try with '--system' if it fails without; the system may have set '--user'
1413+
lint-yaml-build:
1414+
$(info Pip installing yamllint on $(shell $(PYTHON) --version)...)
1415+
$(PYTHON) -m pip install --upgrade -t tools/pip/site-packages yamllint || \
1416+
$(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages yamllint
1417+
1418+
.PHONY: lint-yaml
1419+
# Lints the YAML files with yamllint.
1420+
lint-yaml:
1421+
@if [ -d "tools/pip/site-packages/yamllint" ]; then \
1422+
PYTHONPATH=tools/pip $(PYTHON) -m yamllint .; \
1423+
else \
1424+
echo 'YAML linting with yamllint is not available'; \
1425+
echo "Run 'make lint-yaml-build'"; \
1426+
fi
1427+
14101428
.PHONY: lint
14111429
.PHONY: lint-ci
14121430
ifneq ("","$(wildcard tools/node_modules/eslint/)")
@@ -1416,11 +1434,12 @@ lint: ## Run JS, C++, MD and doc linters.
14161434
$(MAKE) lint-cpp || EXIT_STATUS=$$? ; \
14171435
$(MAKE) lint-addon-docs || EXIT_STATUS=$$? ; \
14181436
$(MAKE) lint-md || EXIT_STATUS=$$? ; \
1437+
$(MAKE) lint-yaml || EXIT_STATUS=$$? ; \
14191438
exit $$EXIT_STATUS
14201439
CONFLICT_RE=^>>>>>>> [[:xdigit:]]+|^<<<<<<< [[:alpha:]]+
14211440

14221441
# Related CI job: node-test-linter
1423-
lint-ci: lint-js-ci lint-cpp lint-py lint-md lint-addon-docs
1442+
lint-ci: lint-js-ci lint-cpp lint-py lint-md lint-addon-docs lint-yaml-build lint-yaml
14241443
@if ! ( grep -IEqrs "$(CONFLICT_RE)" --exclude="error-message.js" benchmark deps doc lib src test tools ) \
14251444
&& ! ( $(FIND) . -maxdepth 1 -type f | xargs grep -IEqs "$(CONFLICT_RE)" ); then \
14261445
exit 0 ; \

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,6 @@ For information about the governance of the Node.js project, see
171171
**Colin Ihrig** &lt;[email protected]&gt; (he/him)
172172
* [codebytere](https://github.com/codebytere) -
173173
**Shelley Vohr** &lt;[email protected]&gt; (she/her)
174-
* [danbev](https://github.com/danbev) -
175-
**Daniel Bevenius** &lt;[email protected]&gt; (he/him)
176174
* [danielleadams](https://github.com/danielleadams) -
177175
**Danielle Adams** &lt;[email protected]&gt; (she/her)
178176
* [fhinkel](https://github.com/fhinkel) -
@@ -214,6 +212,8 @@ For information about the governance of the Node.js project, see
214212
**Ben Noordhuis** &lt;[email protected]&gt;
215213
* [chrisdickinson](https://github.com/chrisdickinson) -
216214
**Chris Dickinson** &lt;[email protected]&gt;
215+
* [danbev](https://github.com/danbev) -
216+
**Daniel Bevenius** &lt;[email protected]&gt; (he/him)
217217
* [evanlucas](https://github.com/evanlucas) -
218218
**Evan Lucas** &lt;[email protected]&gt; (he/him)
219219
* [Fishrock123](https://github.com/Fishrock123) -
@@ -268,6 +268,8 @@ For information about the governance of the Node.js project, see
268268
**Anatoli Papirovski** &lt;[email protected]&gt; (he/him)
269269
* [AshCripps](https://github.com/AshCripps) -
270270
**Ash Cripps** &lt;[email protected]&gt;
271+
* [Ayase-252](https://github.com/Ayase-252) -
272+
**Qingyu Deng** &lt;[email protected]&gt;
271273
* [bcoe](https://github.com/bcoe) -
272274
**Ben Coe** &lt;[email protected]&gt; (he/him)
273275
* [bengl](https://github.com/bengl) -
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
'use strict';
2+
const common = require('../common.js');
3+
const { AsyncLocalStorage } = require('async_hooks');
4+
5+
const bench = common.createBenchmark(main, {
6+
n: [1e7]
7+
});
8+
9+
async function run(store, n) {
10+
for (let i = 0; i < n; i++) {
11+
await new Promise((resolve) => store.run(i, resolve));
12+
}
13+
}
14+
15+
function main({ n }) {
16+
const store = new AsyncLocalStorage();
17+
bench.start();
18+
run(store, n).then(() => {
19+
bench.end(n);
20+
});
21+
}

common.gypi

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.9',
39+
'v8_embedder_string': '-node.12',
4040

4141
##### V8 defaults for Node.js #####
4242

@@ -268,6 +268,7 @@
268268
],
269269
'msvs_settings': {
270270
'VCCLCompilerTool': {
271+
'AdditionalOptions': ['/Zc:__cplusplus'],
271272
'BufferSecurityCheck': 'true',
272273
'DebugInformationFormat': 1, # /Z7 embed info in .obj files
273274
'ExceptionHandling': 0, # /EHsc

0 commit comments

Comments
 (0)