Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2025

This PR contains the following updates:

Package Change Age Confidence
@graphql-codegen/cli (source) 2.13.12 -> 2.16.5 age confidence
@graphql-codegen/client-preset (source) 1.1.4 -> 1.3.0 age confidence
@graphql-codegen/introspection (source) 2.2.1 -> 2.2.3 age confidence

Warning

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


Release Notes

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

v2.16.5

Compare Source

Patch Changes

v2.16.4

Compare Source

Patch Changes

v2.16.3

Compare Source

Patch Changes

v2.16.2

Compare Source

Patch Changes

v2.16.1

Compare Source

Patch Changes

v2.16.0

Compare Source

Minor Changes
Patch Changes

v2.15.0

Compare Source

Minor Changes

v2.14.1

Compare Source

Patch Changes

v2.14.0

Compare Source

Minor Changes
Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/client-preset)

v1.3.0

Compare Source

Minor Changes
  • #​8757 4f290aa72 Thanks @​n1ru4l! - Add support for persisted documents.

    You can now generate and embed a persisted documents hash for the executable documents.

    /** codegen.ts */
    import { CodegenConfig } from '@​graphql-codegen/cli'
    
    const config: CodegenConfig = {
      schema: 'https://graphql.org/graphql/',
      documents: ['src/**/*.tsx'],
      ignoreNoDocuments: true, // for better experience with the watcher
      generates: {
        './src/gql/': {
          preset: 'client',
          plugins: [],
          presetConfig: {
            persistedDocuments: true
          }
        }
      }
    }
    
    export default config

    This will generate ./src/gql/persisted-documents.json (dictionary of hashes with their operation string).

    In addition to that each generated document node will have a __meta__.hash property.

    import { gql } from './gql.js'
    
    const allFilmsWithVariablesQueryDocument = graphql(/* GraphQL */ `
      query allFilmsWithVariablesQuery($first: Int!) {
        allFilms(first: $first) {
          edges {
            node {
              ...FilmItem
            }
          }
        }
      }
    `)
    
    console.log((allFilmsWithVariablesQueryDocument as any)['__meta__']['hash'])
  • #​8757 4f290aa72 Thanks @​n1ru4l! - Add support for embedding metadata in the document AST.

    It is now possible to embed metadata (e.g. for your GraphQL client within the emitted code).

    /** codegen.ts */
    import { CodegenConfig } from '@​graphql-codegen/cli'
    
    const config: CodegenConfig = {
      schema: 'https://graphql.org/graphql/',
      documents: ['src/**/*.tsx'],
      ignoreNoDocuments: true, // for better experience with the watcher
      generates: {
        './src/gql/': {
          preset: 'client',
          plugins: [],
          presetConfig: {
            onExecutableDocumentNode(documentNode) {
              return {
                operation: documentNode.definitions[0].operation,
                name: documentNode.definitions[0].name.value
              }
            }
          }
        }
      }
    }
    
    export default config

    You can then access the metadata via the __meta__ property on the document node.

    import { gql } from './gql.js'
    
    const allFilmsWithVariablesQueryDocument = graphql(/* GraphQL */ `
      query allFilmsWithVariablesQuery($first: Int!) {
        allFilms(first: $first) {
          edges {
            node {
              ...FilmItem
            }
          }
        }
      }
    `)
    
    console.log((allFilmsWithVariablesQueryDocument as any)['__meta__'])
Patch Changes

v1.2.6

Compare Source

Patch Changes

v1.2.5

Compare Source

Patch Changes

v1.2.4

Compare Source

Patch Changes

v1.2.3

Compare Source

Patch Changes

v1.2.2

Compare Source

Patch Changes

v1.2.1

Compare Source

Patch Changes

v1.2.0

Compare Source

Minor Changes

v1.1.5

Compare Source

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

v2.2.3

Compare Source

Patch Changes

v2.2.2

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) in timezone UTC, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 renovate bot enabled auto-merge (squash) November 29, 2025 14:54
@vercel
Copy link

vercel bot commented Nov 29, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Updated (UTC)
template-blog-webapp-nextjs Error Error Nov 30, 2025 2:51pm

@wiz-inc-38d59fb8d7
Copy link

wiz-inc-38d59fb8d7 bot commented Nov 29, 2025

Wiz Scan Summary

Scanner Findings
Vulnerability Finding Vulnerabilities 1 High 1 Medium 1 Low
Data Finding Sensitive Data -
Secret Finding Secrets -
IaC Misconfiguration IaC Misconfigurations -
SAST Finding SAST Findings -
Total 1 High 1 Medium 1 Low

View scan details in Wiz

To detect these findings earlier in the dev lifecycle, try using Wiz Code VS Code Extension.

@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 2ad735a to 9a10382 Compare November 29, 2025 20:52
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 9a10382 to b76864a Compare November 30, 2025 03:13
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from b76864a to 25a113e Compare November 30, 2025 06:09
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 25a113e to 2be658a Compare November 30, 2025 10:52
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 2be658a to 9e77574 Compare November 30, 2025 14:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant