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/request.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9820bbe
Choose a base ref
...
head repository: octokit/request.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 356411e
Choose a head ref
  • 5 commits
  • 5 files changed
  • 4 contributors

Commits on Apr 5, 2024

  1. Copy the full SHA
    6822e8b View commit details
  2. feat(security): Add provenance (#685)

    * Enable provenance in package.json
    
    * Add necessary permissions to the release workflow
    AaronDewes authored and wolfy1339 committed Apr 5, 2024
    Copy the full SHA
    2e67925 View commit details
  3. Copy the full SHA
    4e7127c View commit details

Commits on Apr 9, 2024

  1. feat: re-add redirect request option (#636)

    * Fixed regression of redirect option being passed through to fetch introduced in #599, and moves it instead to the `requestOption.request` object
    
    * build: upgrade jest to fix test regression with `globalThis` being read-only
    mitchcapper authored and wolfy1339 committed Apr 9, 2024
    Copy the full SHA
    abc4955 View commit details

Commits on Feb 15, 2025

  1. Copy the full SHA
    356411e View commit details
Showing with 1,044 additions and 1,620 deletions.
  1. +8 −0 .github/workflows/release.yml
  2. +988 −1,615 package-lock.json
  3. +5 −4 package.json
  4. +2 −1 src/fetch-wrapper.ts
  5. +41 −0 test/request.test.ts
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -6,6 +6,14 @@ name: Release
- next
- beta
- "*.x"

# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance

jobs:
release:
name: release
Loading