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
11 changes: 7 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,17 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: npm install
run: pnpm install --frozen-lockfile

- name: List installed packages
run: npm ls -a
run: pnpm list --depth Infinity

- name: Build project
run: npm run build
run: pnpm build

- name: Run tests
run: npm test
run: pnpm test
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# @azure-tools/rest-api-diff

## 0.2.1 (TBD)
## 0.2.1 (2025-04-09)

- Added `--suppressions` option to point to a filing containing point suppressions of violations.
- Added `--suppressions` option to point to a file containing point suppressions of violations.
- Fixed issue where inheritance chains were not being properly expanded.

## 0.2.0 (2025-03-11)

Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure-tools/rest-api-diff",
"version": "0.2.0",
"version": "0.2.1",
"author": "Microsoft Corporation",
"description": "Compares two Swagger definitions to identify relevant differences.",
"license": "MIT",
Expand Down Expand Up @@ -31,18 +31,18 @@
"cmd/rest-api-diff.js"
],
"devDependencies": {
"@azure-tools/typespec-azure-resource-manager": ">=0.44.0, <1.0.0",
"@azure-tools/typespec-azure-resource-manager": ">=0.54.0, <1.0.0",
"@azure/avocado": "^0.9.1",
"@types/deep-diff": "^1.0.5",
"@types/diff": "^7.0.0",
"@types/node": "^20.14.7",
"@types/yargs": "^17.0.32",
"@typespec/compiler": ">=0.57.0, <1.0.0",
"@typespec/http": ">=0.57.0, <1.0.0",
"@typespec/openapi": ">=0.57.0, <1.0.0",
"@typespec/openapi3": ">=0.57.0, <1.0.0",
"@typespec/rest": ">=0.57.0, <1.0.0",
"@typespec/versioning": ">=0.57.0, <1.0.0",
"@typespec/compiler": "^1.0.0-0",
"@typespec/http": "^1.0.0-0",
"@typespec/openapi": "^1.0.0-0",
"@typespec/openapi3": "^1.0.0-0",
"@typespec/rest": ">=0.68.0, <1.0.0",
"@typespec/versioning": ">=0.68.0, <1.0.0",
"@vitest/coverage-v8": "^2.1.0",
"openapi-types": "^1.0.0",
"prettier": "~3.2.5",
Expand All @@ -53,8 +53,8 @@
"vitest": "^2.1.3"
},
"dependencies": {
"@azure-tools/typespec-autorest": ">=0.44.0, <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.44.0, <1.0.0",
"@azure-tools/typespec-autorest": ">=0.54.0, <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.54.0, <1.0.0",
"acorn": "^8.12.0",
"acorn-walk": "^8.3.3",
"arg": "^4.1.3",
Expand Down
Loading