Skip to content

chore(deps): bump @octokit/core from 6.1.6 to 7.0.6#10

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/octokit/core-7.0.6
Open

chore(deps): bump @octokit/core from 6.1.6 to 7.0.6#10
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/octokit/core-7.0.6

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Dec 11, 2025

Bumps @octokit/core from 6.1.6 to 7.0.6.

Release notes

Sourced from @​octokit/core's releases.

v7.0.6

7.0.6 (2025-10-31)

Bug Fixes

  • deps: update dependency @​octokit/types to v16 (#759) (951bd35)

v7.0.5

7.0.5 (2025-09-29)

Bug Fixes

  • deps: update octokit dependencies, and @​sinonjs/fake-timers (#749) (14d23a1)

v7.0.4

7.0.4 (2025-09-16)

Bug Fixes

  • deps: update dependency @​octokit/types to v15 (#748) (03b6c28)

v7.0.3

7.0.3 (2025-07-10)

Bug Fixes

  • add createLogger to ensure that pino does not break (#744) (0896c50)

v7.0.2

7.0.2 (2025-05-20)

Bug Fixes

  • deps: update octokit monorepo (major) (#742) (629fa4e)

v7.0.1

7.0.1 (2025-05-20)

Bug Fixes

  • deps: update dependency before-after-hook to v4 (#739) (2abf89e)

v7.0.0

7.0.0 (2025-05-20)

... (truncated)

Commits
  • 951bd35 fix(deps): update dependency @​octokit/types to v16 (#759)
  • 48961f8 ci(action): update peter-evans/create-or-update-comment action to v5 (#751)
  • f65e546 ci(action): update github/codeql-action action to v4 (#753)
  • c95a0d6 chore(deps): update dependency @​types/sinonjs__fake-timers to v15 (#756)
  • e0fcb16 ci(action): update actions/setup-node action to v6 (#754)
  • 14d23a1 fix(deps): update octokit dependencies, and @​sinonjs/fake-timers (#749)
  • e4d0776 ci(action): update actions/setup-node action to v5 (#746)
  • 03b6c28 fix(deps): update dependency @​octokit/types to v15 (#748)
  • 4951837 ci(action): update actions/checkout action to v5 (#745)
  • f576bc8 chore(deps): bump vite from 6.3.5 to 6.3.6 (#747)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 11, 2025
@esmcelroy esmcelroy requested a review from Copilot December 11, 2025 18:21
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR attempts to bump @octokit/core from version 6.1.6 to 7.0.6 (a major version upgrade). However, this creates a critical dependency conflict with the octokit package, which requires @octokit/core ^6.1.5. As a result, npm marks version 7.0.6 as a peer dependency that is not actually installed, while the application continues to use version 6.1.6 through the octokit package.

Key changes:

  • Updates @octokit/core dependency version to ^7.0.6 in package.json
  • Package-lock.json shows version 7.0.6 marked as "peer": true (not actually installed)
  • Multiple nested dependency versions remain at 6.x to satisfy octokit package requirements

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.

File Description
package.json Updates @octokit/core version specification to ^7.0.6, but creates conflict with octokit package requirements
package-lock.json Shows complex dependency resolution where v7.0.6 is marked as peer-only, with v6.1.6 still used by octokit and its dependents

Comment thread package.json
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^4.1.3",
"@octokit/core": "^6.1.4",
"@octokit/core": "^7.0.6",
Copy link

Copilot AI Dec 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The upgrade to @octokit/core version 7.0.6 creates a version conflict with the octokit package dependency. The octokit package (line 66) requires @octokit/core ^6.1.5, but this change attempts to install version 7.0.6. As a result, npm marks @octokit/core 7.0.6 as a peer dependency (not actually installed), while octokit continues to use version 6.1.6. This means the specified version 7.0.6 is not actually being used in the application. Either remove this direct dependency on @octokit/core (since octokit already provides it), or wait for the octokit package to be updated to support @octokit/core version 7.

Suggested change
"@octokit/core": "^7.0.6",

Copilot uses AI. Check for mistakes.
Bumps [@octokit/core](https://github.com/octokit/core.js) from 6.1.6 to 7.0.6.
- [Release notes](https://github.com/octokit/core.js/releases)
- [Commits](octokit/core.js@v6.1.6...v7.0.6)

---
updated-dependencies:
- dependency-name: "@octokit/core"
  dependency-version: 7.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/octokit/core-7.0.6 branch from ff444b7 to 3d521b0 Compare December 17, 2025 20:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant