Skip to content

chore(deps-dev): bump the graphql-codegen group across 1 directory with 6 updates#183

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/graphql-codegen-58b10d874c
Open

chore(deps-dev): bump the graphql-codegen group across 1 directory with 6 updates#183
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/graphql-codegen-58b10d874c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Bumps the graphql-codegen group with 6 updates in the / directory:

Package From To
@graphql-codegen/cli 6.3.0 7.0.0
@graphql-codegen/near-operation-file-preset 5.0.0 5.2.0
@graphql-codegen/schema-ast 5.0.2 6.0.0
@graphql-codegen/typescript 5.0.10 6.0.0
@graphql-codegen/typescript-graphql-request 7.0.0 7.0.1
@graphql-codegen/typescript-operations 5.1.0 6.0.0

Updates @graphql-codegen/cli from 6.3.0 to 7.0.0

Changelog

Sourced from @​graphql-codegen/cli's changelog.

7.0.0

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

... (truncated)

Commits

Updates @graphql-codegen/near-operation-file-preset from 5.0.0 to 5.2.0

Changelog

Sourced from @​graphql-codegen/near-operation-file-preset's changelog.

5.2.0

Minor Changes

5.1.0

Minor Changes

  • #1399 2b22acb Thanks @​eddeee888! - Add filePerOperation config to generate filename based on named operation or fragment, instead of source filename

5.0.1

Patch Changes

