Skip to content
Open
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
8 changes: 3 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu, windows]
node-version: [20, 24]
exclude:
include:
- os: ubuntu
node-version: 24
node-version: 22
- os: windows
node-version: 20
node-version: 24

runs-on: ${{ fromJSON('{"ubuntu":"ubuntu-24.04", "windows":"windows-2022"}')[matrix.os] }}

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.11.1

- Bump minimum Node.js version from 20 to 22

## 0.11.0

- Breaking Change: Replace export `childProcess.exec()` with `childProcess.execFile()`
Expand Down
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ extends:
- job: Test_Windows
strategy:
matrix:
Win.Node20:
node.version: 20.x
Win.Node22:
node.version: 22.x
Win.Node24:
node.version: 24.x
pool:
Expand All @@ -68,8 +68,8 @@ extends:
- job: Test_Linux
strategy:
matrix:
Linux.Node20:
node.version: 20.x
Linux.Node22:
node.version: 22.x
Linux.Node24:
node.version: 24.x
pool:
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/avocado",
"version": "0.11.0",
"version": "0.11.1",
"description": "A validator of OpenAPI configurations",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -60,7 +60,7 @@
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/node": "^22.19.17",
"@vitest/coverage-v8": "^4.0.15",
"cross-env": "^10.1.0",
"eslint": "^10.0.0",
Expand All @@ -72,6 +72,6 @@
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20.19.0"
"node": ">=22.0.0"
}
}