Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: octokit/plugin-paginate-rest.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1.0
Choose a base ref
...
head repository: octokit/plugin-paginate-rest.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c9553982b5b89de993b8379180280385b576eb58
Choose a head ref
  • 11 commits
  • 5 files changed
  • 2 contributors

Commits on Jul 29, 2022

  1. ci(action): update github/codeql-action digest to 0c670bb

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 29, 2022

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    7c176a0 View commit details

Commits on Aug 1, 2022

  1. build(deps): lock file maintenance (#424)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 1, 2022

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    cc40b59 View commit details

Commits on Aug 3, 2022

  1. ci(action): update github/codeql-action digest to 2ca79b6

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 3, 2022
    Copy the full SHA
    4252f5a View commit details

Commits on Aug 8, 2022

  1. build(deps): lock file maintenance (#426)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 8, 2022
    Copy the full SHA
    2cae044 View commit details

Commits on Aug 15, 2022

  1. build(deps): lock file maintenance (#427)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 15, 2022
    Copy the full SHA
    6351c2a View commit details
  2. Copy the full SHA
    f9ae163 View commit details
  3. Copy the full SHA
    85ed85f View commit details
  4. fix: remove now-defunkt OAuth Authorizations APIs

    BREAKING CHANGE: This removes the now-defunkt OAuth Authorizations
    APIs from the OpenAPI specifications. These were disabled and cut
    off on GitHub.com at the end of 2020, but the docs were not
    updated.
    timrogers committed Aug 15, 2022
    Copy the full SHA
    79d6ba1 View commit details
  5. Copy the full SHA
    a222d06 View commit details
  6. feat: add pagination support for new `GET /repos/{owner}/{repo}/envir…

    …onments/{environment_name}/deployment-branch-policies` API
    timrogers committed Aug 15, 2022
    Copy the full SHA
    f429efb View commit details
  7. fix: drop pagination support for `GET /repos/{owner}/{repo}/git/match…

    …ing-refs/{ref}` and `GET
    
    /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers` APIs which were never actually paginated
    timrogers committed Aug 15, 2022
    Copy the full SHA
    c955398 View commit details
Showing with 801 additions and 706 deletions.
  1. +3 −3 .github/workflows/codeql.yml
  2. +514 −273 package-lock.json
  3. +1 −1 package.json
  4. +259 −378 scripts/update-endpoints/generated/endpoints.json
  5. +24 −51 src/generated/paginating-endpoints.ts
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -24,15 +24,15 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2
uses: github/codeql-action/init@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 # tag=v2
# Override language selection by uncommenting this and choosing your languages
# with:
# languages: go, javascript, csharp, python, cpp, java

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2
uses: github/codeql-action/autobuild@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 # tag=v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
@@ -46,4 +46,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2
uses: github/codeql-action/analyze@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 # tag=v2
Loading