Skip to content

Commit

Permalink
chore: bump the graphql group across 1 directory with 9 updates (#2415)
Browse files Browse the repository at this point in the history
Bumps the graphql group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) |
`3.9.10` | `3.10.4` |
|
[@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server)
| `4.10.2` | `4.10.4` |
|
[@graphql-tools/schema](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema)
| `10.0.3` | `10.0.4` |
|
[@graphql-codegen/typed-document-node](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typed-document-node)
| `5.0.6` | `5.0.7` |
|
[@graphql-codegen/typescript-operations](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/operations)
| `4.2.0` | `4.2.1` |
|
[@graphql-inspector/cli](https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli)
| `4.0.3` | `5.0.5` |
|
[@graphql-tools/merge](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge)
| `9.0.3` | `9.0.4` |
|
[@graphql-tools/utils](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/utils)
| `10.1.3` | `10.2.1` |
|
[graphql-codegen-typescript-validation-schema](https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema)
| `0.12.1` | `0.14.1` |


Updates `@apollo/client` from 3.9.10 to 3.10.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/apollographql/apollo-client/releases"><code>@​apollo/client</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.10.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11838">#11838</a>
<a
href="https://github.com/apollographql/apollo-client/commit/84753462af50d89c8693713990cccf432ff8267d"><code>8475346</code></a>
Thanks <a
href="https://github.com/alex-kinokon"><code>@​alex-kinokon</code></a>!
- Don’t prompt for DevTools installation for browser extension page</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11839">#11839</a>
<a
href="https://github.com/apollographql/apollo-client/commit/6481fe1196cedee987781dcb45ebdc0cafb3998c"><code>6481fe1</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Fix a regression in <a
href="https://github.com/apollographql/apollo-client/releases/tag/v3.9.5">3.9.5</a>
where a merge function that returned an incomplete result would not
allow the client to refetch in order to fulfill the query.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11844">#11844</a>
<a
href="https://github.com/apollographql/apollo-client/commit/86984f24bd9076a6034acd59bbcb28a2ea1add93"><code>86984f2</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Honor the <code>@nonreactive</code> directive when using
<code>cache.watchFragment</code> or the <code>useFragment</code> hook to
avoid rerendering when using these directives.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11824">#11824</a>
<a
href="https://github.com/apollographql/apollo-client/commit/47ad806c7b0c55f1e05dbf276ca87a354ac389e5"><code>47ad806</code></a>
Thanks <a
href="https://github.com/phryneas"><code>@​phryneas</code></a>! - Create
branded <code>QueryRef</code> type without exposed properties.</p>
<p>This change deprecates <code>QueryReference</code> in favor of a
<code>QueryRef</code> type that doesn't expose any properties.
This change also updates <code>preloadQuery</code> to return a new
<code>PreloadedQueryRef</code> type, which exposes the
<code>toPromise</code> function as it does today. This means that query
refs produced by <code>useBackgroundQuery</code> and
<code>useLoadableQuery</code> now return <code>QueryRef</code> types
that do not have access to a <code>toPromise</code> function, which was
never meant to be used in combination with these hooks.</p>
<p>While we tend to avoid any types of breaking changes in patch
releases as this, this change was necessary to support an upcoming
version of the React Server Component integration, which needed to omit
the <code>toPromise</code> function that would otherwise have broken at
runtime.
Note that this is a TypeScript-only change. At runtime,
<code>toPromise</code> is still present on all queryRefs currently
created by this package - but we strongly want to discourage you from
accessing it in all cases except for the <code>PreloadedQueryRef</code>
use case.</p>
<p>Migration is as simple as replacing all references to
<code>QueryReference</code> with <code>QueryRef</code>, so it should be
possible to do this with a search &amp; replace in most code bases:</p>
<pre lang="diff"><code>-import { QueryReference } from '@apollo/client'
+import { QueryRef } from '@apollo/client'
<ul>
<li>function Component({ queryRef }: { queryRef:
QueryReference&lt;TData&gt; }) {</li>
</ul>
<ul>
<li>function Component({ queryRef }: { queryRef: QueryRef&lt;TData&gt;
}) {
// ...
}
</code></pre></li>
</ul>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11845">#11845</a>
<a
href="https://github.com/apollographql/apollo-client/commit/4c5c820b6172f6a2455bcdd974109513e0e2a39e"><code>4c5c820</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Remove <code>@nonreactive</code> directives from queries passed to
<code>MockLink</code> to ensure they are properly matched.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11837">#11837</a>
<a
href="https://github.com/apollographql/apollo-client/commit/dff15b1b03ebac9cae508c69bf607a29d0f6eccb"><code>dff15b1</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Fix an issue where a polled query created in React strict mode may not
stop polling after the component unmounts while using the
<code>cache-and-network</code> fetch policy.</p>
</li>
</ul>
<h2>v3.10.3</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11811">#11811</a>
<a
href="https://github.com/apollographql/apollo-client/commit/d67d7f9a2943273cacaefb26a54184e81f12b022"><code>d67d7f9</code></a>
Thanks <a
href="https://github.com/phryneas"><code>@​phryneas</code></a>! - Adjust
some types for React 19 compat</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11834">#11834</a>
<a
href="https://github.com/apollographql/apollo-client/commit/7d8aad4a00b89e0208ee1563293c24025e6604ce"><code>7d8aad4</code></a>
Thanks <a href="https://github.com/psamim"><code>@​psamim</code></a>! -
Fix error &quot;Cannot convert object to primitive value&quot;</p>
</li>
</ul>
<h2>v3.10.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11821">#11821</a>
<a
href="https://github.com/apollographql/apollo-client/commit/2675d3c97e6c47c6e298382004c7c9c2d3ffed0c"><code>2675d3c</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Fix a regression where rerendering a component with
<code>useBackgroundQuery</code> would recreate the <code>queryRef</code>
instance when used with React's strict mode.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11821">#11821</a>
<a
href="https://github.com/apollographql/apollo-client/commit/2675d3c97e6c47c6e298382004c7c9c2d3ffed0c"><code>2675d3c</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Revert the change introduced in
<a
href="https://github.com/apollographql/apollo-client/releases/tag/v3.9.10">3.9.10</a>
via <a
href="https://redirect.github.com/apollographql/apollo-client/issues/11738">#11738</a>
that disposed of queryRefs synchronously. This change caused too many
issues with strict mode.</p>
</li>
</ul>
<h2>v3.10.1</h2>
<h3>Patch Changes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md"><code>@​apollo/client</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>3.10.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11838">#11838</a>
<a
href="https://github.com/apollographql/apollo-client/commit/84753462af50d89c8693713990cccf432ff8267d"><code>8475346</code></a>
Thanks <a
href="https://github.com/alex-kinokon"><code>@​alex-kinokon</code></a>!
- Don’t prompt for DevTools installation for browser extension page</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11839">#11839</a>
<a
href="https://github.com/apollographql/apollo-client/commit/6481fe1196cedee987781dcb45ebdc0cafb3998c"><code>6481fe1</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Fix a regression in <a
href="https://github.com/apollographql/apollo-client/releases/tag/v3.9.5">3.9.5</a>
where a merge function that returned an incomplete result would not
allow the client to refetch in order to fulfill the query.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11844">#11844</a>
<a
href="https://github.com/apollographql/apollo-client/commit/86984f24bd9076a6034acd59bbcb28a2ea1add93"><code>86984f2</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Honor the <code>@nonreactive</code> directive when using
<code>cache.watchFragment</code> or the <code>useFragment</code> hook to
avoid rerendering when using these directives.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11824">#11824</a>
<a
href="https://github.com/apollographql/apollo-client/commit/47ad806c7b0c55f1e05dbf276ca87a354ac389e5"><code>47ad806</code></a>
Thanks <a
href="https://github.com/phryneas"><code>@​phryneas</code></a>! - Create
branded <code>QueryRef</code> type without exposed properties.</p>
<p>This change deprecates <code>QueryReference</code> in favor of a
<code>QueryRef</code> type that doesn't expose any properties.
This change also updates <code>preloadQuery</code> to return a new
<code>PreloadedQueryRef</code> type, which exposes the
<code>toPromise</code> function as it does today. This means that query
refs produced by <code>useBackgroundQuery</code> and
<code>useLoadableQuery</code> now return <code>QueryRef</code> types
that do not have access to a <code>toPromise</code> function, which was
never meant to be used in combination with these hooks.</p>
<p>While we tend to avoid any types of breaking changes in patch
releases as this, this change was necessary to support an upcoming
version of the React Server Component integration, which needed to omit
the <code>toPromise</code> function that would otherwise have broken at
runtime.
Note that this is a TypeScript-only change. At runtime,
<code>toPromise</code> is still present on all queryRefs currently
created by this package - but we strongly want to discourage you from
accessing it in all cases except for the <code>PreloadedQueryRef</code>
use case.</p>
<p>Migration is as simple as replacing all references to
<code>QueryReference</code> with <code>QueryRef</code>, so it should be
possible to do this with a search &amp; replace in most code bases:</p>
<pre lang="diff"><code>-import { QueryReference } from '@apollo/client'
+import { QueryRef } from '@apollo/client'
<ul>
<li>function Component({ queryRef }: { queryRef:
QueryReference&lt;TData&gt; }) {</li>
</ul>
<ul>
<li>function Component({ queryRef }: { queryRef: QueryRef&lt;TData&gt;
}) {
// ...
}
</code></pre></li>
</ul>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11845">#11845</a>
<a
href="https://github.com/apollographql/apollo-client/commit/4c5c820b6172f6a2455bcdd974109513e0e2a39e"><code>4c5c820</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Remove <code>@nonreactive</code> directives from queries passed to
<code>MockLink</code> to ensure they are properly matched.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11837">#11837</a>
<a
href="https://github.com/apollographql/apollo-client/commit/dff15b1b03ebac9cae508c69bf607a29d0f6eccb"><code>dff15b1</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Fix an issue where a polled query created in React strict mode may not
stop polling after the component unmounts while using the
<code>cache-and-network</code> fetch policy.</p>
</li>
</ul>
<h2>3.10.3</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11811">#11811</a>
<a
href="https://github.com/apollographql/apollo-client/commit/d67d7f9a2943273cacaefb26a54184e81f12b022"><code>d67d7f9</code></a>
Thanks <a
href="https://github.com/phryneas"><code>@​phryneas</code></a>! - Adjust
some types for React 19 compat</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11834">#11834</a>
<a
href="https://github.com/apollographql/apollo-client/commit/7d8aad4a00b89e0208ee1563293c24025e6604ce"><code>7d8aad4</code></a>
Thanks <a href="https://github.com/psamim"><code>@​psamim</code></a>! -
Fix error &quot;Cannot convert object to primitive value&quot;</p>
</li>
</ul>
<h2>3.10.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11821">#11821</a>
<a
href="https://github.com/apollographql/apollo-client/commit/2675d3c97e6c47c6e298382004c7c9c2d3ffed0c"><code>2675d3c</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Fix a regression where rerendering a component with
<code>useBackgroundQuery</code> would recreate the <code>queryRef</code>
instance when used with React's strict mode.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/11821">#11821</a>
<a
href="https://github.com/apollographql/apollo-client/commit/2675d3c97e6c47c6e298382004c7c9c2d3ffed0c"><code>2675d3c</code></a>
Thanks <a
href="https://github.com/jerelmiller"><code>@​jerelmiller</code></a>! -
Revert the change introduced in
<a
href="https://github.com/apollographql/apollo-client/releases/tag/v3.9.10">3.9.10</a>
via <a
href="https://redirect.github.com/apollographql/apollo-client/issues/11738">#11738</a>
that disposed of queryRefs synchronously. This change caused too many
issues with strict mode.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apollographql/apollo-client/commit/d773000b49b9ccfeee17a5072736bd4d162d9771"><code>d773000</code></a>
Version Packages (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11843">#11843</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/6481fe1196cedee987781dcb45ebdc0cafb3998c"><code>6481fe1</code></a>
Fix merge function that returns incomplete result that did not refetch
from n...</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/4c5c820b6172f6a2455bcdd974109513e0e2a39e"><code>4c5c820</code></a>
Remove <code>@nonreactive</code> directives from queries passed to
<code>MockLink</code> (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11845">#11845</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/86984f24bd9076a6034acd59bbcb28a2ea1add93"><code>86984f2</code></a>
Honor <code>@nonreactive</code> with <code>useFragment</code> and
<code>cache.watchFragment</code> (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11844">#11844</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/84753462af50d89c8693713990cccf432ff8267d"><code>8475346</code></a>
Don’t prompt for DevTools installation for browser extension page (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11838">#11838</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/dff15b1b03ebac9cae508c69bf607a29d0f6eccb"><code>dff15b1</code></a>
Fix issue where query may not stop polling after unmount when in Strict
mode ...</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/47ad806c7b0c55f1e05dbf276ca87a354ac389e5"><code>47ad806</code></a>
create branded <code>QueryRef</code> type without exposed properties (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11824">#11824</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/857f100cc9e811bb9c21f55265ac25dd921be38d"><code>857f100</code></a>
[docs] Update explainer around reducing-bundle-size (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11791">#11791</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/3861b7c9abc15ac4f76074578b48298cee9b8eeb"><code>3861b7c</code></a>
chore(docs): fix url for reset function (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11836">#11836</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/50da8670d77a37901f059593ac5649b8f99f7280"><code>50da867</code></a>
Version Packages (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/11833">#11833</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/apollographql/apollo-client/compare/v3.9.10...v3.10.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `@apollo/server` from 4.10.2 to 4.10.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/apollographql/apollo-server/releases"><code>@​apollo/server</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​apollo/server-integration-testsuite</code><a
href="https://github.com/4"><code>@​4</code></a>.10.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7"><code>18a3827</code></a>]:
<ul>
<li><code>@​apollo/server</code><a
href="https://github.com/4"><code>@​4</code></a>.10.4</li>
</ul>
</li>
</ul>
<h2><code>@​apollo/server</code><a
href="https://github.com/4"><code>@​4</code></a>.10.4</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/apollographql/apollo-server/pull/7871">#7871</a>
<a
href="https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7"><code>18a3827</code></a>
Thanks <a
href="https://github.com/tninesling"><code>@​tninesling</code></a>! -
Subscription heartbeats are initialized prior to awaiting subscribe().
This allows long-running setup to happen in the returned Promise without
the subscription being terminated prior to resolution.</li>
</ul>
<h2><code>@​apollo/server-integration-testsuite</code><a
href="https://github.com/4"><code>@​4</code></a>.10.3</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="https://github.com/apollographql/apollo-server/commit/5f335a527b6549219366fa44f4bea829e7359aaf"><code>5f335a5</code></a>]:
<ul>
<li><code>@​apollo/server</code><a
href="https://github.com/4"><code>@​4</code></a>.10.3</li>
</ul>
</li>
</ul>
<h2><code>@​apollo/server</code><a
href="https://github.com/4"><code>@​4</code></a>.10.3</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/apollographql/apollo-server/pull/7866">#7866</a>
<a
href="https://github.com/apollographql/apollo-server/commit/5f335a527b6549219366fa44f4bea829e7359aaf"><code>5f335a5</code></a>
Thanks <a
href="https://github.com/tninesling"><code>@​tninesling</code></a>! -
Catch errors thrown by subscription generators, and gracefully clean up
the subscription instead of crashing.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apollographql/apollo-server/blob/main/packages/server/CHANGELOG.md"><code>@​apollo/server</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>4.10.4</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/apollographql/apollo-server/pull/7871">#7871</a>
<a
href="https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7"><code>18a3827</code></a>
Thanks <a
href="https://github.com/tninesling"><code>@​tninesling</code></a>! -
Subscription heartbeats are initialized prior to awaiting subscribe().
This allows long-running setup to happen in the returned Promise without
the subscription being terminated prior to resolution.</li>
</ul>
<h2>4.10.3</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/apollographql/apollo-server/pull/7866">#7866</a>
<a
href="https://github.com/apollographql/apollo-server/commit/5f335a527b6549219366fa44f4bea829e7359aaf"><code>5f335a5</code></a>
Thanks <a
href="https://github.com/tninesling"><code>@​tninesling</code></a>! -
Catch errors thrown by subscription generators, and gracefully clean up
the subscription instead of crashing.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apollographql/apollo-server/commit/268687db591fed8293eeded1546ae2f8e6f2b6a7"><code>268687d</code></a>
Version Packages (<a
href="https://github.com/apollographql/apollo-server/tree/HEAD/packages/server/issues/7873">#7873</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7"><code>18a3827</code></a>
Eagerly start subscription heartbeats (<a
href="https://github.com/apollographql/apollo-server/tree/HEAD/packages/server/issues/7871">#7871</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-server/commit/7e6490281e10dc6c33f37613f42179ba96e6bdae"><code>7e64902</code></a>
Version Packages (<a
href="https://github.com/apollographql/apollo-server/tree/HEAD/packages/server/issues/7867">#7867</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-server/commit/5f335a527b6549219366fa44f4bea829e7359aaf"><code>5f335a5</code></a>
Handle failed subscription payloads (<a
href="https://github.com/apollographql/apollo-server/tree/HEAD/packages/server/issues/7866">#7866</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-server/commit/80afc33e717d9adf98350881cae4f3f39303c046"><code>80afc33</code></a>
Update codegen config to prevent naming collision of enum values (<a
href="https://github.com/apollographql/apollo-server/tree/HEAD/packages/server/issues/7854">#7854</a>)</li>
<li>See full diff in <a
href="https://github.com/apollographql/apollo-server/commits/@apollo/server@4.10.4/packages/server">compare
view</a></li>
</ul>
</details>
<br />

Updates `@graphql-tools/schema` from 10.0.3 to 10.0.4
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ardatan/graphql-tools/blob/master/packages/schema/CHANGELOG.md"><code>@​graphql-tools/schema</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>10.0.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/ardatan/graphql-tools/pull/6194">#6194</a>
<a
href="https://github.com/ardatan/graphql-tools/commit/73688291af0c8cb2fe550fe8c74fd8af84cb360f"><code>7368829</code></a>
Thanks <a href="https://github.com/ardatan"><code>@​ardatan</code></a>!
- Handle interface objects in a different way</p>
</li>
<li>
<p>Updated dependencies
[<a
href="https://github.com/ardatan/graphql-tools/commit/73688291af0c8cb2fe550fe8c74fd8af84cb360f"><code>7368829</code></a>,
<a
href="https://github.com/ardatan/graphql-tools/commit/e10c13a60e344b9217dc77a7cac50ec447feda7e"><code>e10c13a</code></a>]:</p>
<ul>
<li><code>@​graphql-tools/utils</code><a
href="https://github.com/10"><code>@​10</code></a>.2.1</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/17530bcb010794b2c2925a495e50b6283027e588"><code>17530bc</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema/issues/6183">#6183</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/73688291af0c8cb2fe550fe8c74fd8af84cb360f"><code>7368829</code></a>
Federation: Update Tests &amp; Interface Objects 2nd take (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/7a2526163b18f98490586883b67a6f316e79c9e6"><code>7a25261</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema/issues/5992">#5992</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/dd0d1cf8d0c8b2306873ab587f48d194baa5a41c"><code>dd0d1cf</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema/issues/5932">#5932</a>)</li>
<li>See full diff in <a
href="https://github.com/ardatan/graphql-tools/commits/@graphql-tools/schema@10.0.4/packages/schema">compare
view</a></li>
</ul>
</details>
<br />

Updates `@graphql-codegen/typed-document-node` from 5.0.6 to 5.0.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dotansimha/graphql-code-generator/releases"><code>@​graphql-codegen/typed-document-node</code>'s
releases</a>.</em></p>
<blockquote>
<h2>Release 2022-08-04T13:12:01.667Z</h2>
<h2><code>@​graphql-codegen/graphql-modules-preset</code><a
href="https://github.com/2"><code>@​2</code></a>.5.0</h2>
<h3>Minor Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/dotansimha/graphql-code-generator/pull/6796">#6796</a>
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/8b6e8e6648f2d95cc40873cfc008a545d8a9c46f"><code>8b6e8e664</code></a>
Thanks <a
href="https://github.com/kamilkisiela"><code>@​kamilkisiela</code></a>!
- Introduce requireRootResolvers flag</li>
</ul>
<h2>Release 2022-08-04T13:05:23.977Z</h2>
<p>No release notes provided.</p>
<h2>Release 2022-08-04T13:02:57.827Z</h2>
<p>No release notes provided.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typed-document-node/CHANGELOG.md"><code>@​graphql-codegen/typed-document-node</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>5.0.7</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="https://github.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e"><code>dfc5310</code></a>,
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/156cc2b9a2a5129beba121cfa987b04e29899431"><code>156cc2b</code></a>,
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e"><code>dfc5310</code></a>,
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/b49457b5f29328d2dc23c642788a2e697cb8966e"><code>b49457b</code></a>]:
<ul>
<li><code>@​graphql-codegen/plugin-helpers</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
<li><code>@​graphql-codegen/visitor-plugin-common</code><a
href="https://github.com/5"><code>@​5</code></a>.2.0</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dotansimha/graphql-code-generator/commit/21fbf0db2ba7a560aeb0aa52e9b9bf792ac94227"><code>21fbf0d</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typed-document-node/issues/9947">#9947</a>)</li>
<li>See full diff in <a
href="https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typed-document-node@5.0.7/packages/plugins/typescript/typed-document-node">compare
view</a></li>
</ul>
</details>
<br />

Updates `@graphql-codegen/typescript-operations` from 4.2.0 to 4.2.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dotansimha/graphql-code-generator/releases"><code>@​graphql-codegen/typescript-operations</code>'s
releases</a>.</em></p>
<blockquote>
<h2>Release 2022-08-04T13:12:01.667Z</h2>
<h2><code>@​graphql-codegen/graphql-modules-preset</code><a
href="https://github.com/2"><code>@​2</code></a>.5.0</h2>
<h3>Minor Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/dotansimha/graphql-code-generator/pull/6796">#6796</a>
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/8b6e8e6648f2d95cc40873cfc008a545d8a9c46f"><code>8b6e8e664</code></a>
Thanks <a
href="https://github.com/kamilkisiela"><code>@​kamilkisiela</code></a>!
- Introduce requireRootResolvers flag</li>
</ul>
<h2>Release 2022-08-04T13:05:23.977Z</h2>
<p>No release notes provided.</p>
<h2>Release 2022-08-04T13:02:57.827Z</h2>
<p>No release notes provided.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/operations/CHANGELOG.md"><code>@​graphql-codegen/typescript-operations</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>4.2.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="https://github.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e"><code>dfc5310</code></a>,
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/156cc2b9a2a5129beba121cfa987b04e29899431"><code>156cc2b</code></a>,
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/dfc5310ab476bed6deaefc608f311ff368722f7e"><code>dfc5310</code></a>,
<a
href="https://github.com/dotansimha/graphql-code-generator/commit/b49457b5f29328d2dc23c642788a2e697cb8966e"><code>b49457b</code></a>]:
<ul>
<li><code>@​graphql-codegen/plugin-helpers</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
<li><code>@​graphql-codegen/visitor-plugin-common</code><a
href="https://github.com/5"><code>@​5</code></a>.2.0</li>
<li><code>@​graphql-codegen/typescript</code><a
href="https://github.com/4"><code>@​4</code></a>.0.7</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dotansimha/graphql-code-generator/commit/21fbf0db2ba7a560aeb0aa52e9b9bf792ac94227"><code>21fbf0d</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/operations/issues/9947">#9947</a>)</li>
<li>See full diff in <a
href="https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typescript-operations@4.2.1/packages/plugins/typescript/operations">compare
view</a></li>
</ul>
</details>
<br />

Updates `@graphql-inspector/cli` from 4.0.3 to 5.0.5
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/kamilkisiela/graphql-inspector/blob/master/packages/cli/CHANGELOG.md"><code>@​graphql-inspector/cli</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>5.0.5</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/kamilkisiela/graphql-inspector/pull/2747">#2747</a>
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/9c3613806803343af8e3081ffc6fea243cea72b2"><code>9c36138</code></a>
Thanks <a
href="https://github.com/TuvalSimha"><code>@​TuvalSimha</code></a>! -
dependencies updates:
<ul>
<li>Updated dependency
<a
href="https://www.npmjs.com/package/@babel/core/v/7.24.6"><code>@babel/core@7.24.6</code>
↗︎</a> (from <code>7.22.9</code>,
in <code>dependencies</code>)</li>
</ul>
</li>
<li>Updated dependencies
[<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/9c3613806803343af8e3081ffc6fea243cea72b2"><code>9c36138</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>,
<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/77b3a2e630505ea66b26fde45b22fc10392ca108"><code>77b3a2e</code></a>]:
<ul>
<li><code>@​graphql-inspector/audit-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.5</li>
<li><code>@​graphql-inspector/code-loader</code><a
href="https://github.com/5"><code>@​5</code></a>.0.1</li>
<li><code>@​graphql-inspector/coverage-command</code><a
href="https://github.com/6"><code>@​6</code></a>.0.5</li>
<li><code>@​graphql-inspector/git-loader</code><a
href="https://github.com/5"><code>@​5</code></a>.0.1</li>
<li><code>@​graphql-inspector/github-loader</code><a
href="https://github.com/5"><code>@​5</code></a>.0.1</li>
<li><code>@​graphql-inspector/graphql-loader</code><a
href="https://github.com/5"><code>@​5</code></a>.0.1</li>
<li><code>@​graphql-inspector/json-loader</code><a
href="https://github.com/5"><code>@​5</code></a>.0.1</li>
<li><code>@​graphql-inspector/loaders</code><a
href="https://github.com/4"><code>@​4</code></a>.0.4</li>
<li><code>@​graphql-inspector/serve-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.5</li>
<li><code>@​graphql-inspector/url-loader</code><a
href="https://github.com/5"><code>@​5</code></a>.0.1</li>
<li><code>@​graphql-inspector/validate-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.5</li>
<li><code>@​graphql-inspector/diff-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.5</li>
<li><code>@​graphql-inspector/introspect-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.5</li>
<li><code>@​graphql-inspector/similar-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.5</li>
</ul>
</li>
</ul>
<h2>5.0.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
[<a
href="https://github.com/kamilkisiela/graphql-inspector/commit/12a2208748d3ef987400e298eb796e9139357a53"><code>12a2208</code></a>]:
<ul>
<li><code>@​graphql-inspector/commands</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
<li><code>@​graphql-inspector/audit-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
<li><code>@​graphql-inspector/coverage-command</code><a
href="https://github.com/6"><code>@​6</code></a>.0.4</li>
<li><code>@​graphql-inspector/diff-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
<li><code>@​graphql-inspector/docs-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
<li><code>@​graphql-inspector/introspect-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
<li><code>@​graphql-inspector/serve-command</code><a
href="https://github.com/5"><code>@​5</code></a>.0.4</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/584d43ecba9e36166dea1b565c631d70b32e1a45"><code>584d43e</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2743">#2743</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/9c3613806803343af8e3081ffc6fea243cea72b2"><code>9c36138</code></a>
Update all packages dependencies versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2747">#2747</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/6cd7341b4322a50e58bbd44b660b5ca392320b05"><code>6cd7341</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2741">#2741</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/cf83240a25b5d943812e663e039b1a2262074459"><code>cf83240</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2739">#2739</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/76a5863ad8fcbda284a8265a47674d62545f49b2"><code>76a5863</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2737">#2737</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/eca4d4f72ac42967959087755c07216f8552c620"><code>eca4d4f</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2734">#2734</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/de81e5bbe96d6e9fb09aadf78de7669f0b6b3062"><code>de81e5b</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2727">#2727</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/50874f2d35d0d5ffda133bb35bb7ce0f8cdb64c3"><code>50874f2</code></a>
Upgrade pnpm, bump Node engine and Yoga to version 5 (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2719">#2719</a>)</li>
<li><a
href="https://github.com/kamilkisiela/graphql-inspector/commit/e77738accd6406e83f4376d86e87f87ffd0effd0"><code>e77738a</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli/issues/2680">#2680</a>)</li>
<li>See full diff in <a
href="https://github.com/kamilkisiela/graphql-inspector/commits/@graphql-inspector/cli@5.0.5/packages/cli">compare
view</a></li>
</ul>
</details>
<br />

Updates `@graphql-tools/merge` from 9.0.3 to 9.0.4
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ardatan/graphql-tools/blob/master/packages/merge/CHANGELOG.md"><code>@​graphql-tools/merge</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>9.0.4</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/ardatan/graphql-tools/pull/6111">#6111</a>
<a
href="https://github.com/ardatan/graphql-tools/commit/a06dbd263ec7bfc6d50aa8faf2e35396a67b4f0b"><code>a06dbd2</code></a>
Thanks <a
href="https://github.com/lesleydreyer"><code>@​lesleydreyer</code></a>!
- Fix directive merging when directive name is inherited from object
prototype (i.e. toString)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/36913ee7839e8e632757413bd0e8fae3b0e72554"><code>36913ee</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge/issues/6113">#6113</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/a06dbd263ec7bfc6d50aa8faf2e35396a67b4f0b"><code>a06dbd2</code></a>
add changeset for previous PR 5973 (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge/issues/6111">#6111</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/b281dd65276dd9df56a41cc2dbff5139281f02f9"><code>b281dd6</code></a>
fix(stitch): handle isolated root fields in correct order (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge/issues/6107">#6107</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/c02eb60808921c86c827400169a435c329b47396"><code>c02eb60</code></a>
Add tests for merging the directives with the same name and arguments
(<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge/issues/6097">#6097</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/0b434400b6a78def37de53468ddbca46a0b0c061"><code>0b43440</code></a>
fix: check directive isNode on merge if inherited from obj (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge/issues/5973">#5973</a>)</li>
<li>See full diff in <a
href="https://github.com/ardatan/graphql-tools/commits/@graphql-tools/merge@9.0.4/packages/merge">compare
view</a></li>
</ul>
</details>
<br />

Updates `@graphql-tools/utils` from 10.1.3 to 10.2.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ardatan/graphql-tools/blob/master/packages/utils/CHANGELOG.md"><code>@​graphql-tools/utils</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>10.2.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/ardatan/graphql-tools/pull/6194">#6194</a>
<a
href="https://github.com/ardatan/graphql-tools/commit/73688291af0c8cb2fe550fe8c74fd8af84cb360f"><code>7368829</code></a>
Thanks <a href="https://github.com/ardatan"><code>@​ardatan</code></a>!
- Handle interface objects in a different way</p>
</li>
<li>
<p><a
href="https://redirect.github.com/ardatan/graphql-tools/pull/6188">#6188</a>
<a
href="https://github.com/ardatan/graphql-tools/commit/e10c13a60e344b9217dc77a7cac50ec447feda7e"><code>e10c13a</code></a>
Thanks <a href="https://github.com/ardatan"><code>@​ardatan</code></a>!
- Add <code>respectArrayLength</code> flag to <code>mergeDeep</code> so
instead of concatenating the arrays, elements of them will be merged if
they have the same length</p>
</li>
</ul>
<h2>10.2.0</h2>
<h3>Minor Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/ardatan/graphql-tools/pull/6105">#6105</a>
<a
href="https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95"><code>5567347</code></a>
Thanks <a href="https://github.com/ardatan"><code>@​ardatan</code></a>!
- Add <code>enumValueFilter</code> and <code>directiveFilter</code> to
<code>filterSchema</code></li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/ardatan/graphql-tools/pull/6105">#6105</a>
<a
href="https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95"><code>5567347</code></a>
Thanks <a href="https://github.com/ardatan"><code>@​ardatan</code></a>!
- Handle fields in unmerged types as both isolated
and non-isolated fields</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/17530bcb010794b2c2925a495e50b6283027e588"><code>17530bc</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/utils/issues/6183">#6183</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/e10c13a60e344b9217dc77a7cac50ec447feda7e"><code>e10c13a</code></a>
Federation: handle shared root fields in optimal way (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/utils/issues/6188">#6188</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/03a47b181516e17f33c84f364df9482c2d1ba502"><code>03a47b1</code></a>
fix(stitch): computed fields resolving via a root field returning an
interfac...</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/7ef2ad7681a4f8bc4a9960988927d9ab2540d726"><code>7ef2ad7</code></a>
chore(release): update monorepo packages versions (<a
href="https://github.com/ardatan/graphql-tools/tree/HEAD/packages/utils/issues/6106">#6106</a>)</li>
<li><a
href="https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95"><code>5567347</code></a>
fix(stitch): do not remove unmerged fields from both isolated and
non-isolate...</li>
<li>See full diff in <a
href="https://github.com/ardatan/graphql-tools/commits/@graphql-tools/utils@10.2.1/packages/utils">compare
view</a></li>
</ul>
</details>
<br />

Updates `graphql-codegen-typescript-validation-schema` from 0.12.1 to
0.14.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/releases">graphql-codegen-typescript-validation-schema's
releases</a>.</em></p>
<blockquote>
<h2>v0.14.1</h2>
<h2>What's Changed</h2>
<ul>
<li>added support for URI format in directive config by <a
href="https://github.com/Code-Hex"><code>@​Code-Hex</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/612">Code-Hex/graphql-codegen-typescript-validation-schema#612</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/compare/v0.14.0...v0.14.1">https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/compare/v0.14.0...v0.14.1</a></p>
<h2>v0.14.0</h2>
<p>Supported interface generation! Thanks <a
href="https://github.com/simonljus"><code>@​simonljus</code></a></p>
<h2>What's Changed</h2>
<ul>
<li>fix: argstype do not get configured prefix, suffix by <a
href="https://github.com/sschneider-ihre-pvs"><code>@​sschneider-ihre-pvs</code></a>
in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/503">Code-Hex/graphql-codegen-typescript-validation-schema#503</a></li>
<li>Add support for InterfaceTypeDefinition (resolved conflict) by <a
href="https://github.com/Code-Hex"><code>@​Code-Hex</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/609">Code-Hex/graphql-codegen-typescript-validation-schema#609</a></li>
<li>removed withInterfaceType option by <a
href="https://github.com/Code-Hex"><code>@​Code-Hex</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/610">Code-Hex/graphql-codegen-typescript-validation-schema#610</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/compare/v0.13.0...v0.14.0">https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/compare/v0.13.0...v0.14.0</a></p>
<h2>v0.13.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update dependency prettier to v3.1.1 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/526">Code-Hex/graphql-codegen-typescript-validation-schema#526</a></li>
<li>Update typescript-eslint monorepo to v6.14.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/527">Code-Hex/graphql-codegen-typescript-validation-schema#527</a></li>
<li>Update dependency yup to v1.3.3 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/531">Code-Hex/graphql-codegen-typescript-validation-schema#531</a></li>
<li>Update dependency eslint to v8.56.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/532">Code-Hex/graphql-codegen-typescript-validation-schema#532</a></li>
<li>Update typescript-eslint monorepo to v6.15.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/533">Code-Hex/graphql-codegen-typescript-validation-schema#533</a></li>
<li>Update typescript-eslint monorepo to v6.16.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/534">Code-Hex/graphql-codegen-typescript-validation-schema#534</a></li>
<li>Update typescript-eslint monorepo to v6.17.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/535">Code-Hex/graphql-codegen-typescript-validation-schema#535</a></li>
<li>Update typescript-eslint monorepo to v6.18.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/536">Code-Hex/graphql-codegen-typescript-validation-schema#536</a></li>
<li>Update typescript-eslint monorepo to v6.18.1 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/537">Code-Hex/graphql-codegen-typescript-validation-schema#537</a></li>
<li>Update dependency prettier to v3.2.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/538">Code-Hex/graphql-codegen-typescript-validation-schema#538</a></li>
<li>Update dependency prettier to v3.2.1 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/539">Code-Hex/graphql-codegen-typescript-validation-schema#539</a></li>
<li>Update dependency prettier to v3.2.2 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/540">Code-Hex/graphql-codegen-typescript-validation-schema#540</a></li>
<li>Update typescript-eslint monorepo to v6.19.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/541">Code-Hex/graphql-codegen-typescript-validation-schema#541</a></li>
<li>Update dependency prettier to v3.2.3 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/542">Code-Hex/graphql-codegen-typescript-validation-schema#542</a></li>
<li>Update dependency prettier to v3.2.4 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/543">Code-Hex/graphql-codegen-typescript-validation-schema#543</a></li>
<li>Update dependency ts-jest to v29.1.2 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/544">Code-Hex/graphql-codegen-typescript-validation-schema#544</a></li>
<li>Update typescript-eslint monorepo to v6.19.1 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/545">Code-Hex/graphql-codegen-typescript-validation-schema#545</a></li>
<li>Input objects support default values by <a
href="https://github.com/bramvanderholst"><code>@​bramvanderholst</code></a>
in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/529">Code-Hex/graphql-codegen-typescript-validation-schema#529</a></li>
<li>Replace dependency npm-run-all with npm-run-all2 5.0.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/546">Code-Hex/graphql-codegen-typescript-validation-schema#546</a></li>
<li>Update dependency npm-run-all2 to v5.0.2 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/547">Code-Hex/graphql-codegen-typescript-validation-schema#547</a></li>
<li>Update dependency npm-run-all2 to v6 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/548">Code-Hex/graphql-codegen-typescript-validation-schema#548</a></li>
<li>Update typescript-eslint monorepo to v6.20.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/549">Code-Hex/graphql-codegen-typescript-validation-schema#549</a></li>
<li>Update dependency npm-run-all2 to v6.1.2 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/550">Code-Hex/graphql-codegen-typescript-validation-schema#550</a></li>
<li>Update dependency <code>@​types/jest</code> to v29.5.12 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/551">Code-Hex/graphql-codegen-typescript-validation-schema#551</a></li>
<li>Update dependency prettier to v3.2.5 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/552">Code-Hex/graphql-codegen-typescript-validation-schema#552</a></li>
<li>Update typescript-eslint monorepo to v6.21.0 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/553">Code-Hex/graphql-codegen-typescript-validation-schema#553</a></li>
<li>Update graphqlcodegenerator monorepo by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/554">Code-Hex/graphql-codegen-typescript-validation-schema#554</a></li>
<li>Update dependency eslint-plugin-simple-import-sort to v11 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/555">Code-Hex/graphql-codegen-typescript-validation-schema#555</a></li>
<li>Update dependency eslint-plugin-simple-import-sort to v12 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/pull/556">Code-Hex/graphql-codegen-typescript-validation-schema#556</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/70e956ac501b5238f7a290ee54d479b2dd73c96a"><code>70e956a</code></a>
0.14.1</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/58b84511c94039dab5184d03391f616a15641042"><code>58b8451</code></a>
Merge pull request <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/issues/612">#612</a>
from Code-Hex/add/enum-support</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/898f82471f981780b7ac264c0bb5de2fd9c58050"><code>898f824</code></a>
updated README</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/fc60a37ff50f3a8dc0ed8d5ca21357e3ff4f8d8a"><code>fc60a37</code></a>
added support for URI format in directive config</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/190056de23385bdd27e26773f8fd4f8b7fe8a49c"><code>190056d</code></a>
0.14.0</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/d106f7c0bb9f3821f869c9b2512d50b6056497f2"><code>d106f7c</code></a>
updated first-label-interaction version</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/e17fdfdd38de66ccf6bdccbdeab3314397d3a31f"><code>e17fdfd</code></a>
Merge pull request <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/issues/610">#610</a>
from Code-Hex/remove/with-interface-type</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/7d82b8dfb536582c647c132d8da27e2d12841915"><code>7d82b8d</code></a>
removed withInterfaceType option</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/24518add70c0a0e9c96561253466465a63201153"><code>24518ad</code></a>
Merge pull request <a
href="https://redirect.github.com/Code-Hex/graphql-codegen-typescript-validation-schema/issues/609">#609</a>
from Code-Hex/issue-474</li>
<li><a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/commit/08dbfa042bf1e1af47783a2c80cd3479862853ca"><code>08dbfa0</code></a>
lint-fix</li>
<li>Additional commits viewable in <a
href="https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/compare/v0.12.1...v0.14.1">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tobias Diez <code@tobiasdiez.de>
  • Loading branch information
dependabot[bot] and tobiasdiez committed Jun 3, 2024
1 parent 8ab5dea commit 34867d8
Show file tree
Hide file tree
Showing 2 changed files with 573 additions and 804 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
"validate": "pnpm graphql:validate"
},
"dependencies": {
"@apollo/client": "^3.9.10",
"@apollo/server": "^4.10.2",
"@apollo/client": "^3.10.4",
"@apollo/server": "^4.10.4",
"@as-integrations/h3": "^1.1.6",
"@azure/communication-email": "^1.0.0",
"@graphql-tools/schema": "^10.0.3",
"@graphql-tools/schema": "^10.0.4",
"@he-tree/vue": "^2.8.2",
"@lucia-auth/adapter-prisma": "^3.0.2",
"@lucia-auth/adapter-session-unstorage": "^2.1.0",
Expand Down Expand Up @@ -91,12 +91,12 @@
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/fragment-matcher": "^5.0.0",
"@graphql-codegen/gql-tag-operations-preset": "^2.1.0",
"@graphql-codegen/typed-document-node": "^5.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typed-document-node": "^5.0.7",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@graphql-inspector/cli": "^4.0.3",
"@graphql-tools/merge": "^9.0.3",
"@graphql-tools/utils": "^10.1.3",
"@graphql-inspector/cli": "^5.0.5",
"@graphql-tools/merge": "^9.0.4",
"@graphql-tools/utils": "^10.2.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@nuxt/content": "^2.12.1",
"@nuxt/kit": "^3.11.2",
Expand Down
Loading

0 comments on commit 34867d8

Please sign in to comment.