Skip to content

chore(deps): update all devdependencies (major)#13156

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all-dev
Open

chore(deps): update all devdependencies (major)#13156
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all-dev

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 14, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
@actions/github-script devDependencies major v8.0.0v9.0.0 age adoption passing confidence
@graphql-codegen/cli (source) devDependencies major ^5.0.6^7.0.0 age adoption passing confidence
@graphql-codegen/plugin-helpers (source) devDependencies major ^6.0.0^7.0.0 age adoption passing confidence
@graphql-codegen/typescript (source) devDependencies major ^5.0.0^6.0.0 age adoption passing confidence
@graphql-codegen/visitor-plugin-common (source) devDependencies major ^6.0.0^7.0.0 age adoption passing confidence
@size-limit/esbuild-why devDependencies major 11.1.412.1.0 age adoption passing confidence
@size-limit/preset-small-lib devDependencies major 11.1.412.1.0 age adoption passing confidence
@​types/fetch-mock devDependencies major 7.3.89.2.2 age adoption passing confidence
@types/jscodeshift (source) devDependencies major 0.12.017.3.0 age adoption passing confidence
@types/node (source) devDependencies major 20.9.025.9.1 age adoption passing confidence
@types/node (source) devDependencies major ^22.10.7^25.0.0 age adoption passing confidence
@types/relay-runtime (source) devDependencies major 14.1.2420.1.1 age adoption passing confidence
@types/use-sync-external-store (source) devDependencies major 0.0.61.5.0 age adoption passing confidence
diff devDependencies major ^8.0.2^9.0.0 age adoption passing confidence
eslint (source) devDependencies major 9.31.010.4.0 age adoption passing confidence
eslint-import-resolver-typescript devDependencies major 3.7.04.4.4 age adoption passing confidence
expect (source) devDependencies major 29.7.030.4.1 age adoption passing confidence
fetch-mock (source) devDependencies major 9.11.012.6.0 age adoption passing confidence
globals devDependencies major 15.14.017.6.0 age adoption passing confidence
jest-junit devDependencies major 16.0.017.0.0 age adoption passing confidence
jscodeshift devDependencies major 0.16.117.3.0 age adoption passing confidence
jsdom devDependencies major 26.1.029.1.1 age adoption passing confidence
knip (source) devDependencies major ^5.42.2^6.0.0 age adoption passing confidence
react-error-boundary (source) devDependencies major 4.0.136.1.2 age adoption passing confidence
rimraf devDependencies major 5.0.96.1.3 age adoption passing confidence
size-limit devDependencies major 11.1.412.1.0 age adoption passing confidence
typescript (source) devDependencies major ^5.2.2^6.0.0 age adoption passing confidence
typescript (source) devDependencies major 5.7.36.0.3 age adoption passing confidence
typescript (source) devDependencies major ^5.8.3^6.0.0 age adoption passing confidence
vitest (source) devDependencies major ^1.0.1^4.0.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

🔡 If you wish to disable git hash updates, add ":disableDigestUpdates" to the extends array in your config.


Release Notes

actions/github-script (@​actions/github-script)

v9.0.0

Compare Source

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@​actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@​actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@​actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.
What's Changed
New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

v8.0.0

Compare Source

v7.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/github-script@v7...v7.1.0

dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v7.0.0

Compare Source

Major Changes
  • #​10496
    afaace6
    Thanks @​eddeee888! - BREAKING CHANGE: Update deps to latest, some
    only support ESM

    Node 20 support is dropped in this release. Node 22 comes with require() support for ESM, which
    means it's easier to integrate ES modules into applications. Therefore, it is safe to start using
    ESM-only packages.

    If you are a user, please upgrade to Node 22. If you are a lib maintainer and see ESM vs CJS
    issues when running Jest tests, try using Vitest.

  • #​10496
    afaace6
    Thanks @​eddeee888! - BREAKING CHANGE: Drop Node 20 support

  • #​10496
    afaace6
    Thanks @​eddeee888! - BREAKING CHANGE: Set noSilentErrors: true
    by default

    When multiple files match documents pattern, and there are syntax errors in some but not others,
    then the operations with errors are not included in the loaded documents list by default
    (noSilentErrors: false). This is annoying for users as there is no feedback loop during
    development.

    noSilentErrors: true is used as the default for Codegen users to make the feedback loop faster.
    It can still overriden in Codegen Config if desired.

Patch Changes

v6.3.1

Compare Source

Patch Changes
  • #​10737
    be85118
    Thanks @​eddeee888! - Fix issue where same SDL in different
    documents are ignored when handling documents vs externalDocuments

v6.3.0

Compare Source

