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

chore(deps): update graphqlcodegenerator monorepo #377

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 13, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-codegen/cli (source) 2.2.0 -> 2.16.5 age adoption passing confidence
@graphql-codegen/gql-tag-operations-preset (source) 1.3.0-alpha-1f4053433.0 -> 1.7.4 age adoption passing 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

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

Compare Source

Patch Changes

v2.12.1

Compare Source

Patch Changes

v2.12.0

Compare Source

Minor Changes
Patch Changes

v2.11.8

Compare Source

Patch Changes

v2.11.7

Compare Source

Patch Changes

v2.11.6

Compare Source

Patch Changes

v2.11.5

Compare Source

Patch Changes

v2.11.4

Compare Source

Patch Changes

v2.11.3

Compare Source

Patch Changes
  • b75ca4b: Prevent cli from early returning when run init command.

v2.11.2

Compare Source

Patch Changes
  • 8cd1526: chore(deps): update @whatwg-node/fetch to fix vulnerability

v2.11.1

Compare Source

Patch Changes
  • 20bf4b2: support for path containing "&" characters

v2.11.0

Compare Source

Minor Changes
  • fd6be80: feat(cli): add a dry-run mode with --check cli flag
Patch Changes

v2.10.0

Compare Source

Minor Changes
Patch Changes
  • cc18923: feat(hooks): forward hooks logs to debug logs

v2.9.1

Compare Source

Patch Changes
  • e2cfc5c: fix(cli): prevent duplicated error messages on fail (without watcher)

v2.9.0

Compare Source

Minor Changes
  • 2cbcbb3: Add new flag to emit legacy common js imports. Default it will be true this way it ensure that generated code works with non-compliant bundlers.

    You can use the option in your config:

    schema: 'schema.graphql'
     documents:
       - 'src/**/*.graphql'
     emitLegacyCommonJSImports: true

    Alternative you can use the CLI to set this option:

    $ codegen --config-file=config.yml --emit-legacy-common-js-imports
Patch Changes
  • 32c1560: getPluginByName fails unexpectedly when plugin is not prefixed with @​graphq-codegen in ESM context

    MODULE_NOT_FOUND is the error code you receive in a CommonJS context when you require() a module and it does not exist.
    ERR_MODULE_NOT_FOUND is the error code you receive in an ESM context when you import or import() ad module that does not exist.

  • Updated dependencies [2cbcbb3]

v2.8.1

Compare Source

Patch Changes

v2.8.0

Compare Source

Minor Changes
  • d84afec: Add bin CLI command for running graphql-code-generator in ESM mode. You can now use graphql-codegen-esm instead of graphql-codegen.

    GraphQL Code Generator will continue supporting both ESM and CommonJS in parallel.

  • d84afec: Support TypeScript ESM modules ("module": "node16" and "moduleResolution": "node16").

    More information on the TypeScript Release Notes.

  • 8e44df5: Add new config option to not exit with non-zero exit code when there are no documents.

    You can use this option in your config:

    schema: 'schema.graphql'
    documents:
      - 'src/**/*.graphql'
    ignoreNoDocuments: true

    Alternative you can use the CLI to set this option:

    $ codegen --config-file=config.yml --ignore-no-documents
Patch Changes
  • e7870ac: Fix security vulnerability by removing latest-version dependency.

  • dce40ed: Allow to disable watch mode from CLI to overwrite the config. Now you can do:

    $ graphql-codegen --watch=false
  • 2e86ecb: ### Summary

    • Migrate to listr2
    • Remove custom renderer for listr
    • Remove unused dependencies
Why

listr is not actively maintained and we have to maintain our custom renderer for it to display errors. Migrating to listr2 it just works out of the almost similar to how it was working in past and is a actively maintained.

Dev notes

Big change for us is how errors were collected. In listr errors were thrown and were caught in the end function of our custom listr Renderer but with listr2 we don't really get Error in end function always so instead we use the context to collect errors from all the tasks and then show them after all the tasks are finished.

v2.7.0

Compare Source

Minor Changes
  • e050230: Remove unnecessary browser check
Patch Changes

v2.6.4

Compare Source

Patch Changes
  • 92f7142: Revert "Upgrade latest version"

v2.6.3

Compare Source

Patch Changes
  • c1fe775: Remove unused deps
  • 52b41e9: bump latest-version to patch vuln

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes

v2.6.0

Compare Source

Minor Changes
  • 35566a0: Use os.cpus to calculate concurrency limit
  • acc62e5: fix(deps): remove unnecessary dotenv main dependency
  • 35566a0: Async File System

v2.5.0

Compare Source

Minor Changes
  • 754a337: Performance Profiler --profile
Patch Changes

v2.4.0

Compare Source

Minor Changes
  • 4c42e2a: Performance optimizations in schema and documents loading (shared promises)

v2.3.1

Compare Source

Patch Changes

v2.3.0

Compare Source

Minor Changes
  • 50c1d32: feat(cli): export loadCodegenConfig to load codegen configuration files
Patch Changes
  • 04e2d83: export generateSearchPlaces

v2.2.2

Compare Source

Patch Changes

v2.2.1

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/gql-tag-operations-preset)

v1.7.4

Compare Source

v1.7.3

Compare Source

v1.7.2

Compare Source

v1.7.1

Compare Source

v1.7.0

Compare Source

Do you want The Guild to keep your codebase up to date and run your build on each GraphQL Code Generator commit so we'll make sure not to break your app?
Contact us here: the-guild.dev/connected-build

core/cli

  • Fixes issues with documents validation - now it's more strict and will also check for fragment usages and fragment spreads.
  • Ignore generated files, also on Windows.
  • Fixed issues with require.cache that caused loading from schema to remain the same without updating.
  • Update dependencies

typescript

typescript-operations

  • Fix missing readonly for __typename with immutableTypes (#​2459)
  • Fix union/interface types with same selection set field name but different type (#​2436, thanks @​n1ru4l)
  • fix: do not omit fragment spread nodes (#​2409, @​n1ru4l)

typescript-react-apollo

flow-operations

  • Fix missing readonly for __typename with immutableTypes (#​2459)
  • Fix union/interface types with same selection set field name but different type (#​2436, thanks @​n1ru4l)
  • fix: do not omit fragment spread nodes (#​2409, @​n1ru4l)

flow

near-operation-files

typescript-type-graphql

v1.6.0

Compare Source

Do you want The Guild to keep your codebase up to date and run your build on each GraphQL Code Generator commit so we'll make sure not to break your app?
Contact us here: the-guild.dev/connected-build

core/cli
  • Update dependencies
  • Sort documents by file-path in order to avoid inconsistency coming from globy (#​2311)
  • Fix issues with swallowed errors when schema/documents are loaded (#​2318)
  • Introduce Lifecycle hooks (#​2361), make sure to read the latest docs in order to use Prettier now.
  • Removed prettify option (not a breaking change because it only apply to code beautify - you can now use lif

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from bd1e0f4 to 24c343d Compare October 29, 2021 21:59
@renovate renovate bot changed the title chore(deps): update dependency @graphql-codegen/cli to v2.2.1 chore(deps): update dependency @graphql-codegen/cli to v2.2.2 Oct 29, 2021
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 24c343d to 8301a78 Compare November 5, 2021 12:48
@renovate renovate bot changed the title chore(deps): update dependency @graphql-codegen/cli to v2.2.2 chore(deps): update graphqlcodegenerator monorepo Nov 5, 2021
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 8301a78 to 4808b76 Compare November 15, 2021 19:22
@renovate renovate bot changed the title chore(deps): update graphqlcodegenerator monorepo chore(deps): update dependency @graphql-codegen/cli to v2.3.0 Dec 8, 2021
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 4808b76 to 990295d Compare December 8, 2021 20:13
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 990295d to b273a0f Compare December 30, 2021 09:27
@renovate renovate bot changed the title chore(deps): update dependency @graphql-codegen/cli to v2.3.0 chore(deps): update dependency @graphql-codegen/cli to v2.3.1 Dec 30, 2021
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from b273a0f to 06c72e1 Compare January 21, 2022 11:50
@renovate renovate bot changed the title chore(deps): update dependency @graphql-codegen/cli to v2.3.1 chore(deps): update dependency @graphql-codegen/cli to v2.4.0 Jan 21, 2022
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 06c72e1 to 3c772dc Compare February 3, 2022 14:37
@renovate renovate bot changed the title chore(deps): update dependency @graphql-codegen/cli to v2.4.0 chore(deps): update dependency @graphql-codegen/cli to v2.5.0 Feb 3, 2022
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 3c772dc to cde66ba Compare March 7, 2022 15:51
@renovate renovate bot changed the title chore(deps): update dependency @graphql-codegen/cli to v2.5.0 chore(deps): update graphqlcodegenerator monorepo Mar 7, 2022
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from cde66ba to 93943c2 Compare March 14, 2022 14:33
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 93943c2 to 934ffd5 Compare May 4, 2022 15:21
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 934ffd5 to 46b5063 Compare September 25, 2022 15:59
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 46b5063 to 3d52f2c Compare November 20, 2022 16:46
@renovate renovate bot force-pushed the renovate/graphqlcodegenerator-monorepo branch from 3d52f2c to 882e571 Compare March 18, 2023 10:11
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.

None yet

0 participants