Upcoming Release Changes - #243
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/master
branch
2 times, most recently
from
June 7, 2022 08:53
97aceef to
8e4dc2f
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
July 7, 2022 23:36
8e4dc2f to
5641168
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
August 2, 2022 22:56
5641168 to
4c0338d
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
3 times, most recently
from
August 11, 2022 07:53
c867d2b to
42ce2fd
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
September 12, 2022 11:47
42ce2fd to
a1fa88b
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
December 29, 2022 23:45
a1fa88b to
810342b
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
3 times, most recently
from
January 10, 2023 08:29
39f5af4 to
89f8fd9
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
4 times, most recently
from
January 25, 2023 23:32
5ac12fa to
270da22
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
3 times, most recently
from
February 7, 2023 15:46
fbb0690 to
4c93777
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
7 times, most recently
from
February 21, 2023 14:02
306263f to
fdd69c2
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
September 7, 2025 07:27
fdd69c2 to
ce7fa48
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
October 5, 2025 13:26
ce7fa48 to
e705b0a
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
November 7, 2025 07:27
e705b0a to
8a6ac56
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
November 19, 2025 13:27
8a6ac56 to
68a6194
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
9 times, most recently
from
April 11, 2026 07:27
0972f3c to
6ffa6db
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
2 times, most recently
from
April 13, 2026 07:27
a5b4372 to
9325073
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
9 times, most recently
from
May 6, 2026 07:27
a3a9db8 to
1aefd1f
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
May 27, 2026 13:26
1aefd1f to
17a6061
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
July 6, 2026 13:26
17a6061 to
533c6e9
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
3 times, most recently
from
July 29, 2026 13:26
2258955 to
69f9f0f
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
2 times, most recently
from
August 8, 2026 01:26
c5faddf to
32c5261
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
August 22, 2026 07:26
32c5261 to
965ad56
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
September 1, 2026 13:26
965ad56 to
7c99c7f
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@graphql-codegen/cli@7.4.0
Minor Changes
#10928
90229a5Thanks @eddeee888! - Add
contentComparison?: 'cache-first' | 'disk'to control disk-vs-cache write comparison in watchmode.
In watch mode the CLI caches the hash of the content it last wrote per file and compares new
output against that cached hash to skip redundant writes. This assumes generated output is a pure
function of the codegen inputs. An output whose content depends on the file's existing content
(e.g. a preset that reads the file and rewrites part of it) breaks that assumption: if the file is
changed on disk and codegen regenerates content identical to a previous run, the cached hash still
matches and the write is skipped, so the on-disk change is never corrected.
contentComparison: 'disk'opts an output into comparing the generated content against the fileon disk instead of the in-memory record of what codegen last wrote, so the file is rewritten when
it was changed externally. It can be set:
GenerateOptionsit returns frombuildGeneratesSection, orgenerates[output].contentComparison) for any output, including plainplugin outputs without a preset.
When both are present, the preset's value takes precedence. The default,
'cache-first', keepsthe existing in-memory-cache behaviour for outputs that are a pure function of their inputs.
Patch Changes
[
90229a5]:@graphql-codegen/plugin-helpers@7.3.0
Minor Changes
#10928
90229a5Thanks @eddeee888! - Add
contentComparison?: 'cache-first' | 'disk'to control disk-vs-cache write comparison in watchmode.
In watch mode the CLI caches the hash of the content it last wrote per file and compares new
output against that cached hash to skip redundant writes. This assumes generated output is a pure
function of the codegen inputs. An output whose content depends on the file's existing content
(e.g. a preset that reads the file and rewrites part of it) breaks that assumption: if the file is
changed on disk and codegen regenerates content identical to a previous run, the cached hash still
matches and the write is skipped, so the on-disk change is never corrected.
contentComparison: 'disk'opts an output into comparing the generated content against the fileon disk instead of the in-memory record of what codegen last wrote, so the file is rewritten when
it was changed externally. It can be set:
GenerateOptionsit returns frombuildGeneratesSection, orgenerates[output].contentComparison) for any output, including plainplugin outputs without a preset.
When both are present, the preset's value takes precedence. The default,
'cache-first', keepsthe existing in-memory-cache behaviour for outputs that are a pure function of their inputs.