Skip to content
This repository was archived by the owner on Jul 27, 2020. It is now read-only.

v24.0.0-beta.1

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 13 Sep 19:47
· 455 commits to master since this release

24.0.0-beta.1 (2019-09-13)

Bug Fixes

  • normalize x-changes extension` (68d142f)

BREAKING CHANGES

  • The format of the x-changes extension changed.

For operations:

   "x-changes": [
     {
-      "type": "idName",
+      "type": "operation",
       "date": "2019-04-10",
       "note": "\"Find organization installation\" renamed to \"Get an organization installation\"",
-      "meta": {
-        "before": {
-          "idName": "find-org-installation"
-        },
-        "after": {
-          "idName": "get-org-installation"
-        }
+      "before": {
+        "operationId": "find-org-installation"
+      },
+      "after": {
+        "operationId": "get-org-installation"
       }
     }
   ]

For parameters

   "x-changes": [
     {
       "type": "parameter",
       "date": "2019-04-10",
       "note": "\"number\" parameter renamed to \"issue_number\"",
-      "meta": {
-        "before": "number",
-        "after": "issue_number"
+      "before": {
+        "name": "number"
+      },
+      "after": {
+        "name": "issue_number"
       }
     }
   ],