Skip to content

Commit 9b6e3db

Browse files
committed
Merge pull request #82 from tjprescott/revert_0_2_1
Revert "Merge pull request #79 from tjprescott/FixInheritanceChain"
2 parents 3fbeb14 + 01811c6 commit 9b6e3db

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+891
-249
lines changed

.vscode/launch.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
"skipFiles": ["<node_internals>/**"],
99
"program": "${workspaceFolder}/cmd/rest-api-diff.js",
1010
"cwd": "${workspaceFolder}"
11+
},
12+
{
13+
"type": "node",
14+
"request": "launch",
15+
"name": "Extract Paths Script",
16+
"skipFiles": ["<node_internals>/**"],
17+
"program": "${workspaceFolder}/scripts/extract-paths.mjs",
18+
"cwd": "${workspaceFolder}"
1119
}
1220
]
1321
}

CHANGELOG.md

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

3+
## 0.2.3 (TBD)
4+
5+
- TBD
6+
7+
## 0.2.2 (2025-04-14)
8+
9+
- Reverted change for inheritance chains. This will be fixed in a future release.
10+
- Removed `--group-violations`. Now violations will always be grouped.
11+
- `.env` file will now override cached variables set in the environment.
12+
313
## 0.2.1 (2025-04-09)
414

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

818
## 0.2.0 (2025-03-11)

compute-suppressions.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
- path: "definitions/OperationListResult/type"
2-
reason: "Common type"
3-
- path: "definitions/Operation/properties/display/type"
4-
reason: "Common type"
1+
- path: "paths/blah/example"
2+
reason: "Test"

package.json

Lines changed: 1 addition & 1 deletion
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.3-rc.1",
44
"author": "Microsoft Corporation",
55
"description": "Compares two Swagger definitions to identify relevant differences.",
66
"license": "MIT",

0 commit comments

Comments
 (0)