Commits
  • 4155b01 chore(release): update monorepo packages versions (#1457)
  • aaa517a Don't render external documents (#1456)
  • a3b4eef chore(release): update monorepo packages versions (#1449)
  • 2b22acb [near-operation-file-preset] Add presetConfig.filePerOperation to generate...
  • f44770b chore(release): update monorepo packages versions (#1445)
  • 6af41aa Bump codegen packages (#1444)
  • 2dcd842 chore(deps): update dependency @​graphql-codegen/cli to v6.3.1 (#1443)
  • a7f6e20 chore(deps): update graphql-codegen (#1436)
  • 4b60b1b chore(deps): update graphql-codegen (#1405)
  • See full diff in compare view

Updates @graphql-codegen/schema-ast from 5.0.2 to 6.0.0

Changelog

Sourced from @​graphql-codegen/schema-ast's changelog.

6.0.0

Major Changes

Patch Changes

Commits

Updates @graphql-codegen/typescript from 5.0.10 to 6.0.0

Changelog

Sourced from @​graphql-codegen/typescript's changelog.

6.0.0

Major Changes

  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: visitors' config option are moved based on their use case

    • addTypename/skipTypename: is only a types-visitor concern. This is moved to types-visitor from base-visitor
    • nonOptionalTypename: is a documents-visitor and types-visitor concern. Moved from base-visitor there
    • extractAllFieldsToTypes: is a documents-visitor concern. Moved from base-visitor there
    • enumPrefix and enumSuffix: need to be in base-visitor as all 3 types of visitors need this to correctly sync the enum type names. This is moved to base visitor
    • ignoreEnumValuesFromSchema: is a documents-visitor and types-visitor concern. Moved from base-visitor there.
    • globalNamespace: is a documents-visitor concern. Moved from base-visitor there

    Refactors

    • documents-visitor no longer extends types-visitor option types as they have two distinct usages now. The types now extend base-visitor types. This is now consistent with documents-visitor extending base-visitor
    • Classes now handle config parsing and types at the same level e.g. if typescript-operations plugin parses configOne, then the types for configOne must be in that class, rather than in base-documents-visitor

    Note: These visitors are rolled up into one type for simplicity

    • base-visitor: includes base-visitor
    • documents-visitor: includes base-documents-visitor and typescript-operations visitor
    • types-visitor: includes base-types-visitor and typescript visitor
    • resolvers-visitor: includes base-resolvers-visitor and typescript-resolvers visitor
  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: make unknown instead of any the default custom scalar type

  • #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.

... (truncated)

Commits

Updates @graphql-codegen/typescript-graphql-request from 7.0.0 to 7.0.1

Changelog

Sourced from @​graphql-codegen/typescript-graphql-request's changelog.

7.0.1

Patch Changes

Commits

Updates @graphql-codegen/typescript-operations from 5.1.0 to 6.0.0

Changelog

Sourced from @​graphql-codegen/typescript-operations's changelog.

6.0.0

Major Changes

  • #10496 afaace6 Thanks @​eddeee888! - Fix nullable field optionality in operations

    Previously, a nullable Result field is generated as optional (marked by ? TypeScript modifier) by default. This is not correct, because generally at runtime such field can only be null, and not undefined (both missing from the object OR undefined). The only exceptions are when fields are deferred (using @defer directive) or marked as conditional (using @skip or @include).

    Now, a nullable Result field cannot be optional unless the exceptions are met. This also limits avoidOptionals to only target Variables input, since some users may want to force explicit null when providing operation variables.

  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: visitors' config option are moved based on their use case

    • addTypename/skipTypename: is only a types-visitor concern. This is moved to types-visitor from base-visitor
    • nonOptionalTypename: is a documents-visitor and types-visitor concern. Moved from base-visitor there
    • extractAllFieldsToTypes: is a documents-visitor concern. Moved from base-visitor there
    • enumPrefix and enumSuffix: need to be in base-visitor as all 3 types of visitors need this to correctly sync the enum type names. This is moved to base visitor
    • ignoreEnumValuesFromSchema: is a documents-visitor and types-visitor concern. Moved from base-visitor there.
    • globalNamespace: is a documents-visitor concern. Moved from base-visitor there

    Refactors

    • documents-visitor no longer extends types-visitor option types as they have two distinct usages now. The types now extend base-visitor types. This is now consistent with documents-visitor extending base-visitor
    • Classes now handle config parsing and types at the same level e.g. if typescript-operations plugin parses configOne, then the types for configOne must be in that class, rather than in base-documents-visitor

    Note: These visitors are rolled up into one type for simplicity

    • base-visitor: includes base-visitor
    • documents-visitor: includes base-documents-visitor and typescript-operations visitor
    • types-visitor: includes base-types-visitor and typescript visitor
    • resolvers-visitor: includes base-resolvers-visitor and typescript-resolvers visitor
  • #10496 afaace6 Thanks @​eddeee888! - BREAKING CHANGE: typescript-operations plugin now generates enum if it is used in operation.

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…th 6 updates

Bumps the graphql-codegen group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | `6.3.0` | `7.0.0` |
| [@graphql-codegen/near-operation-file-preset](https://github.com/dotansimha/graphql-code-generator-community/tree/HEAD/packages/presets/near-operation-file) | `5.0.0` | `5.2.0` |
| [@graphql-codegen/schema-ast](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/other/schema-ast) | `5.0.2` | `6.0.0` |
| [@graphql-codegen/typescript](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typescript) | `5.0.10` | `6.0.0` |
| [@graphql-codegen/typescript-graphql-request](https://github.com/dotansimha/graphql-code-generator-community/tree/HEAD/packages/plugins/typescript/graphql-request) | `7.0.0` | `7.0.1` |
| [@graphql-codegen/typescript-operations](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/operations) | `5.1.0` | `6.0.0` |



Updates `@graphql-codegen/cli` from 6.3.0 to 7.0.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/cli@7.0.0/packages/graphql-codegen-cli)

Updates `@graphql-codegen/near-operation-file-preset` from 5.0.0 to 5.2.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator-community/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator-community/blob/main/packages/presets/near-operation-file/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator-community/commits/@graphql-codegen/near-operation-file-preset@5.2.0/packages/presets/near-operation-file)

Updates `@graphql-codegen/schema-ast` from 5.0.2 to 6.0.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/other/schema-ast/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/schema-ast@6.0.0/packages/plugins/other/schema-ast)

Updates `@graphql-codegen/typescript` from 5.0.10 to 6.0.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typescript/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typescript@6.0.0/packages/plugins/typescript/typescript)

Updates `@graphql-codegen/typescript-graphql-request` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/dotansimha/graphql-code-generator-community/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator-community/blob/main/packages/plugins/typescript/graphql-request/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator-community/commits/@graphql-codegen/typescript-graphql-request@7.0.1/packages/plugins/typescript/graphql-request)

Updates `@graphql-codegen/typescript-operations` from 5.1.0 to 6.0.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/operations/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typescript-operations@6.0.0/packages/plugins/typescript/operations)

---
updated-dependencies:
- dependency-name: "@graphql-codegen/cli"
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: graphql-codegen
- dependency-name: "@graphql-codegen/near-operation-file-preset"
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: graphql-codegen
- dependency-name: "@graphql-codegen/schema-ast"
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: graphql-codegen
- dependency-name: "@graphql-codegen/typescript"
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: graphql-codegen
- dependency-name: "@graphql-codegen/typescript-graphql-request"
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: graphql-codegen
- dependency-name: "@graphql-codegen/typescript-operations"
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: graphql-codegen
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependency updates javascript Pull requests that update javascript code labels May 4, 2026
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented May 4, 2026

⚠️ No Changeset found

Latest commit: 19cb2e7

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

@codecov
Copy link
Copy Markdown

codecov Bot commented May 4, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ All tests successful. No failed tests found.

📢 Thoughts on this report? Let us know!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants