Build(deps-dev): bump @graphql-codegen/cli from 2.7.0 to 2.8.0 #466

Merged
argoyle merged 1 commits from dependabot-npm_and_yarn-graphql-codegen-cli-2.8.0 into master 2022-07-10 09:46:31 +00:00
argoyle commented 2022-07-10 04:41:29 +00:00 (Migrated from gitlab.com)

Bumps @graphql-codegen/cli from 2.7.0 to 2.8.0.

Release notes

Sourced from @​graphql-codegen/cli's releases.

@​graphql-codegen/cli@​2.8.0

Minor Changes

  • d84afec09: 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.

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

    More information on the TypeScript Release Notes.

  • 8e44df58b: 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

  • e7870ac28: Fix security vulnerability by removing latest-version dependency.

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

    $ graphql-codegen --watch=false
    
  • 2e86ecb65: ### 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

... (truncated)

Changelog

Sourced from @​graphql-codegen/cli's changelog.

2.8.0

Minor Changes

  • d84afec09: 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.

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

    More information on the TypeScript Release Notes.

  • 8e44df58b: 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

  • e7870ac28: Fix security vulnerability by removing latest-version dependency.

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

    $ graphql-codegen --watch=false
    
  • 2e86ecb65: ### 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

... (truncated)

Commits
  • b4a8e8b chore(release): update monorepo packages versions (#8028)
  • 8e44df5 feat: add ignoreNoDocuments flag and config option (#8040)
  • 2578c30 chore(deps): pin dependency change-case-all to 1.0.14 (#8048)
  • 2e86ecb feat: migrate to listr2 (#8005)
  • dce40ed Allow disabling watch from cli (#7781)
  • e7870ac feat: remove latest-version dependency (#8035)
  • d84afec feat: generate TypeScript modules compatible exports map and dist structure (...
  • See full diff in compare view


Dependabot commands
You can trigger Dependabot actions by commenting on this MR
  • $dependabot rebase will rebase this MR
  • $dependabot recreate will recreate this MR rewriting all the manual changes and resolving conflicts
Bumps [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) from 2.7.0 to 2.8.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dotansimha/graphql-code-generator/releases"><code>@​graphql-codegen/cli</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​graphql-codegen/cli</code><a href="https://github.com/2"><code>@​2</code></a>.8.0</h2> <h3>Minor Changes</h3> <ul> <li> <p>d84afec09: Add bin CLI command for running <code>graphql-code-generator</code> in ESM mode. You can now use <code>graphql-codegen-esm</code> instead of <code>graphql-codegen</code>.</p> <p>GraphQL Code Generator will continue supporting both ESM and CommonJS in parallel.</p> </li> <li> <p>d84afec09: Support TypeScript ESM modules (<code>&quot;module&quot;: &quot;node16&quot;</code> and <code>&quot;moduleResolution&quot;: &quot;node16&quot;</code>).</p> <p><a href="https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js">More information on the TypeScript Release Notes.</a></p> </li> <li> <p>8e44df58b: Add new config option to not exit with non-zero exit code when there are no documents.</p> <p>You can use this option in your config:</p> <pre lang="yaml"><code>schema: 'schema.graphql' documents: - 'src/**/*.graphql' ignoreNoDocuments: true </code></pre> <p>Alternative you can use the CLI to set this option:</p> <pre lang="bash"><code>$ codegen --config-file=config.yml --ignore-no-documents </code></pre> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>e7870ac28: Fix security vulnerability by removing <code>latest-version</code> dependency.</p> </li> <li> <p>dce40edeb: Allow to disable watch mode from CLI to overwrite the config. Now you can do:</p> <pre lang="bash"><code>$ graphql-codegen --watch=false </code></pre> </li> <li> <p>2e86ecb65: ### Summary</p> <ul> <li>Migrate to <a href="https://listr2.kilic.dev"><code>listr2</code></a></li> <li>Remove custom renderer for <code>listr</code></li> <li>Remove unused dependencies</li> </ul> <h3>Why</h3> <p><a href="https://github.com/SamVerschueren/listr"><code>listr</code></a> is not actively maintained and we have to maintain our custom renderer for it to display errors. Migrating to <code>listr2</code> it just works out of the almost similar to how it was working in past and is a actively maintained.</p> <h3>Dev notes</h3> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md"><code>@​graphql-codegen/cli</code>'s changelog</a>.</em></p> <blockquote> <h2>2.8.0</h2> <h3>Minor Changes</h3> <ul> <li> <p>d84afec09: Add bin CLI command for running <code>graphql-code-generator</code> in ESM mode. You can now use <code>graphql-codegen-esm</code> instead of <code>graphql-codegen</code>.</p> <p>GraphQL Code Generator will continue supporting both ESM and CommonJS in parallel.</p> </li> <li> <p>d84afec09: Support TypeScript ESM modules (<code>&quot;module&quot;: &quot;node16&quot;</code> and <code>&quot;moduleResolution&quot;: &quot;node16&quot;</code>).</p> <p><a href="https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js">More information on the TypeScript Release Notes.</a></p> </li> <li> <p>8e44df58b: Add new config option to not exit with non-zero exit code when there are no documents.</p> <p>You can use this option in your config:</p> <pre lang="yaml"><code>schema: 'schema.graphql' documents: - 'src/**/*.graphql' ignoreNoDocuments: true </code></pre> <p>Alternative you can use the CLI to set this option:</p> <pre lang="bash"><code>$ codegen --config-file=config.yml --ignore-no-documents </code></pre> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>e7870ac28: Fix security vulnerability by removing <code>latest-version</code> dependency.</p> </li> <li> <p>dce40edeb: Allow to disable watch mode from CLI to overwrite the config. Now you can do:</p> <pre lang="bash"><code>$ graphql-codegen --watch=false </code></pre> </li> <li> <p>2e86ecb65: ### Summary</p> <ul> <li>Migrate to <a href="https://listr2.kilic.dev"><code>listr2</code></a></li> <li>Remove custom renderer for <code>listr</code></li> <li>Remove unused dependencies</li> </ul> <h3>Why</h3> <p><a href="https://github.com/SamVerschueren/listr"><code>listr</code></a> is not actively maintained and we have to maintain our custom renderer for it to display errors. Migrating to <code>listr2</code> it just works out of the almost similar to how it was working in past and is a actively maintained.</p> <h3>Dev notes</h3> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dotansimha/graphql-code-generator/commit/b4a8e8bb009a97393ee7e8c18cd491a3d88241c4"><code>b4a8e8b</code></a> chore(release): update monorepo packages versions (<a href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli/issues/8028">#8028</a>)</li> <li><a href="https://github.com/dotansimha/graphql-code-generator/commit/8e44df58b84c3c641b423c562ee2d7d238117131"><code>8e44df5</code></a> feat: add <code>ignoreNoDocuments</code> flag and config option (<a href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli/issues/8040">#8040</a>)</li> <li><a href="https://github.com/dotansimha/graphql-code-generator/commit/2578c30d04b50ed806e1ed60f0d60993e94f274e"><code>2578c30</code></a> chore(deps): pin dependency change-case-all to 1.0.14 (<a href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli/issues/8048">#8048</a>)</li> <li><a href="https://github.com/dotansimha/graphql-code-generator/commit/2e86ecb65a2c6b6d5966d251f900d4d9cb9126b1"><code>2e86ecb</code></a> feat: migrate to listr2 (<a href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli/issues/8005">#8005</a>)</li> <li><a href="https://github.com/dotansimha/graphql-code-generator/commit/dce40edebe4ffa0f0533f2728b278ee06eeff09d"><code>dce40ed</code></a> Allow disabling watch from cli (<a href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli/issues/7781">#7781</a>)</li> <li><a href="https://github.com/dotansimha/graphql-code-generator/commit/e7870ac28ce3a4d23a4c8f561382a5679090d3d0"><code>e7870ac</code></a> feat: remove latest-version dependency (<a href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli/issues/8035">#8035</a>)</li> <li><a href="https://github.com/dotansimha/graphql-code-generator/commit/d84afec0950b234cd716ea76436e3800a978328c"><code>d84afec</code></a> feat: generate TypeScript modules compatible exports map and dist structure (...</li> <li>See full diff in <a href="https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/cli@2.8.0/packages/graphql-codegen-cli">compare view</a></li> </ul> </details> <br /> --- <details> <summary>Dependabot commands</summary> <br /> You can trigger Dependabot actions by commenting on this MR - `$dependabot rebase` will rebase this MR - `$dependabot recreate` will recreate this MR rewriting all the manual changes and resolving conflicts </details>
argoyle commented 2022-07-10 09:36:02 +00:00 (Migrated from gitlab.com)

$dependabot recreate

$dependabot recreate
argoyle commented 2022-07-10 09:36:04 +00:00 (Migrated from gitlab.com)

⚠️ dependabot is recreating merge request. All changes will be overwritten! ⚠️

:warning: `dependabot` is recreating merge request. All changes will be overwritten! :warning:
argoyle commented 2022-07-10 09:37:24 +00:00 (Migrated from gitlab.com)

dependabot successfuly recreated merge request!

:white_check_mark: `dependabot` successfuly recreated merge request!
argoyle commented 2022-07-10 09:37:24 +00:00 (Migrated from gitlab.com)

added 3 commits

  • 43840bf6...ae1790fd - 2 commits from branch master
  • 53372e9b - Build(deps-dev): bump @graphql-codegen/cli from 2.7.0 to 2.8.0

Compare with previous version

added 3 commits <ul><li>43840bf6...ae1790fd - 2 commits from branch <code>master</code></li><li>53372e9b - Build(deps-dev): bump @graphql-codegen/cli from 2.7.0 to 2.8.0</li></ul> [Compare with previous version](/unboundsoftware/dancefinder/dancefinder-app/-/merge_requests/417/diffs?diff_id=434835016&start_sha=43840bf6a86b319c136132f769ed1e0f74d6f793)
argoyle commented 2022-07-10 09:37:24 +00:00 (Migrated from gitlab.com)

resolved all threads

resolved all threads
argoyle (Migrated from gitlab.com) scheduled this pull request to auto merge when all checks succeed 2022-07-10 09:43:14 +00:00
argoyle (Migrated from gitlab.com) merged commit into master 2022-07-10 09:46:31 +00:00
Sign in to join this conversation.