Skip to content

Commit d54ecf7

Browse files
committed
Merge commit '2e414d5d1082233c3516fca923fe351d5186c80e' into js/node18.16.x
2 parents 4e36987 + 2e414d5 commit d54ecf7

File tree

4,800 files changed

+714889
-662890
lines changed

Some content is hidden

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

4,800 files changed

+714889
-662890
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "Node.js Core Developer Environment",
3+
"extensions": [
4+
"github.vscode-pull-request-github",
5+
"ms-vsliveshare.vsliveshare",
6+
"vscode-icons-team.vscode-icons",
7+
"visualstudioexptteam.vscodeintellicode"
8+
],
9+
"dockerFile": "Dockerfile",
10+
"initializeCommand": "docker system prune -f -a",
11+
"settings": {
12+
"terminal.integrated.profiles.linux": {
13+
"zsh (login)": {
14+
"path": "zsh",
15+
"args": ["-l"]
16+
}
17+
}
18+
}
19+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM nodejs/devcontainer:nightly

graal-nodejs/.flake8

Lines changed: 0 additions & 3 deletions
This file was deleted.

graal-nodejs/.github/CODEOWNERS

Lines changed: 39 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,53 +11,58 @@
1111
# tsc
1212

1313
/.github/CODEOWNERS @nodejs/tsc
14-
/GOVERNANCE.md @nodejs/tsc
15-
/onboarding.md @nodejs/tsc
1614
/CODE_OF_CONDUCT.md @nodejs/tsc
1715
/CONTRIBUTING.md @nodejs/tsc
18-
/LICENSE @nodejs/tsc
1916
/doc/contributing/*.md @nodejs/tsc
17+
/GOVERNANCE.md @nodejs/tsc
18+
/LICENSE @nodejs/tsc
19+
/onboarding.md @nodejs/tsc
20+
21+
# website
22+
/doc/api_assets @nodejs/website
23+
/doc/template.html @nodejs/website
24+
/tools/doc @nodejs/website
2025

2126
# streams
2227

2328
/lib/_stream* @nodejs/streams
29+
/lib/internal/streams/* @nodejs/streams
2430
/lib/stream.js @nodejs/streams
2531
/lib/stream/* @nodejs/streams
26-
/lib/internal/streams/* @nodejs/streams
2732

2833
# net
2934

3035
/deps/ada @nodejs/url
3136
/deps/cares @nodejs/net
32-
/doc/api/dns.md @nodejs/net
3337
/doc/api/dgram.md @nodejs/net
38+
/doc/api/dns.md @nodejs/net
3439
/doc/api/net.md @nodejs/net
3540
/lib/dgram.js @nodejs/net
3641
/lib/dns.js @nodejs/net
37-
/lib/net.js @nodejs/net
38-
/lib/url.js @nodejs/url
3942
/lib/internal/dgram.js @nodejs/net
4043
/lib/internal/dns/* @nodejs/net
44+
/lib/internal/js_stream_socket.js @nodejs/net
4145
/lib/internal/net.js @nodejs/net
4246
/lib/internal/socket_list.js @nodejs/net
43-
/lib/internal/js_stream_socket.js @nodejs/net
4447
/lib/internal/url.js @nodejs/url
45-
/src/node_url.* @nodejs/url
48+
/lib/net.js @nodejs/net
49+
/lib/url.js @nodejs/url
4650
/src/cares_wrap.cc @nodejs/net
4751
/src/connect_wrap.* @nodejs/net
4852
/src/connection_wrap.* @nodejs/net
4953
/src/node_sockaddr* @nodejs/net
54+
/src/node_url.* @nodejs/url
5055
/src/tcp_wrap.* @nodejs/net
5156
/src/udp_wrap.* @nodejs/net
5257

5358
# tls/crypto
5459

60+
/lib/crypto.js @nodejs/crypto
5561
/lib/internal/crypto/* @nodejs/crypto
5662
/lib/internal/tls/* @nodejs/crypto @nodejs/net
57-
/lib/crypto.js @nodejs/crypto
5863
/lib/tls.js @nodejs/crypto @nodejs/net
59-
/src/node_crypto* @nodejs/crypto
6064
/src/crypto/* @nodejs/crypto
65+
/src/node_crypto* @nodejs/crypto
6166

6267
# http
6368

@@ -93,10 +98,10 @@
9398

9499
# Node-API
95100

96-
/src/node_api* @nodejs/node-api
97-
/src/js_native_api* @nodejs/node-api
98-
/doc/contributing/adding-new-napi-api.md @nodejs/node-api
99101
/doc/api/n-api.md @nodejs/node-api
102+
/doc/contributing/adding-new-napi-api.md @nodejs/node-api
103+
/src/js_native_api* @nodejs/node-api
104+
/src/node_api* @nodejs/node-api
100105

101106
# gyp
102107

@@ -110,16 +115,19 @@
110115
/doc/api/wasi.md @nodejs/wasi
111116
/lib/wasi.js @nodejs/wasi
112117
/src/node_wasi* @nodejs/wasi
113-
/test/wasi/ @nodejs/wasi
114118
/test/fixtures/wasi/ @nodejs/wasi
119+
/test/wasi/ @nodejs/wasi
115120

116121
# Startup
117122

118123
/benchmark/misc/startup.js @nodejs/startup
119-
/src/node.cc @nodejs/startup
124+
/lib/internal/bootstrap/* @nodejs/startup
120125
/src/node_builtins* @nodejs/startup
126+
/src/node_realm* @nodejs/startup @nodejs/realm
121127
/src/node_snapshot* @nodejs/startup
122-
/lib/internal/bootstrap/* @nodejs/startup
128+
/src/node.cc @nodejs/startup
129+
/test/parallel/test-bootstrap-* @nodejs/startup
130+
/test/parallel/test-snapshot-* @nodejs/startup
123131
/tools/snapshot/* @nodejs/startup
124132

125133
# V8
@@ -134,19 +142,28 @@
134142

135143
# Test runner
136144

137-
/test/message/test_runner_* @nodejs/test_runner
138-
/test/parallel/test-runner-* @nodejs/test_runner
139145
/doc/api/test.md @nodejs/test_runner
140-
/lib/test.js @nodejs/test_runner
141146
/lib/internal/main/test_runner.js @nodejs/test_runner
142147
/lib/internal/test_runner/* @nodejs/test_runner
148+
/lib/test.js @nodejs/test_runner
149+
/test/parallel/test-runner-* @nodejs/test_runner
143150

144151
# Single Executable Applications
145152
/deps/postject @nodejs/single-executable
146153
/doc/api/single-executable-applications.md @nodejs/single-executable
147-
/doc/contributing/maintaining-postject.md @nodejs/single-executable
148-
/doc/contributing/maintaining-single-executable-application-support.md @nodejs/single-executable
154+
/doc/contributing/maintaining/maintaining-single-executable-application-support.md @nodejs/single-executable
149155
/src/node_sea* @nodejs/single-executable
150156
/test/fixtures/postject-copy @nodejs/single-executable
151157
/test/parallel/test-single-executable-* @nodejs/single-executable
152158
/tools/dep_updaters/update-postject.sh @nodejs/single-executable
159+
160+
# Permission Model
161+
/doc/api/permissions.md @nodejs/security-wg
162+
/src/permission/* @nodejs/security-wg
163+
164+
# Dependency Update Tools
165+
166+
/.github/workflows/tools.yml @nodejs/security-wg
167+
/.github/workflows/update-openssl.yml @nodejs/security-wg
168+
/.github/workflows/update-v8.yml @nodejs/security-wg @nodejs/v8-update
169+
/tools/dep_updaters/* @nodejs/security-wg

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ body:
3333
label: How often does it reproduce? Is there a required condition?
3434
- type: textarea
3535
attributes:
36-
label: What is the expected behavior?
36+
label: What is the expected behavior? Why is that the expected behavior?
3737
description: If possible please provide textual output instead of screenshots.
3838
- type: textarea
3939
attributes:

graal-nodejs/.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ updates:
66
directory: /
77
schedule:
88
interval: monthly
9+
commit-message:
10+
prefix: meta
911
open-pull-requests-limit: 10

0 commit comments

Comments
 (0)