Skip to content

Commit 99101f1

Browse files
committed
Update dependencies.
1 parent 04772b5 commit 99101f1

File tree

8 files changed

+652
-1536
lines changed

8 files changed

+652
-1536
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,17 @@ jobs:
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929

30+
- name: Install pnpm
31+
run: npm install -g pnpm
32+
3033
- name: Install dependencies
31-
run: npm install
34+
run: pnpm install --frozen-lockfile
3235

3336
- name: List installed packages
34-
run: npm ls -a
37+
run: pnpm list --depth Infinity
3538

3639
- name: Build project
37-
run: npm run build
40+
run: pnpm build
3841

3942
- name: Run tests
40-
run: npm test
43+
run: pnpm test

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# @azure-tools/rest-api-diff
22

3-
## 0.2.1 (TBD)
3+
## 0.2.1 (2025-04-09)
44

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

78
## 0.2.0 (2025-03-11)
89

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure-tools/rest-api-diff",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"author": "Microsoft Corporation",
55
"description": "Compares two Swagger definitions to identify relevant differences.",
66
"license": "MIT",
@@ -31,18 +31,18 @@
3131
"cmd/rest-api-diff.js"
3232
],
3333
"devDependencies": {
34-
"@azure-tools/typespec-azure-resource-manager": ">=0.44.0, <1.0.0",
34+
"@azure-tools/typespec-azure-resource-manager": ">=0.54.0, <1.0.0",
3535
"@azure/avocado": "^0.9.1",
3636
"@types/deep-diff": "^1.0.5",
3737
"@types/diff": "^7.0.0",
3838
"@types/node": "^20.14.7",
3939
"@types/yargs": "^17.0.32",
40-
"@typespec/compiler": ">=0.57.0, <1.0.0",
41-
"@typespec/http": ">=0.57.0, <1.0.0",
42-
"@typespec/openapi": ">=0.57.0, <1.0.0",
43-
"@typespec/openapi3": ">=0.57.0, <1.0.0",
44-
"@typespec/rest": ">=0.57.0, <1.0.0",
45-
"@typespec/versioning": ">=0.57.0, <1.0.0",
40+
"@typespec/compiler": "^1.0.0-0",
41+
"@typespec/http": "^1.0.0-0",
42+
"@typespec/openapi": "^1.0.0-0",
43+
"@typespec/openapi3": "^1.0.0-0",
44+
"@typespec/rest": ">=0.68.0, <1.0.0",
45+
"@typespec/versioning": ">=0.68.0, <1.0.0",
4646
"@vitest/coverage-v8": "^2.1.0",
4747
"openapi-types": "^1.0.0",
4848
"prettier": "~3.2.5",
@@ -53,8 +53,8 @@
5353
"vitest": "^2.1.3"
5454
},
5555
"dependencies": {
56-
"@azure-tools/typespec-autorest": ">=0.44.0, <1.0.0",
57-
"@azure-tools/typespec-azure-core": ">=0.44.0, <1.0.0",
56+
"@azure-tools/typespec-autorest": ">=0.54.0, <1.0.0",
57+
"@azure-tools/typespec-azure-core": ">=0.54.0, <1.0.0",
5858
"acorn": "^8.12.0",
5959
"acorn-walk": "^8.3.3",
6060
"arg": "^4.1.3",

0 commit comments

Comments
 (0)