chore(deps): update graphqlcodegenerator monorepo - #8
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/graphqlcodegenerator-monorepo
branch
from
June 1, 2026 23:06
f8bca68 to
836795a
Compare
renovate
Bot
force-pushed
the
renovate/graphqlcodegenerator-monorepo
branch
2 times, most recently
from
June 16, 2026 17:51
171b776 to
20fc6cb
Compare
renovate
Bot
force-pushed
the
renovate/graphqlcodegenerator-monorepo
branch
2 times, most recently
from
July 12, 2026 17:50
30e5b02 to
2951dcf
Compare
renovate
Bot
force-pushed
the
renovate/graphqlcodegenerator-monorepo
branch
2 times, most recently
from
July 24, 2026 20:17
40d399b to
c51ec68
Compare
renovate
Bot
force-pushed
the
renovate/graphqlcodegenerator-monorepo
branch
3 times, most recently
from
August 14, 2026 20:58
c79fe36 to
55644d3
Compare
renovate
Bot
force-pushed
the
renovate/graphqlcodegenerator-monorepo
branch
from
August 23, 2026 16:59
55644d3 to
edfb8cb
Compare
renovate
Bot
force-pushed
the
renovate/graphqlcodegenerator-monorepo
branch
from
August 26, 2026 16:54
edfb8cb to
17f8553
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
7.0.0→7.3.16.0.0→6.1.3Release Notes
dotansimha/graphql-code-generator (@graphql-codegen/cli)
v7.3.1Compare Source
Patch Changes
#10924
0c8f5baThanks @eddeee888! - Fix profiler output not being written to the
filesystem in watch mode (
--profile --watch)The profiler trace was only written on the non-watch code path, after the watch-mode early return,
so a profiled watch session never produced a
codegen-*.jsonfile.The profiler now writes a fresh trace file after the initial run and after every rebuild, with
each file containing only that run's events. A failed rebuild does not produce a trace and its
events are discarded so they don't leak into the next successful run.
The
Profilernow owns its own trace lifecycle:clear()method starts a new traceoutputNameproperty provides the filename for the current trace (nullfor the noopprofiler)
CodegenContextUpdated dependencies
[
0c8f5ba]:v7.3.0Compare Source
Minor Changes
#10921
58cdb31Thanks @eddeee888! - Extend
overwritewithoverwrite.removeStaleFilesandoverwrite.updateExistingFilesoverwritewas 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
overwritecan now take an object withoverwrite.removeStaleFilesandoverwrite.updateExistingFilesfields to allow granular control over actions.This is not a breaking change because
overwrite=true|falsestill works.Patch Changes
[
58cdb31]:v7.2.0Compare Source
Minor Changes
959915fThanks @eddeee888! - dependencies updates:
@graphql-tools/utils@^11.2.0↗︎(from
^11.0.0, independencies)graphql@^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0↗︎(from
^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0,in
peerDependencies)Patch Changes
[
959915f,959915f,959915f]:v7.1.3Compare Source
Patch Changes
#10335
3280aceThanks @Diluka! - Fix graphql-config loading order to correctly
detect codegen projects
Previously, a
graphql-configfile like this failed:This is because the
defaultproject doesn't have acodegenextension, which caused previouslogic to short circuit before reading
project1's config.The fix reads every named project first, before reading the
defaultproject to exhaustively gothrough every single project.
v7.1.2Compare Source
Patch Changes
a2e1093Thanks @eddeee888! - Fix CLI's
requireflag when resolvingmodule issue in ESM in native Windows
v7.1.1Compare Source
Patch Changes
3fa901bThanks @eddeee888! - Fix --version flag
v7.1.0Compare Source
Minor Changes
cfc4fc3Thanks @eddeee888! - Add
disableFederationDirectiveAndScalarInjection config to better support Federation v2
Patch Changes
[
cbf9544]:v7.0.1Compare Source
Patch Changes
#10848
f3ce427Thanks @eddeee888! - dependencies updates:
@graphql-codegen/client-preset@workspace:^↗︎(from
^6.0.0, independencies)#10849
55a4742Thanks @eddeee888! - dependencies updates:
@graphql-codegen/core@workspace:^↗︎(from
^6.0.0, independencies)@graphql-codegen/plugin-helpers@workspace:^↗︎(from
^7.0.0, independencies)Updated dependencies
[
f3ce427,55a4742,55a4742,f3ce427]:dotansimha/graphql-code-generator (@graphql-codegen/client-preset)
v6.1.3Compare Source
Patch Changes
#10918
6a3b734Thanks @eddeee888! - Fix union and conditional directives
resulting in no field types
Updated dependencies
[
6a3b734]:v6.1.2Compare Source
Patch Changes
#10916
d95d378Thanks @eddeee888! - Revert Partial handling when conditional
fragment and fragment masking are used
This is causing all masked fields to be optional due to how function type override works.
Updated dependencies
[
d95d378]:v6.1.1Compare Source
Patch Changes
#10904
2dd1531Thanks @eddeee888! - Fix fragment masking generation when
conditional directive is used
Updated dependencies
[
2dd1531,5a9f96c]:v6.1.0Compare Source
Minor Changes
959915fThanks @eddeee888! - dependencies updates:
@graphql-tools/utils@^11.2.0↗︎(from
^11.0.0, independencies)graphql@^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0↗︎(from
^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0,in
peerDependencies)Patch Changes
[
959915f,959915f,959915f,959915f,959915f,959915f,959915f]:v6.0.1Compare Source
Patch Changes
#10848
f3ce427Thanks @eddeee888! - dependencies updates:
@graphql-codegen/gql-tag-operations@^6.0.0↗︎(from
6.0.0, independencies)#10849
55a4742Thanks @eddeee888! - dependencies updates:
@graphql-codegen/add@workspace:^↗︎(from
^7.0.0, independencies)@graphql-codegen/gql-tag-operations@workspace:^↗︎(from
^6.0.0, independencies)@graphql-codegen/plugin-helpers@workspace:^↗︎(from
^7.0.0, independencies)@graphql-codegen/typed-document-node@workspace:^↗︎(from
^7.0.0, independencies)@graphql-codegen/typescript@workspace:^↗︎(from
^6.0.0, independencies)@graphql-codegen/typescript-operations@workspace:^↗︎(from
^6.0.0, independencies)@graphql-codegen/visitor-plugin-common@workspace:^↗︎(from
^7.0.0, independencies)#10848
f3ce427Thanks @eddeee888! - Fix package pinning
Updated dependencies
[
55a4742,55a4742,55a4742,55a4742,55a4742,55a4742]:Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.