Skip to content

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

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-graphqlcodegenerator-monorepo
Open

fix(deps): update graphqlcodegenerator monorepo (major)#19
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-graphqlcodegenerator-monorepo

Conversation

@renovate

@renovate renovate Bot commented Oct 20, 2021

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@graphql-codegen/cli (source) 1.17.87.3.0 age confidence
@graphql-codegen/typescript (source) 1.17.96.1.0 age confidence
@graphql-codegen/typescript-resolvers (source) 1.17.96.1.0 age confidence

Release Notes

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

v7.3.0

Compare Source

Minor Changes
  • #​10921
    58cdb31
    Thanks @​eddeee888! - Extend overwrite with
    overwrite.removeStaleFiles and overwrite.updateExistingFiles

    overwrite was being used to both remove stale files in watch mode and update existing files.
    Some plugins such as Server Preset may dynamically return files to write between watch runs (for
    performance purposes).

    The overwrite can now take an object with overwrite.removeStaleFiles and
    overwrite.updateExistingFiles fields to allow granular control over actions.

    This is not a breaking change because overwrite=true|false still works.

Patch Changes

v7.2.0

Compare Source

Minor Changes
Patch Changes

v7.1.3

Compare Source

Patch Changes
  • #​10335
    3280ace
    Thanks @​Diluka! - Fix graphql-config loading order to correctly
    detect codegen projects

    Previously, a graphql-config file like this failed:

    projects:
      default:
        schema: 'default/schema.graphql'
      project1:
        schema: 'project1/schema.graphql'
        extensions:
          codegen:
            generates:
              'project1/__generated__/types.ts':
                plugins: ['typescript']

    This is because the default project doesn't have a codegen extension, which caused previous
    logic to short circuit before reading project1's config.

    The fix reads every named project first, before reading the default project to exhaustively go
    through every single project.

v7.1.2

Compare Source

Patch Changes

v7.1.1

Compare Source

Patch Changes

v7.1.0

Compare Source

Minor Changes
Patch Changes

v7.0.1

Compare Source

Patch Changes

v7.0.0

Compare Source

Major Changes
  • #​10496
    afaace6
    Thanks @​eddeee888! - BREAKING CHANGE: Update deps to latest, some
    only support ESM

    Node 20 support is dropped in this release. Node 22 comes with require() support for ESM, which
    means it's easier to integrate ES modules into applications. Therefore, it is safe to start using
    ESM-only packages.

    If you are a user, please upgrade to Node 22. If you are a lib maintainer and see ESM vs CJS
    issues when running Jest tests, try using Vitest.

  • #​10496
    afaace6
    Thanks @​eddeee888! - BREAKING CHANGE: Drop Node 20 support

  • #​10496
    afaace6
    Thanks @​eddeee888! - BREAKING CHANGE: Set noSilentErrors: true
    by default

    When multiple files match documents pattern, and there are syntax errors in some but not others,
    then the operations with errors are not included in the loaded documents list by default
    (noSilentErrors: false). This is annoying for users as there is no feedback loop during
    development.

    noSilentErrors: true is used as the default for Codegen users to make the feedback loop faster.
    It can still overriden in Codegen Config if desired.

Patch Changes

v6.3.1

Compare Source

Patch Changes
  • #​10737
    be85118
    Thanks @​eddeee888! - Fix issue where same SDL in different
    documents are ignored when handling documents vs externalDocuments

v6.3.0

Compare Source

Minor Changes
  • #​10659
    e65d303
    Thanks @​ikusakov2! - Add support for externalDocuments

    externalDocuments declares GraphQL documents that will be read but will not have type files
    generated for them. These documents are available to plugins for type resolution (e.g. fragment
    types), but no output files will be generated based on them. Accepts the same formats as
    documents.

    This config option is useful for monorepos where each project may want to generate types for its
    own documents, but some may need to read shared fragments from across projects.

Patch Changes

v6.2.1

Compare Source

Patch Changes
  • #​10618
    e804925
    Thanks @​PalmerTurley34! - Honor per-output preset
    importExtension and emitLegacyCommonJSImports config instead of always using the root config
    values.

v6.2.0

Compare Source

Minor Changes
Patch Changes

v6.1.3

Compare Source

Patch Changes

v6.1.2

Compare Source

Patch Changes
  • #​10590
    e173e11
    Thanks @​ya2s! - Fix GraphQL Config loading to forward nested
    extensions.codegen.config options when loading schemas/documents, matching codegen.ts
    behavior.

v6.1.1

Compare Source

Patch Changes
  • #​10569
    8cb7d43
    Thanks @​etr2460! - fix(graphql-codegen-cli): Don't hang when 0 CPUs
    are found

    Fixes generation when 0 CPUs are returned by os.cpus(), which occurs in sandbox environments.

v6.1.0

Compare Source

Minor Changes
Patch Changes

v6.0.2

Compare Source

Patch Changes

v6.0.1

Compare Source

Patch Changes
  • #​10468
    cb1b9d9
    Thanks @​eddeee888! - In watch mode, do not write output on failure

    Previously, on partial or full failure, watch mode still write to output. However, since the
    output'd be an empty array, it will then call removeStaleFiles internally to remove all
    previously generated files.

    This patch puts a temporary fix to avoid writing output on any failure to fix the described
    behaviour.

    This also means the config.allowPartialOutputs does not work in watch mode for now.

v6.0.0

Compare Source

Major Changes
Patch Changes

v5.0.7

Compare Source

Patch Changes

v5.0.6

Compare Source

Patch Changes

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

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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 2 times, most recently from 0d4f494 to ff6701a Compare February 19, 2025 16:39
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from ff6701a to 004074b Compare February 23, 2025 21:41
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 004074b to d651a6b Compare March 27, 2025 12:02
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from ff5a07b to dbe6bc3 Compare October 21, 2025 22:07
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 3 times, most recently from 0828087 to e259f72 Compare November 13, 2025 19:01
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from b82766a to 6729362 Compare November 20, 2025 13:52
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from 79dba81 to d37418c Compare December 3, 2025 19:41
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from d37418c to 7ecacb1 Compare December 18, 2025 12:48
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 7ecacb1 to 901ba78 Compare December 31, 2025 16:12
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from 58148ee to c419265 Compare January 11, 2026 12:28
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from cbcb2f6 to 19f2171 Compare January 23, 2026 19:52
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 19f2171 to 1722349 Compare February 2, 2026 17:02
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 3 times, most recently from aed9615 to 51939b7 Compare February 18, 2026 14:09
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from 51939b7 to 79dce0f Compare February 22, 2026 17:27
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 4 times, most recently from 46d4960 to 22d3499 Compare March 12, 2026 19:13
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from 94c0a92 to a910b47 Compare April 1, 2026 17:30
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch 2 times, most recently from 386c495 to fc84cdf Compare April 13, 2026 15:10
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from fc84cdf to bb4c63d Compare April 18, 2026 14:29
@renovate
renovate Bot force-pushed the renovate/major-graphqlcodegenerator-monorepo branch from bb4c63d to a905d1f Compare April 29, 2026 19:14
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