Skip to content

Commit 288e29f

Browse files
committed
Revert "Merge pull request #79 from tjprescott/FixInheritanceChain"
This reverts commit 3fbeb14, reversing changes made to 5f5aa1e.
1 parent 3fbeb14 commit 288e29f

File tree

8 files changed

+1516
-731
lines changed

8 files changed

+1516
-731
lines changed

.github/workflows/ci.yaml

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

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

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

3936
- name: Build project
40-
run: pnpm build
37+
run: npm run build
4138

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

CHANGELOG.md

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

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

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.
5+
- Added `--suppressions` option to point to a filing containing point suppressions of violations.
76

87
## 0.2.0 (2025-03-11)
98

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.1",
3+
"version": "0.2.0",
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.54.0, <1.0.0",
34+
"@azure-tools/typespec-azure-resource-manager": ">=0.44.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": "^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",
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",
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.54.0, <1.0.0",
57-
"@azure-tools/typespec-azure-core": ">=0.54.0, <1.0.0",
56+
"@azure-tools/typespec-autorest": ">=0.44.0, <1.0.0",
57+
"@azure-tools/typespec-azure-core": ">=0.44.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)