Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update graphqlcodegenerator monorepo (major) #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 20, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-codegen/cli (source) 1.17.8 -> 5.0.5 age adoption passing confidence
@graphql-codegen/typescript (source) 1.17.9 -> 4.1.4 age adoption passing confidence
@graphql-codegen/typescript-resolvers (source) 1.17.9 -> 4.4.3 age adoption passing confidence

Release Notes

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

v5.0.5

Compare Source

Patch Changes

v5.0.4

Compare Source

Patch Changes

v5.0.3

Compare Source

Patch Changes

v5.0.2

Compare Source

Patch Changes

v5.0.1

Compare Source

Patch Changes

v5.0.0

Compare Source

Major Changes
Patch Changes

v4.0.1

Compare Source

Patch Changes

v4.0.0

Compare Source

Major Changes
Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Minor Changes
  • #​9151 b7dacb21f Thanks @​'./user/schema.mappers#UserMapper',! - Add watchPattern config option for generates sections.

    By default, watch mode automatically watches all GraphQL schema and document files. This means when a change is detected, Codegen CLI is run.

    A user may want to run Codegen CLI when non-schema and non-document files are changed. Each generates section now has a watchPattern option to allow more file patterns to be added to the list of patterns to watch.

    In the example below, mappers are exported from schema.mappers.ts files. We want to re-run Codegen if the content of *.mappers.ts files change because they change the generated types file. To solve this, we can add mapper file patterns to watch using the glob pattern used for schema and document files.

    // codegen.ts
    const config: CodegenConfig = {
      schema: 'src/schema/**/*.graphql',
      generates: {
        'src/schema/types.ts': {
          plugins: ['typescript', 'typescript-resolvers'],
          config: {
            mappers: {
    
              Book: './book/schema.mappers#BookMapper',
            },
          }
          watchPattern: 'src/schema/**/*.mappers.ts', // Watches mapper files in `watch` mode. Use an array for multiple patterns e.g. `['src/*.pattern1.ts','src/*.pattern2.ts']`
        },
      },
    };

    Then, run Codegen CLI in watch mode:

    yarn graphql-codegen --watch

    Now, updating *.mappers.ts files re-runs Codegen! 🎉

    Note: watchPattern is only used in watch mode i.e. running CLI with --watch flag.

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes
Patch Changes

v3.1.0

Compare Source

Minor Changes
  • #​8893 a118c307a Thanks @​n1ru4l! - It is no longer mandatory to declare an empty plugins array when using a preset

  • #​8723 a3309e63e Thanks @​kazekyo! - Introduce a new feature called DocumentTransform.

    DocumentTransform is a functionality that allows you to modify documents before they are processed by plugins. You can use functions passed to the documentTransforms option to make changes to GraphQL documents.

    To use this feature, you can write documentTransforms as follows:

    import type { CodegenConfig } from '@​graphql-codegen/cli';
    
    const config: CodegenConfig = {
      schema: 'https://localhost:4000/graphql',
      documents: ['src/**/*.tsx'],
      generates: {
        './src/gql/': {
          preset: 'client',
          documentTransforms: [
            {
              transform: ({ documents }) => {
                // Make some changes to the documents
                return documents;
              },
            },
          ],
        },
      },
    };
    export default config;

    For instance, to remove a @localOnlyDirective directive from documents, you can write the following code:

    import type { CodegenConfig } from '@​graphql-codegen/cli';
    import { visit } from 'graphql';
    
    const config: CodegenConfig = {
      schema: 'https://localhost:4000/graphql',
      documents: ['src/**/*.tsx'],
      generates: {
        './src/gql/': {
          preset: 'client',
          documentTransforms: [
            {
              transform: ({ documents }) => {
                return documents.map(documentFile => {
                  documentFile.document = visit(documentFile.document, {
                    Directive: {
                      leave(node) {
                        if (node.name.value === 'localOnlyDirective') return null;
                      },
                    },
                  });
                  return documentFile;
                });
              },
            },
          ],
        },
      },
    };
    export default config;

    DocumentTransform can also be specified by file name. You can create a custom file for a specific transformation and pass it to documentTransforms.

    Let's create the document transform as a file:

    module.exports = {
      transform: ({ documents }) => {
        // Make some changes to the documents
        return documents;
      },
    };

    Then, you can specify the file name as follows:

    import type { CodegenConfig } from '@​graphql-codegen/cli';
    
    const config: CodegenConfig = {
      schema: 'https://localhost:4000/graphql',
      documents: ['src/**/*.tsx'],
      generates: {
        './src/gql/': {
          preset: 'client',
          documentTransforms: ['./my-document-transform.js'],
        },
      },
    };
    export default config;
