Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 7, 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 requested a review from a team as a code owner June 7, 2025 23:44
@renovate renovate bot requested review from denkristoffer and loweisz June 7, 2025 23:44
@vercel
Copy link

vercel bot commented Jun 7, 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 19, 2025 6:41am

@wiz-inc-38d59fb8d7
Copy link

wiz-inc-38d59fb8d7 bot commented Jun 7, 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 renovate bot enabled auto-merge (squash) July 23, 2025 18:48
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from d3fa385 to c0cd53d Compare July 23, 2025 18:48
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from c0cd53d to 603004a Compare July 24, 2025 08:56
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 603004a to ea19b41 Compare July 24, 2025 09:42
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from ea19b41 to 4ea90ca Compare July 24, 2025 18:32
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 4ea90ca to ad2f269 Compare July 25, 2025 01:58
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from ad2f269 to 402cc11 Compare July 25, 2025 09:07
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 402cc11 to 23462d4 Compare July 25, 2025 12:46
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 23462d4 to 2f66b13 Compare July 25, 2025 20:58
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 2f66b13 to 4ac97c6 Compare July 26, 2025 03:39
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 4ac97c6 to 16747e2 Compare July 26, 2025 07:33
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 16747e2 to 38f184a Compare July 26, 2025 11:26
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 01b1d47 to 7dcca02 Compare August 6, 2025 10:03
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 7dcca02 to 8b229e7 Compare August 6, 2025 13:59
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 8b229e7 to 42dad71 Compare August 8, 2025 05:57
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 42dad71 to 5b751ec Compare September 10, 2025 15:02
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 5b751ec to e78ba60 Compare September 11, 2025 10:55
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from e78ba60 to 8988cd9 Compare September 11, 2025 15:35
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 8988cd9 to 335c10b Compare September 26, 2025 08:06
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 335c10b to 1a97d23 Compare November 15, 2025 15:02
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 1a97d23 to aa1cc26 Compare November 15, 2025 23:16
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from aa1cc26 to 7429cbc Compare November 16, 2025 02:59
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 7429cbc to f467f82 Compare November 16, 2025 07:15
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from f467f82 to 7e03451 Compare November 19, 2025 03:00
@renovate renovate bot force-pushed the renovate/main-private-graphqlcodegenerator-monorepo branch from 7e03451 to e94ff1c Compare November 19, 2025 06:39
auto-merge was automatically disabled November 26, 2025 14:19

Pull request was closed

@ContentfulCormac ContentfulCormac deleted the renovate/main-private-graphqlcodegenerator-monorepo branch November 26, 2025 14:19
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.

2 participants