Skip to content

Commit 718655a

Browse files
committed
Upgrade from Node 20 to 22
fixes #939 Signed-off-by: Aurélien Pupier <[email protected]>
1 parent 37c49cb commit 718655a

File tree

8 files changed

+14
-12
lines changed

8 files changed

+14
-12
lines changed

.github/workflows/camel_version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Setup Node
5757
uses: actions/setup-node@v4
5858
with:
59-
node-version: 20
59+
node-version: 22
6060
cache: "npm"
6161

6262
- name: Install global dependencies

.github/workflows/coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup Node
4242
uses: actions/setup-node@v4
4343
with:
44-
node-version: 20
44+
node-version: 22
4545
cache: npm
4646

4747
- name: Install

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup Node
4242
uses: actions/setup-node@v4
4343
with:
44-
node-version: 20
44+
node-version: 22
4545
cache: npm
4646

4747
- id: setup-docker-qemu

.github/workflows/insider.yaml

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

5151
- uses: actions/setup-node@v4
5252
with:
53-
node-version: 20
53+
node-version: 22
5454
cache: "npm"
5555

5656
- name: Install global dependencies

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ ubuntu-latest, macos-latest, windows-latest ]
19-
version: [ "1.98.2", max ] # [ "x.x.x" | latest | max ]
19+
version: [ "1.101.2", max ] # [ "x.x.x" | latest | max ]
2020
type: [ stable ] # [ stable | insider ]
2121
fail-fast: false
2222
timeout-minutes: 30
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup Node
5454
uses: actions/setup-node@v4
5555
with:
56-
node-version: 20
56+
node-version: 22
5757
cache: "npm"
5858

5959
- name: Install global dependencies

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be
44

55
## 1.10.0
66

7+
- Use Node 22 instead of Node 20, minimal version of VS Code is now 1.101
8+
79
## 1.9.0
810

911
- Update default Camel version used for Camel JBang from 4.12.0 to 4.13.0

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url": "https://github.com/camel-tooling/camel-dap-client-vscode/issues"
1717
},
1818
"engines": {
19-
"vscode": "^1.82.0"
19+
"vscode": "^1.101.0"
2020
},
2121
"categories": [
2222
"Debuggers"
@@ -345,7 +345,7 @@
345345
"@types/glob": "^8.1.0",
346346
"@types/mocha": "^10.0.10",
347347
"@types/node": "^14.18.63",
348-
"@types/vscode": "^1.82.0",
348+
"@types/vscode": "^1.101.0",
349349
"@typescript-eslint/eslint-plugin": "^8.43.0",
350350
"@vscode/test-electron": "^2.3.9",
351351
"async-wait-until": "^2.0.30",

0 commit comments

Comments
 (0)