Skip to content

Commit 5885ee3

Browse files
Merge pull request #1042 from nodejs/main
Create a new pull request by comparing changes across two branches
2 parents 2817155 + fd0d852 commit 5885ee3

File tree

10,607 files changed

+614293
-829863
lines changed

Some content is hidden

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

10,607 files changed

+614293
-829863
lines changed

.github/CODEOWNERS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,19 @@
200200
/lib/url.js @nodejs/url
201201
/src/node_url.* @nodejs/url
202202
/test/fixtures/wpt/url @nodejs/url
203+
204+
# SQLite
205+
/deps/sqlite/ @nodejs/sqlite
206+
/doc/api/sqlite.md @nodejs/sqlite
207+
/src/node_sqlite.* @nodejs/sqlite
208+
/test/parallel/test-sqlite* @nodejs/sqlite
209+
/test/sqlite/ @nodejs/sqlite
210+
/tools/dep_updaters/update-sqlite.sh @nodejs/sqlite
211+
212+
# Config
213+
/doc/node-config-schema.json @nodejs/config
214+
/src/node_config.* @nodejs/config
215+
/src/node_dotenv.* @nodejs/config
216+
/src/node_options.* @nodejs/config
217+
/test/parallel/test-config-* @nodejs/config
218+
/test/parallel/test-dotenv-* @nodejs/config

.github/ISSUE_TEMPLATE/4-report-a-flaky-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ body:
2828
- AIX
2929
- FreeBSD
3030
- Linux ARM64
31-
- Linux ARMv7
3231
- Linux PPC64LE
3332
- Linux s390x
3433
- Linux x64

.github/SUPPORT.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ Node.js](https://github.com/nodejs/Release#release-schedule).
77
When looking for support, please first search for your question in these venues:
88

99
* [Node.js Website](https://nodejs.org/en/), especially the
10-
[API docs](https://nodejs.org/api/)
11-
* [Node.js Help](https://github.com/nodejs/help)
10+
[API docs](https://nodejs.org/api/) or the [Learn material](https://nodejs.org/en/learn)
11+
* [Node.js's GitHub Help repository](https://github.com/nodejs/help)
1212
* [Open or closed issues in the Node.js GitHub organization](https://github.com/issues?utf8=%E2%9C%93&q=sort%3Aupdated-desc+org%3Anodejs+is%3Aissue)
13+
* [Ask for support on Node.js's Discord server](https://nodejs.org/discord)
1314

1415
If you didn't find an answer in the resources above, try these unofficial
1516
resources:
@@ -19,7 +20,7 @@ resources:
1920
* [Node.js Slack Community](https://node-js.slack.com/)
2021
* To register: [nodeslackers.com](https://www.nodeslackers.com/)
2122

22-
GitHub issues are for tracking enhancements and bugs, not general support.
23+
**GitHub issues are for tracking enhancements and bugs, not general support.**
2324

2425
The open source license grants you the freedom to use Node.js. It does not
2526
guarantee commitments of other people's time. Please be respectful and manage

.github/codeql-config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: CodeQL config
2+
3+
paths-ignore:
4+
- test
5+
- deps/v8/test
6+
- deps/v8/tools

.github/label-pr-config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ subSystemLabels:
3434
/^src\/node_bob*/: c++, quic
3535
/^src\/node_sea/: single-executable
3636
/^src\/node_sqlite.*/: c++, sqlite
37+
/^src\/node_config_file.*/: c++, config
38+
/^src\/node_dotenv.*/: c++, config
39+
/^src\/node_options.*/: c++, config
3740

3841
# Properly label changes to V8 inspector integration-related files
3942
/^src\/inspector_/: c++, inspector, needs-ci
@@ -149,6 +152,8 @@ exlusiveLabels:
149152
# Specific map for typescript.md as it should be labeled 'strip-types'
150153
/^doc\/api\/typescript.md$/: doc, strip-types
151154

155+
/^doc\/node-config-schema.json$/: doc, config
156+
152157
/^doc\//: doc
153158

154159
# More specific benchmarks
@@ -168,6 +173,7 @@ allJsSubSystems:
168173
- buffer
169174
- child_process
170175
- cluster
176+
- config
171177
- console
172178
- crypto
173179
- debugger

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
persist-credentials: false
5151

5252
- name: Install Node.js
53-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
53+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
5454
with:
5555
node-version: ${{ env.NODE_VERSION }}
5656

.github/workflows/build-tarball.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
with:
4747
persist-credentials: false
4848
- name: Set up Python ${{ env.PYTHON_VERSION }}
49-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
49+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
5050
with:
5151
python-version: ${{ env.PYTHON_VERSION }}
5252
- name: Set up sccache
53-
uses: mozilla-actions/sccache-action@054db53350805f83040bf3e6e9b8cf5a139aa7c9 # v0.0.7
53+
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
5454
with:
55-
version: v0.9.1
55+
version: v0.10.0
5656
- name: Environment Information
5757
run: npx envinfo
5858
- name: Make tarball
@@ -64,7 +64,7 @@ jobs:
6464
mkdir tarballs
6565
mv *.tar.gz tarballs
6666
- name: Upload tarball artifact
67-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
67+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
6868
with:
6969
name: tarballs
7070
path: tarballs
@@ -76,17 +76,17 @@ jobs:
7676
with:
7777
persist-credentials: false
7878
- name: Set up Python ${{ env.PYTHON_VERSION }}
79-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
79+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
8080
with:
8181
python-version: ${{ env.PYTHON_VERSION }}
8282
- name: Set up sccache
83-
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6
83+
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
8484
with:
85-
version: v0.8.1
85+
version: v0.10.0
8686
- name: Environment Information
8787
run: npx envinfo
8888
- name: Download tarball
89-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
89+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
9090
with:
9191
name: tarballs
9292
path: tarballs

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
if: github.repository == 'nodejs/node'
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
44+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
4545
with:
4646
repo-token: ${{ secrets.GITHUB_TOKEN }}
4747
days-before-stale: 180

.github/workflows/close-stalled.yml

Lines changed: 1 addition & 3 deletions
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@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
23+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
2424
with:
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
2626
days-before-close: 30
@@ -32,7 +32,5 @@ jobs:
3232
only-labels: stalled
3333
# max requests it will send per run to the GitHub API before it deliberately exits to avoid hitting API rate limits
3434
operations-per-run: 500
35-
# deactivates automatic removal of stalled label if issue gets any activity
36-
remove-stale-when-updated: false
3735
# deactivates automatic stale labelling as we prefer to do that manually
3836
days-before-stale: -1

.github/workflows/codeql.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Run CodeQL
2+
3+
on:
4+
schedule:
5+
- cron: 0 0 * * *
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
analyze:
12+
name: Analyze
13+
runs-on: ubuntu-latest
14+
permissions:
15+
actions: read
16+
contents: read
17+
security-events: write
18+
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
language: [cpp, javascript, python]
23+
24+
steps:
25+
- name: Checkout repository
26+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
28+
# Initializes the CodeQL tools for scanning.
29+
- name: Initialize CodeQL
30+
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
31+
with:
32+
languages: ${{ matrix.language }}
33+
config-file: ./.github/codeql-config.yml
34+
35+
- name: Autobuild
36+
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
37+
38+
- name: Perform CodeQL Analysis
39+
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
40+
with:
41+
category: /language:${{matrix.language}}

0 commit comments

Comments
 (0)