Skip to content

Commit b09b1d1

Browse files
Merge branch 'nodejs:main' into fix/schedulingPolicy-import
2 parents 06e0916 + 5fb6305 commit b09b1d1

File tree

3,300 files changed

+224602
-89433
lines changed

Some content is hidden

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

3,300 files changed

+224602
-89433
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 1 deletion
This file was deleted.

.devcontainer/.devcontainer.json renamed to .devcontainer/devcontainer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "Node.js Core Developer Environment",
33
"extensions": [
4-
"github.vscode-pull-request-github",
5-
"ms-vsliveshare.vsliveshare",
6-
"vscode-icons-team.vscode-icons",
7-
"visualstudioexptteam.vscodeintellicode"
4+
"github.vscode-pull-request-github",
5+
"ms-vsliveshare.vsliveshare",
6+
"vscode-icons-team.vscode-icons",
7+
"visualstudioexptteam.vscodeintellicode"
88
],
9-
"dockerFile": "Dockerfile",
9+
"image": "nodejs/devcontainer:nightly",
1010
"initializeCommand": "docker system prune -f -a",
1111
"settings": {
1212
"terminal.integrated.profiles.linux": {

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
/CONTRIBUTING.md @nodejs/tsc
1818
/doc/contributing/*.md @nodejs/tsc
1919
/GOVERNANCE.md @nodejs/tsc
20+
/SECURITY.md @nodejs/tsc
2021
/LICENSE @nodejs/tsc
2122
/onboarding.md @nodejs/tsc
2223

@@ -59,6 +60,8 @@
5960

6061
# tls/crypto
6162

63+
/doc/api/crypto.md @nodejs/crypto
64+
/doc/api/webcrypto.md @nodejs/crypto
6265
/lib/crypto.js @nodejs/crypto
6366
/lib/internal/crypto/* @nodejs/crypto
6467
/lib/internal/tls/* @nodejs/crypto @nodejs/net
@@ -176,3 +179,5 @@
176179
# Web Standards
177180
/lib/internal/bootstrap/web/* @nodejs/web-standards
178181
/lib/internal/navigator.js @nodejs/web-standards
182+
/test/fixtures/wpt/ @nodejs/web-standards
183+
/test/wpt/ @nodejs/web-standards

.github/ISSUE_TEMPLATE/1-bug-report.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ body:
2727
- type: textarea
2828
attributes:
2929
label: What steps will reproduce the bug?
30-
description: Enter details about your bug, preferably a simple code snippet that can be run using `node` directly without installing third-party dependencies.
30+
description: >
31+
Enter details about your bug, preferably a simple code snippet that can
32+
be run using `node` directly without installing third-party dependencies
33+
or downloading code from the internet (i.e. no ZIP archive, no GitHub
34+
repository, etc.).
3135
- type: textarea
3236
attributes:
3337
label: How often does it reproduce? Is there a required condition?

.github/workflows/auto-start-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
if: needs.get-prs-for-ci.outputs.numbers != ''
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
49+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5050
with:
5151
persist-credentials: false
5252

5353
- name: Install Node.js
54-
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
54+
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
5555
with:
5656
node-version: ${{ env.NODE_VERSION }}
5757

.github/workflows/build-tarball.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
if: github.event.pull_request.draft == false
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
42+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4343
with:
4444
persist-credentials: false
4545
- name: Set up Python ${{ env.PYTHON_VERSION }}
46-
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
46+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
4747
with:
4848
python-version: ${{ env.PYTHON_VERSION }}
4949
- name: Environment Information
@@ -57,25 +57,25 @@ jobs:
5757
mkdir tarballs
5858
mv *.tar.gz tarballs
5959
- name: Upload tarball artifact
60-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
60+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
6161
with:
6262
name: tarballs
6363
path: tarballs
6464
test-tarball-linux:
6565
needs: build-tarball
6666
runs-on: ubuntu-latest
6767
steps:
68-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
68+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6969
with:
7070
persist-credentials: false
7171
- name: Set up Python ${{ env.PYTHON_VERSION }}
72-
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
72+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
7373
with:
7474
python-version: ${{ env.PYTHON_VERSION }}
7575
- name: Environment Information
7676
run: npx envinfo
7777
- name: Download tarball
78-
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
78+
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
7979
with:
8080
name: tarballs
8181
path: tarballs

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
fail-fast: false
3939
runs-on: ${{ matrix.windows }}
4040
steps:
41-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
41+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4242
with:
4343
persist-credentials: false
4444
- name: Set up Python ${{ env.PYTHON_VERSION }}
45-
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
45+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
4646
with:
4747
python-version: ${{ env.PYTHON_VERSION }}
4848
- name: Install deps

.github/workflows/commit-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
run: |
1818
echo "plusOne=$((${{ github.event.pull_request.commits }} + 1))" >> $GITHUB_OUTPUT
1919
echo "minusOne=$((${{ github.event.pull_request.commits }} - 1))" >> $GITHUB_OUTPUT
20-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
20+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2121
with:
2222
fetch-depth: ${{ steps.nb-of-commits.outputs.plusOne }}
2323
persist-credentials: false
2424
- run: git reset HEAD^2
2525
- name: Install Node.js
26-
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
26+
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
2727
with:
2828
node-version: ${{ env.NODE_VERSION }}
2929
- name: Validate commit message

.github/workflows/commit-queue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
if: needs.get_mergeable_prs.outputs.numbers != ''
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
61+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6262
with:
6363
# Needs the whole git history for ncu to work
6464
# See https://github.com/nodejs/node-core-utils/pull/486
@@ -71,7 +71,7 @@ jobs:
7171

7272
# Install dependencies
7373
- name: Install Node.js
74-
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
74+
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
7575
with:
7676
node-version: ${{ env.NODE_VERSION }}
7777
- name: Install @node-core/utils

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
if: github.event.pull_request.draft == false
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
44+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4545
with:
4646
persist-credentials: false
4747
- name: Set up Python ${{ env.PYTHON_VERSION }}
48-
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
48+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
4949
with:
5050
python-version: ${{ env.PYTHON_VERSION }}
5151
- name: Environment Information

0 commit comments

Comments
 (0)