Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node.js-linux-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
# Using the same Node versions as the main workflow
node-version: [18, 20, 22]
node-version: [18, 20, 22, 24]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js-windows-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
# Using the same Node versions as the main workflow but without the .x suffix for Docker images
node-version: [18, 20, 22]
node-version: [18, 20, 22, 24]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js-windows-x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
# Using the same Node versions as the main workflow
node-version: [16.x, 18.x, 20.x, 22.x]
node-version: [18.x, 20.x, 22.x, 24.x]
architecture: ["x86"] # 32-bit architecture

steps:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
# TODO: Enable Node 14.x when we update the pipeline to support AbortController
node-version: [16.x, 18.x, 20.x, 22.x]
node-version: [18.x, 20.x, 22.x, 24.x]

steps:
- uses: actions/checkout@v2
Expand Down
43 changes: 15 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"backcompattest": "npm run build && npm pack && node --use_strict ./test/backCompatibility/runBackCompatTests.js"
},
"engines": {
"node": ">=8.0.0"
"node": ">=18.0.0"
},
"devDependencies": {
"@types/long": "^4.0.2",
Expand All @@ -65,7 +65,7 @@
},
"dependencies": {
"@azure/core-auth": "^1.9.0",
"@azure/functions": "^4.6.0",
"@azure/functions": "^4.11.2",
"@azure/functions-old": "npm:@azure/functions@3.5.1",
"@azure/identity": "^4.6.0",
"@azure/monitor-opentelemetry": "^1.15.1",
Expand Down
Loading