Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 26, 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

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) July 26, 2025 23:52
renovate-approve[bot]
renovate-approve bot previously approved these changes Jul 26, 2025
@vercel
Copy link

vercel bot commented Jul 26, 2025

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

Project Deployment Preview Updated (UTC)
template-ecommerce-webapp-nextjs Error Error Nov 15, 2025 1:02pm

@wiz-inc-38d59fb8d7
Copy link

wiz-inc-38d59fb8d7 bot commented Jul 26, 2025

Wiz Scan Summary

Scanner Findings
Vulnerability Finding Vulnerabilities 1 High
Data Finding Sensitive Data -
Total 1 High

View scan details in Wiz

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

renovate-approve[bot]
renovate-approve bot previously approved these changes Jul 27, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Jul 27, 2025
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 751543b to 45729bf Compare July 27, 2025 11:26
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 45729bf to b2caa47 Compare July 27, 2025 15:42
renovate-approve[bot]
renovate-approve bot previously approved these changes Jul 27, 2025
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from b2caa47 to 6e55138 Compare July 27, 2025 19:01
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 6e55138 to 9dc3ca1 Compare July 27, 2025 23:40
renovate-approve[bot]
renovate-approve bot previously approved these changes Jul 27, 2025
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 9dc3ca1 to 8ec31a2 Compare July 28, 2025 04:13
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 8ec31a2 to 28793cb Compare July 28, 2025 09:59
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 28793cb to c2265cc Compare July 28, 2025 14:34
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 413dc2f to 1f66504 Compare October 7, 2025 03:00
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 1f66504 to cb2d77e Compare October 7, 2025 07:38
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 7, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 15, 2025
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 0603a99 to bd542b5 Compare October 16, 2025 02:45
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from bd542b5 to 53b5bbf Compare October 16, 2025 06:37
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 53b5bbf to 747676a Compare October 17, 2025 03:37
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 747676a to c81046e Compare October 17, 2025 03:44
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 1251087 to 3ad1508 Compare November 15, 2025 13:00
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