Unverified Commit 8f58cf74 authored by Robert Knight's avatar Robert Knight Committed by GitHub

Merge pull request #846 from hypothesis/fix-changelog-script

Adapt to change of `getAll` method name
parents 60ab6499 f5dc2ebd
...@@ -50,7 +50,7 @@ async function* itemsInGitHubAPIResponse(octokit, response) { ...@@ -50,7 +50,7 @@ async function* itemsInGitHubAPIResponse(octokit, response) {
async function getPRsMergedSince(octokit, org, repo, tag) { async function getPRsMergedSince(octokit, org, repo, tag) {
const tagDate = getTagDate(tag); const tagDate = getTagDate(tag);
let response = await octokit.pullRequests.getAll({ let response = await octokit.pullRequests.list({
owner: org, owner: org,
repo, repo,
state: 'closed', state: 'closed',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment