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/rest.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v19.0.3
Choose a base ref
...
head repository: octokit/rest.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v19.0.4
Choose a head ref
  • 14 commits
  • 10 files changed
  • 5 contributors

Commits on Jul 11, 2022

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

    * build(deps): lock file maintenance
    
    * Upgrade lockfile to v2
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: wolfy1339 <webmaster@wolfy1339.com>
    renovate[bot] and wolfy1339 authored Jul 11, 2022
    Copy the full SHA
    bd8489b View commit details
  2. ci(codeql): remove git checkout HEAD^2 (#165)

    The workflow gives out a warning that it isn't necessary anymore
    wolfy1339 authored Jul 11, 2022
    Copy the full SHA
    4d234aa View commit details
  3. Copy the full SHA
    069da4c View commit details
  4. ci(action): update actions/setup-node digest to 5b949b5 (#169)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 11, 2022
    Copy the full SHA
    70b22a6 View commit details
  5. Copy the full SHA
    3321100 View commit details
  6. chore(deps): update dependency html-react-parser to v3

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

Commits on Jul 12, 2022

  1. Copy the full SHA
    61d6a8f View commit details

Commits on Jul 13, 2022

  1. ci(action): update github/codeql-action digest to 3e7e3b3 (#177)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 13, 2022
    Copy the full SHA
    1a0423c View commit details

Commits on Jul 14, 2022

  1. ci(action): update actions/setup-node digest to 2fddd88 (#178)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 14, 2022
    Copy the full SHA
    51a0a1d View commit details

Commits on Jul 18, 2022

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

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 18, 2022
    Copy the full SHA
    9a81b43 View commit details

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
    Copy the full SHA
    50b0a03 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
    22f0e77 View commit details

Commits on Aug 13, 2022

  1. Copy the full SHA
    26a6b5b View commit details

Commits on Aug 15, 2022

  1. fix(deps): update dependency @octokit/plugin-paginate-rest to v4 (#187)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 15, 2022
    Copy the full SHA
    4e18c8d View commit details
Showing with 39,362 additions and 12,652 deletions.
  1. +4 −9 .github/workflows/codeql.yml
  2. +1 −1 .github/workflows/release.yml
  3. +10 −3 .github/workflows/test.yml
  4. +1 −1 .github/workflows/update-docs.yml
  5. +1 −1 .github/workflows/update-prettier.yml
  6. +29,969 −2,471 docs/package-lock.json
  7. +1 −1 docs/package.json
  8. +9 −5 docs/src/pages/api/05_pagination.md
  9. +9,364 −10,158 package-lock.json
  10. +2 −2 package.json
13 changes: 4 additions & 9 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -23,23 +23,18 @@ jobs:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}


# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@3f62b754e23e0dd60f91b744033e1dc1654c0ec6 # 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@3f62b754e23e0dd60f91b744033e1dc1654c0ec6 # tag=v2
uses: github/codeql-action/autobuild@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 # tag=v2

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

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@3f62b754e23e0dd60f91b744033e1dc1654c0ec6 # tag=v2
uses: github/codeql-action/analyze@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 # tag=v2
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # tag=v3
- uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
with:
node-version: 16
cache: npm
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ name: Test
- opened
- synchronize
jobs:
test:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
@@ -24,12 +24,19 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Test with Node.js ${{ matrix.node_version }}
uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # tag=v3
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
with:
cache: npm
node-version: 16
- run: npm ci
- run: npm run start-fixtures-server &
- run: sleep 3
- run: npm run test
- run: npm run test --ignore-scripts # run lint only once
- run: npm run test:typescript
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
- run: npm ci
- run: npm run lint
2 changes: 1 addition & 1 deletion .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # tag=v3
- uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
with:
node-version: 16
cache: npm
2 changes: 1 addition & 1 deletion .github/workflows/update-prettier.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # tag=v3
- uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
with:
cache: npm
node-version: 16
Loading