Skip to content

Commit 6f655eb

Browse files
DmitryVasilevskyDmitry Vasilevsky
and
Dmitry Vasilevsky
authored
Update node.js version to the active LTS version 22.13.1 (microsoft#2141)
You'll need at least 22.13 to build now. Previous version 18.17.1 was nearing end of support. --------- Co-authored-by: Dmitry Vasilevsky <[email protected]>
1 parent f8c794d commit 6f655eb

8 files changed

+35
-17
lines changed

.ado/publish.yml

+16
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ extends:
112112
inputs:
113113
versionSpec: '3.11'
114114

115+
- task: UseNode@1
116+
inputs:
117+
version: "20.x"
118+
115119
- script: |
116120
python ./prereqs.py --install && python ./version.py
117121
displayName: Install Prereqs and set version
@@ -155,6 +159,10 @@ extends:
155159
inputs:
156160
versionSpec: '3.11'
157161

162+
- task: UseNode@1
163+
inputs:
164+
version: "20.x"
165+
158166
- script: |
159167
python ./prereqs.py --install && python ./version.py
160168
displayName: Install Prereqs and set version
@@ -212,6 +220,10 @@ extends:
212220
inputs:
213221
versionSpec: '3.11'
214222

223+
- task: UseNode@1
224+
inputs:
225+
version: "20.x"
226+
215227
- script: |
216228
python ./prereqs.py --skip-wasm && python ./version.py
217229
displayName: Install Prereqs and set version
@@ -280,6 +292,10 @@ extends:
280292
inputs:
281293
versionSpec: '3.11'
282294

295+
- task: UseNode@1
296+
inputs:
297+
version: "20.x"
298+
283299
- script: |
284300
python ./prereqs.py --skip-wasm && python ./version.py
285301
displayName: Install Prereqs and set version

.github/workflows/bench-reports.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
CARGO_TERM_COLOR: always
9-
NODE_VERSION: "18.17.1"
9+
NODE_VERSION: "20.18.2"
1010
PYTHON_VERSION: "3.11"
1111
RUST_TOOLCHAIN_VERSION: "1.84"
1212

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818

1919
env:
2020
CARGO_TERM_COLOR: always
21-
NODE_VERSION: "18.17.1"
21+
NODE_VERSION: "20.18.2"
2222
PYTHON_VERSION: "3.11"
2323
RUST_TOOLCHAIN_VERSION: "1.84"
2424
RUST_TOOLCHAIN_COMPONENTS: rustfmt clippy

.github/workflows/memory_profile.yml

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

1414
env:
1515
CARGO_TERM_COLOR: always
16-
NODE_VERSION: "18.17.1"
16+
NODE_VERSION: "20.18.2"
1717
PYTHON_VERSION: "3.11"
1818
RUST_TOOLCHAIN_VERSION: "1.84"
1919
RUST_TOOLCHAIN_COMPONENTS: rustfmt clippy

.github/workflows/publish-playground.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
python-version: '3.11'
4646
- uses: actions/setup-node@v3
4747
with:
48-
node-version: '18.17.1'
48+
node-version: '20.18.2'
4949
- uses: Swatinem/rust-cache@v2
5050
- name: Prereqs
5151
run: python ./prereqs.py --install

package-lock.json

+12-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"license": "MIT",
99
"engines": {
10-
"node": ">=18.17.1"
10+
"node": ">=20.18.2"
1111
},
1212
"scripts": {
1313
"eslint:check": "eslint -c ./eslint.config.mjs --max-warnings 0 ./",
@@ -24,7 +24,7 @@
2424
"@types/chai": "^4.3.8",
2525
"@types/markdown-it": "^14.1.1",
2626
"@types/mocha": "^10.0.2",
27-
"@types/node": "^18.17",
27+
"@types/node": "^20.17",
2828
"@types/vscode": "^1.83.0",
2929
"@types/vscode-webview": "^1.57.3",
3030
"@vscode/debugadapter": "^1.63.0",

prereqs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
python_ver = (3, 11) # Python support for Windows on ARM64 requires v3.11 or later
1616
rust_ver = (1, 84) # Ensure Rust version 1.84 or later is installed
1717
node_ver = (
18+
20,
1819
18,
19-
17,
2020
)
2121
wasmpack_ver = (0, 12, 1) # Latest tested wasm-pack version
2222
rust_fmt_ver = (1, 8, 0) # Current version when Rust 1.84 shipped

0 commit comments

Comments
 (0)