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: v4.2.1
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: v4.2.2
Choose a head ref
  • 6 commits
  • 6 files changed
  • 3 contributors

Commits on May 25, 2023

  1. chore(deps): update dependency http-proxy-agent to v7 (#564)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored May 25, 2023

    Verified

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

Commits on Jun 7, 2023

  1. chore(deps): update dependency @octokit/tsconfig to v2 (#568)

    Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
    Co-authored-by: wolfy1339 <4595477+wolfy1339@users.noreply.github.com>
    3 people authored Jun 7, 2023

    Partially verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    b4b25f6 View commit details
  2. chore(deps): update dependency proxy to v2.1.1 [security] (#567)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 7, 2023

    Verified

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

Commits on Jun 9, 2023

  1. chore(deps): update dependency esbuild to ^0.18.0 (#569)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 9, 2023

    Verified

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

Commits on Jun 14, 2023

  1. Verified

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

Commits on Jun 16, 2023

  1. fix(deps): update dependency @octokit/request-error to v4 (#572)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 16, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ca248c5 View commit details
Showing with 264 additions and 265 deletions.
  1. +2 −2 README.md
  2. +235 −255 package-lock.json
  3. +12 −5 package.json
  4. +3 −2 src/index.ts
  5. +1 −1 test/auth.test.ts
  6. +11 −0 test/tsconfig.test.json
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -32,11 +32,11 @@ If you don't need the Plugin API then using [`@octokit/request`](https://github.
<tr><th>
Browsers
</th><td width=100%>
Load <code>@octokit/core</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>
Load <code>@octokit/core</code> directly from <a href="https://esm.sh">esm.sh</a>

```html
<script type="module">
import { Octokit } from "https://cdn.skypack.dev/@octokit/core";
import { Octokit } from "https://esm.sh/@octokit/core";
</script>
```

Loading