Patch Changes

v3.0.0

Compare Source

Major Changes
Patch Changes

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

v2.13.12

Compare Source

Patch Changes

v2.13.11

Compare Source

Patch Changes

v2.13.10

Compare Source

Patch Changes

v2.13.9

Compare Source

Patch Changes

v2.13.8

Compare Source

Patch Changes

v2.13.7

Compare Source

Patch Changes

v2.13.6

Compare Source

Patch Changes

v2.13.5

Compare Source

Patch Changes

v2.13.4

Compare Source

Patch Changes

v2.13.3

Compare Source

Patch Changes

v2.13.2

Compare Source

Patch Changes

v2.13.1

Compare Source

Patch Changes

v2.13.0

Compare Source

Minor Changes
Patch Changes

[v2.12.2](https://redirect.github.com/dotansim


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from d5b5a07 to c2173e6 Compare March 7, 2022 16:20
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from c2173e6 to 68025ce Compare March 26, 2022 14:23
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 68025ce to aef57bf Compare May 15, 2022 18:34
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from aef57bf to 05c0829 Compare June 18, 2022 18:15
@renovate renovate bot changed the title fix(deps): update graphqlcodegenerator monorepo (major) fix(deps): update graphqlcodegenerator monorepo to v2 (major) Jun 18, 2022
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 05c0829 to 151089d Compare September 25, 2022 21:25
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 151089d to 53e2b0a Compare November 20, 2022 08:24
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 53e2b0a to d7c9c6b Compare March 16, 2023 13:29
@renovate renovate bot changed the title fix(deps): update graphqlcodegenerator monorepo to v2 (major) fix(deps): update graphqlcodegenerator monorepo to v3 (major) Mar 16, 2023
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from d7c9c6b to eacf7ca Compare April 17, 2023 14:01
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from eacf7ca to 3870405 Compare May 28, 2023 11:38
@renovate renovate bot changed the title fix(deps): update graphqlcodegenerator monorepo to v3 (major) fix(deps): update graphqlcodegenerator monorepo to v4 (major) May 28, 2023
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 3870405 to d09d59d Compare June 1, 2023 15:48
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from d09d59d to 5fbf00e Compare June 19, 2023 08:24
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 5fbf00e to e84a25a Compare July 25, 2023 09:24
@renovate renovate bot changed the title fix(deps): update graphqlcodegenerator monorepo to v4 (major) fix(deps): update graphqlcodegenerator monorepo (major) Jul 25, 2023
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from e84a25a to 6a366ad Compare February 6, 2024 15:51
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from 5bcf227 to 5cea930 Compare February 23, 2024 00:01
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 5cea930 to ed10fc7 Compare May 17, 2024 17:29
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from d684d57 to 86b0c86 Compare July 2, 2024 10:20
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 86b0c86 to 664a8e0 Compare October 7, 2024 15:23
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 664a8e0 to 9dd3d0b Compare October 28, 2024 14:36
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 9dd3d0b to f05a6c5 Compare November 22, 2024 22:23
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from f05a6c5 to 0d279e3 Compare January 28, 2025 12:37
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 0d279e3 to 0d4f494 Compare February 13, 2025 15:01
@renovate renovate bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 0d4f494 to ff6701a Compare February 19, 2025 16:39
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