This repository was archived by the owner on Jul 27, 2020. It is now read-only.
v24.0.0
·
427 commits
to master
since this release
BREAKING CHANGES
- The format of the
x-changesextension 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_toparameter for api.github.com and GHE 2.18 and above (4000c6d)
Bug Fixes
- workarounds: remove pagination parameters for
PATCHroutes (159cb54) - workarounds: remove pagination parameters for
POSTroutes (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-replyfor GHE 2.15 & 2.16 (30cc9b3) - GHE: remove deprecation for
pulls/create-comment-replyfor GHE 2.17 (b525927) - x-changes: prefix
{before/after}.operationIdwith<scope>/(21fcdf4) - normalize
x-changesextension` (0291840)