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/core.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.1.4
Choose a base ref
...
head repository: octokit/core.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.1.5
Choose a head ref
  • 7 commits
  • 6 files changed
  • 4 contributors

Commits on Feb 13, 2025

  1. chore(deps): update dependency prettier to v3.5.1 (#722)

    renovate[bot] authored Feb 13, 2025
    Copy the full SHA
    2ddb327 View commit details

Commits on Feb 24, 2025

  1. chore(deps): update dependency semantic-release-plugin-update-version…

    …-in-files to v2 (#724)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Feb 24, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3105ee1 View commit details
  2. chore(deps): update dependency prettier to v3.5.2 (#725)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Feb 24, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    768204c View commit details

Commits on Mar 18, 2025

  1. chore(deps): update dependency prettier to v3.5.3 (#726)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 18, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7304860 View commit details

Commits on Mar 21, 2025

  1. ci(prettier): use Node LTS instead of Node v16 (#727)

    wolfy1339 authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    59c0138 View commit details

Commits on Apr 8, 2025

  1. chore(deps): bump vite from 6.1.0 to 6.2.5 (#729)

    Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.1.0 to 6.2.5.
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/v6.2.5/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v6.2.5/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: vite
      dependency-version: 6.2.5
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 8, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fcfe306 View commit details

Commits on Apr 10, 2025

  1. fix(deps): update dependency @octokit/types to v14 (#731)

    * fix(deps): update dependency @octokit/types to v14
    
    * fix(types): add missing properties
    
    * fix(types): add a strict omit type
    
    * update packages
    
    * update packages
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: wolfy1339 <webmaster@wolfy1339.com>
    renovate[bot] and wolfy1339 authored Apr 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3700c41 View commit details
Showing with 225 additions and 614 deletions.
  1. +1 −2 .github/workflows/update-prettier.yml
  2. +208 −604 package-lock.json
  3. +6 −6 package.json
  4. +5 −1 src/index.ts
  5. +5 −0 src/types.ts
  6. +0 −1 test/request.test.ts
3 changes: 1 addition & 2 deletions .github/workflows/update-prettier.yml
Original file line number Diff line number Diff line change
@@ -10,9 +10,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
version: 12
cache: npm
node-version: 16
node-version: lts/*
- run: npm ci
- run: npm run lint:fix
- uses: gr2m/create-or-update-pull-request-action@v1.x
Loading