Skip to content

Commit

Permalink
feat: v13 (#577)
Browse files Browse the repository at this point in the history
* feat: drop GHES 3.5, add GHES 3.8 & 3.9, endpoint docs update (#575)
* feat: add support for GHES 3.8 and 3.9
* feat: endpoint description updates

BREAKING CHANGE: remove GHES 3.5 support
BREAKING CHANGE: Drop support for NodeJS v14, v16

---------

Co-authored-by: wolfy1339 <4595477+wolfy1339@users.noreply.github.com>
  • Loading branch information
kfcampbell and wolfy1339 committed Jun 12, 2023
1 parent 0374dea commit 5ab8c34
Show file tree
Hide file tree
Showing 19 changed files with 48,788 additions and 24,772 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ jobs:
strategy:
matrix:
node_version:
- 14
- 16
- 18
- 20
steps:
- uses: actions/checkout@v3
- name: Test with Node.js ${{ matrix.node_version }}
Expand Down
4 changes: 2 additions & 2 deletions docs/ghe-36.md
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ octokit.gists.update({gist_id, description, files});
octokit.gists.updateComment({gist_id, comment_id, body});
octokit.git.createBlob({owner, repo, content, encoding});
octokit.git.createCommit({owner, repo, message, tree, parents, author, committer, signature});
octokit.git.createRef({owner, repo, ref, sha, key});
octokit.git.createRef({owner, repo, ref, sha});
octokit.git.createTag({owner, repo, tag, message, object, type, tagger});
octokit.git.createTree({owner, repo, tree, base_tree});
octokit.git.deleteRef({owner, repo, ref});
Expand Down Expand Up @@ -789,7 +789,7 @@ octokit.repos.setTeamAccessRestrictions({owner, repo, branch, teams});
octokit.repos.setUserAccessRestrictions({owner, repo, branch, users});
octokit.repos.testPushWebhook({owner, repo, hook_id});
octokit.repos.transfer({owner, repo, new_owner, team_ids});
octokit.repos.update({owner, repo, name, description, homepage, private, visibility, has_issues, has_projects, has_wiki, is_template, default_branch, allow_squash_merge, allow_merge_commit, allow_rebase_merge, delete_branch_on_merge, allow_update_branch, use_squash_pr_title_as_default, squash_merge_commit_title, squash_merge_commit_message, merge_commit_title, merge_commit_message, archived, allow_forking, web_commit_signoff_required});
octokit.repos.update({owner, repo, name, description, homepage, private, visibility, security_and_analysis, has_issues, has_projects, has_wiki, is_template, default_branch, allow_squash_merge, allow_merge_commit, allow_rebase_merge, delete_branch_on_merge, allow_update_branch, use_squash_pr_title_as_default, squash_merge_commit_title, squash_merge_commit_message, merge_commit_title, merge_commit_message, archived, allow_forking, web_commit_signoff_required});
octokit.repos.updateBranchProtection({owner, repo, branch, required_status_checks, enforce_admins, required_pull_request_reviews, restrictions, required_linear_history, allow_force_pushes, allow_deletions, block_creations, required_conversation_resolution});
octokit.repos.updateCommitComment({owner, repo, comment_id, body});
octokit.repos.updateDeploymentBranchPolicy({owner, repo, environment_name, branch_policy_id, name});
Expand Down
4 changes: 2 additions & 2 deletions docs/ghe-37.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ octokit.gists.update({gist_id, description, files});
octokit.gists.updateComment({gist_id, comment_id, body});
octokit.git.createBlob({owner, repo, content, encoding});
octokit.git.createCommit({owner, repo, message, tree, parents, author, committer, signature});
octokit.git.createRef({owner, repo, ref, sha, key});
octokit.git.createRef({owner, repo, ref, sha});
octokit.git.createTag({owner, repo, tag, message, object, type, tagger});
octokit.git.createTree({owner, repo, tree, base_tree});
octokit.git.deleteRef({owner, repo, ref});
Expand Down Expand Up @@ -798,7 +798,7 @@ octokit.repos.setTeamAccessRestrictions({owner, repo, branch, teams});
octokit.repos.setUserAccessRestrictions({owner, repo, branch, users});
octokit.repos.testPushWebhook({owner, repo, hook_id});
octokit.repos.transfer({owner, repo, new_owner, new_name, team_ids});
octokit.repos.update({owner, repo, name, description, homepage, private, visibility, has_issues, has_projects, has_wiki, is_template, default_branch, allow_squash_merge, allow_merge_commit, allow_rebase_merge, delete_branch_on_merge, allow_update_branch, use_squash_pr_title_as_default, squash_merge_commit_title, squash_merge_commit_message, merge_commit_title, merge_commit_message, archived, allow_forking, web_commit_signoff_required});
octokit.repos.update({owner, repo, name, description, homepage, private, visibility, security_and_analysis, has_issues, has_projects, has_wiki, is_template, default_branch, allow_squash_merge, allow_merge_commit, allow_rebase_merge, delete_branch_on_merge, allow_update_branch, use_squash_pr_title_as_default, squash_merge_commit_title, squash_merge_commit_message, merge_commit_title, merge_commit_message, archived, allow_forking, web_commit_signoff_required});
octokit.repos.updateBranchProtection({owner, repo, branch, required_status_checks, enforce_admins, required_pull_request_reviews, restrictions, required_linear_history, allow_force_pushes, allow_deletions, block_creations, required_conversation_resolution});
octokit.repos.updateCommitComment({owner, repo, comment_id, body});
octokit.repos.updateDeploymentBranchPolicy({owner, repo, environment_name, branch_policy_id, name});
Expand Down
Loading

0 comments on commit 5ab8c34

Please sign in to comment.