Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 26, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


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
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 Oct 3, 2025 6:28am

@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 a385d22 to 6a4f08a Compare September 19, 2025 03:03
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 6a4f08a to 3363ebb Compare September 19, 2025 05:58
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 3363ebb to e51f457 Compare September 20, 2025 02:14
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from e51f457 to e91690f Compare September 20, 2025 06:08
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from e91690f to 3bed54a Compare September 29, 2025 15:28
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 3bed54a to 3b61caa Compare September 30, 2025 03:25
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 30, 2025
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 8b4dbab to e5c4bbc Compare October 2, 2025 02:33
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from e5c4bbc to 5dbc4d8 Compare October 2, 2025 06:29
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from 5dbc4d8 to c3fe0e6 Compare October 3, 2025 02:45
@renovate renovate bot force-pushed the renovate/main-graphqlcodegenerator-monorepo branch from c3fe0e6 to 62025cd Compare October 3, 2025 06:26
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