You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules/1008.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
**Description**: Checks whether an existing operation's `operationId` is changed from the previous specification.
4
4
5
-
**Cause**: This is considered a breaking change. This change requires new api-version.
5
+
**Cause**: This is considered a breaking change even in a new api-version.
6
6
7
7
**Example**: `operationId` of Operation `get` from Path `/subscriptions/{subscriptionId}/providers/Microsoft.Contoso/resource1` is being updated without revising api-version.
Copy file name to clipboardExpand all lines: docs/rules/1023.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,10 @@
2
2
3
3
**Description**: Checks whether any existing property's [format](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#dataTypeFormat) element has changed from the previous specification.
4
4
5
-
**Cause**: This is considered a breaking change in most cases except widening integer("int32" -> "int64") in request and narrowing integer ("int64" -> "int32") in response which are not breaking change in new api-version.
5
+
**Cause**: This is considered a breaking change, exceptions in new api-version:
6
+
1 widening integer("int32" -> "int64") in request
7
+
2 narrowing integer ("int64" -> "int32") in response .
8
+
6
9
7
10
**Example**: Property `a` of Parameter `CreateParameters` changed format from `int64` to `int32` in the new version.
0 commit comments