Skip to content

chore: update graphqlcodegenerator monorepo (main-private)#501

Open
renovate[bot] wants to merge 1 commit intomain-privatefrom
renovate/main-private-graphqlcodegenerator-monorepo
Open

chore: update graphqlcodegenerator monorepo (main-private)#501
renovate[bot] wants to merge 1 commit intomain-privatefrom
renovate/main-private-graphqlcodegenerator-monorepo

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.122.16.5 age confidence
@graphql-codegen/client-preset (source) 1.1.41.3.0 age confidence
@graphql-codegen/introspection (source) 2.2.12.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 Actions Updated (UTC)
template-blog-webapp-nextjs Error Error Mar 19, 2026 10:47pm

Request Review

@wiz-inc-38d59fb8d7
Copy link

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

Wiz Scan Summary

Scanner Findings
Vulnerability Finding Vulnerabilities 6 High 4 Medium 1 Low
Data Finding Sensitive Data -
Secret Finding Secrets -
IaC Misconfiguration IaC Misconfigurations -
SAST Finding SAST Findings -
Software Management Finding Software Management Findings -
Total 6 High 4 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
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 9e77574 to bc7cba2 Compare December 12, 2025 09:19
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from bc7cba2 to e3369a4 Compare December 12, 2025 15:44
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from e3369a4 to 2ec3344 Compare December 12, 2025 18:55
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 2ec3344 to 5c080bc Compare December 12, 2025 23:26
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 5c080bc to 22ef34e Compare December 20, 2025 06:57
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 22ef34e to 88c3a5d Compare December 20, 2025 10:51
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 88c3a5d to 16bd950 Compare December 20, 2025 14:48
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 16bd950 to 57f7c05 Compare December 20, 2025 19:38
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 0df7db0 to fc9de08 Compare December 21, 2025 06:48
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from fc9de08 to 8bcdcd8 Compare December 23, 2025 11:07
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 8bcdcd8 to 4cb674a Compare December 24, 2025 02:48
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 4cb674a to a2c3914 Compare January 8, 2026 21:28
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from a2c3914 to ae5f474 Compare January 19, 2026 17:00
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from ae5f474 to fb0e98d Compare February 6, 2026 14:48
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from fb0e98d to 3345816 Compare February 17, 2026 08:53
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 3345816 to 31b9b3f Compare March 3, 2026 09:44
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 31b9b3f to 8151bdd Compare March 8, 2026 07:39
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 8151bdd to c0bc479 Compare March 8, 2026 14:43
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from c0bc479 to e79c411 Compare March 8, 2026 18:11
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from e79c411 to ee57fa1 Compare March 8, 2026 18:19
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from ee57fa1 to 94c851a Compare March 14, 2026 13:12
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 94c851a to 8244199 Compare March 19, 2026 22:45
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.

0 participants