Minor Changes
  • #​10659
    e65d303
    Thanks @​ikusakov2! - Add support for externalDocuments

    externalDocuments declares GraphQL documents that will be read but will not have type files
    generated for them. These documents are available to plugins for type resolution (e.g. fragment
    types), but no output files will be generated based on them. Accepts the same formats as
    documents.

    This config option is useful for monorepos where each project may want to generate types for its
    own documents, but some may need to read shared fragments from across projects.

Patch Changes

v6.2.1

Compare Source

Patch Changes
  • #​10618 e804925 Thanks @​PalmerTurley34! - Honor per-output preset importExtension and emitLegacyCommonJSImports config instead of always using the root config values.

v6.2.0

Compare Source

Minor Changes
Patch Changes

v6.1.3

Compare Source

Patch Changes

v6.1.2

Compare Source

Patch Changes
  • #​10590 e173e11 Thanks @​ya2s! - Fix GraphQL Config loading to forward nested extensions.codegen.config options
    when loading schemas/documents, matching codegen.ts behavior.

v6.1.1

Compare Source

Patch Changes
  • #​10569 8cb7d43 Thanks @​etr2460! - fix(graphql-codegen-cli): Don't hang when 0 CPUs are found

    Fixes generation when 0 CPUs are returned by os.cpus(), which occurs in sandbox environments.

v6.1.0

Compare Source

Minor Changes
Patch Changes

v6.0.2

Compare Source

Patch Changes

v6.0.1

Compare Source

Patch Changes
  • #​10468 cb1b9d9 Thanks @​eddeee888! - In watch mode, do not write output on failure

    Previously, on partial or full failure, watch mode still write to output. However, since the output'd be an empty array, it will then call removeStaleFiles internally to remove all previously generated files.

    This patch puts a temporary fix to avoid writing output on any failure to fix the described behaviour.

    This also means the config.allowPartialOutputs does not work in watch mode for now.

v6.0.0

Compare Source

Major Changes
Patch Changes

v5.0.7

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/plugin-helpers)

v7.0.1

Compare Source

Patch Changes

v7.0.0

Compare Source

Major Changes
  • #​10496
    afaace6
    Thanks @​eddeee888! - BREAKING CHANGE: Update deps to latest, some
    only support ESM

    Node 20 support is dropped in this release. Node 22 comes with require() support for ESM, which
    means it's easier to integrate ES modules into applications. Therefore, it is safe to start using
    ESM-only packages.

    If you are a user, please upgrade to Node 22. If you are a lib maintainer and see ESM vs CJS
    issues when running Jest tests, try using Vitest.

  • [#​10496](https://redirect.github.com/dotansimha/graphql-code-generator/

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • "every weekend"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Feb 14, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code EOVERRIDE
npm error Override for jsdom@29.1.1 conflicts with direct dependency
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-05-25T06_00_44_593Z-debug-0.log

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Feb 14, 2026

⚠️ No Changeset found

Latest commit: e012859

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate Bot force-pushed the renovate/major-all-dev branch 3 times, most recently from d1861b4 to 63f44aa Compare February 21, 2026 10:02
@apollo-librarian
Copy link
Copy Markdown
Contributor

apollo-librarian Bot commented Feb 21, 2026

✅ AI Style Review — No Changes Detected

No MDX files were changed in this pull request.

Review Log: View detailed log

This review is AI-generated. Please use common sense when accepting these suggestions, as they may not always be accurate or appropriate for your specific context.

@renovate renovate Bot force-pushed the renovate/major-all-dev branch 3 times, most recently from 4b4092a to 4b48d23 Compare March 1, 2026 07:53
@renovate renovate Bot force-pushed the renovate/major-all-dev branch from 4b48d23 to 2ff2c0a Compare March 7, 2026 09:05
@renovate renovate Bot force-pushed the renovate/major-all-dev branch 3 times, most recently from d2be812 to 10cdef7 Compare March 21, 2026 10:07
@renovate renovate Bot force-pushed the renovate/major-all-dev branch from 10cdef7 to 6ae1181 Compare March 28, 2026 09:02
@renovate renovate Bot force-pushed the renovate/major-all-dev branch 2 times, most recently from 4d7b7d8 to 935f906 Compare April 11, 2026 09:16
@renovate renovate Bot force-pushed the renovate/major-all-dev branch 2 times, most recently from 42484f7 to 40b6e27 Compare April 18, 2026 09:41
@renovate renovate Bot force-pushed the renovate/major-all-dev branch 3 times, most recently from ce62221 to acbb549 Compare May 2, 2026 09:41
@renovate renovate Bot force-pushed the renovate/major-all-dev branch 2 times, most recently from 6c26cf9 to 5650243 Compare May 16, 2026 09:05
@renovate renovate Bot force-pushed the renovate/major-all-dev branch 2 times, most recently from 9772575 to abe7433 Compare May 23, 2026 08:47
@renovate renovate Bot force-pushed the renovate/major-all-dev branch from abe7433 to e012859 Compare May 25, 2026 06:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants