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

v24.0.0

Choose a tag to compare

@github-actions github-actions released this 16 Sep 18:55
· 427 commits to master since this release

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": "apps/find-org-installation"
+      },
+      "after": {
+        "operationId": "apps/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"
       }
     }
   ],

Features

  • repos/list-users-with-access-to-protected-branch -> repos/get-users-with-access-to-protected-branch (78b05b8)
  • repos/list-users-with-access-to-protected-branch -> repos/get-users-with-access-to-protected-branch (eb53cb9)
  • deprecate in_reply_to parameter for api.github.com and GHE 2.18 and above (4000c6d)

Bug Fixes

  • workarounds: remove pagination parameters for PATCH routes (159cb54)
  • workarounds: remove pagination parameters for POST routes (d548380)
  • "apps" parameter for apps branch protection endpoints (e0fbd54)
  • deprecations: change.before.schema.type -> change.before.type (feb4ac5)
  • deprecations: change.before.schema.type -> change.before.type (dac0fdc)
  • GHE: remove deprecation for pulls/create-comment-reply for GHE 2.15 & 2.16 (30cc9b3)
  • GHE: remove deprecation for pulls/create-comment-reply for GHE 2.17 (b525927)
  • x-changes: prefix {before/after}.operationId with <scope>/ (21fcdf4)
  • normalize x-changes extension` (0291840)