fix(deps): update dependency @apollo/client to v4 #4

Closed
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 wants to merge 1 commits from renovate/major-apollo-graphql-packages into main
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-22 16:55:30 +00:00 (Migrated from gitlab.com)

This MR contains the following updates:

Package Change Age Confidence
@apollo/client (source) 3.14.04.0.11 age confidence

Release Notes

apollographql/apollo-client (@​apollo/client)

v4.0.11

Compare Source

Patch Changes
  • #​13050 8020829 Thanks @​phryneas! - Replace usage of findLast with more backwards-compatible methods.

  • #​13049 05638de Thanks @​phryneas! - Fixes an issue where queries starting with skipToken or lazy queries from useLazyQuery were included in client.refetchQueries() before they had been executed for the first time. While generally queries with a standby fetchPolicy should be included in refetch, these queries never had variables passed in, so they should be excluded until they have run once and received their actual variables.

    These queries are now properly excluded from refetch operations until after their initial execution.

    This change adds a new hidden option to client.watchQuery, [variablesUnknownSymbol], which may be set true for queries starting with a fetchPolicy of standby. It will only be applied when creating the ObservableQuery instance and cannot be changed later. This flag indicates that the query's variables are not yet known, and thus it should be excluded from refetch operations until they are.
    This option is not meant for everyday use and is intended for framework integrations only.

v4.0.10

Compare Source

Patch Changes

v4.0.9

Compare Source

Patch Changes
  • #​12993 8f3bc9b Thanks @​jerelmiller! - Fix an issue where switching from options with variables to skipToken with useSuspenseQuery and useBackgroundQuery would create a new ObservableQuery. This could cause unintended refetches where variables were absent in the request when the query was referenced with refetchQueries.

v4.0.8

Compare Source

Patch Changes

v4.0.7

Compare Source

Patch Changes

v4.0.6

Compare Source

Patch Changes
  • #​12937 3b0d89b Thanks @​phryneas! - Fix a problem with fetchMore where the loading state wouldn't reset if the result wouldn't result in a data update.

v4.0.5

Compare Source

Patch Changes

v4.0.4

Compare Source

Patch Changes
  • #​12892 db8a04b Thanks @​jerelmiller! - Prevent unhandled rejections from the promise returned by calling the mutate function from the useMutation hook.

  • #​12899 5352c12 Thanks @​phryneas! - Fix an issue when invariant is called by external libraries when no dev error message handler is loaded.

  • #​12895 71f2517 Thanks @​jerelmiller! - Support skipToken with useQuery to provide a more type-safe way to skip query execution.

    import { skipToken, useQuery } from "@​apollo/client/react";
    
    // Use `skipToken` in place of `skip: true` for better type safety
    // for required variables
    const { data } = useQuery(QUERY, id ? { variables: { id } } : skipToken);
    

    Note: this change is provided as a patch within the 4.0 minor version because the changes to TypeScript validation with required variables in version 4.0 made using the skip option more difficult.

  • #​12900 c0d5be7 Thanks @​phryneas! - Use named export equal instead of default from "@​wry/equality"

v4.0.3

Compare Source

Patch Changes

v4.0.2

Compare Source

Patch Changes

v4.0.1

Compare Source

Patch Changes
  • #​13050 8020829 Thanks @​phryneas! - Replace usage of findLast with more backwards-compatible methods.

  • #​13049 05638de Thanks @​phryneas! - Fixes an issue where queries starting with skipToken or lazy queries from useLazyQuery were included in client.refetchQueries() before they had been executed for the first time. While generally queries with a standby fetchPolicy should be included in refetch, these queries never had variables passed in, so they should be excluded until they have run once and received their actual variables.

    These queries are now properly excluded from refetch operations until after their initial execution.

    This change adds a new hidden option to client.watchQuery, [variablesUnknownSymbol], which may be set true for queries starting with a fetchPolicy of standby. It will only be applied when creating the ObservableQuery instance and cannot be changed later. This flag indicates that the query's variables are not yet known, and thus it should be excluded from refetch operations until they are.
    This option is not meant for everyday use and is intended for framework integrations only.

v4.0.0

Compare Source


Configuration

📅 Schedule: 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 MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

This MR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@apollo/client](https://www.apollographql.com/docs/react/) ([source](https://github.com/apollographql/apollo-client)) | [`3.14.0` → `4.0.11`](https://renovatebot.com/diffs/npm/@apollo%2fclient/3.14.0/4.0.11) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@apollo%2fclient/4.0.11?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@apollo%2fclient/3.14.0/4.0.11?slim=true) | --- ### Release Notes <details> <summary>apollographql/apollo-client (@&#8203;apollo/client)</summary> ### [`v4.0.11`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#4011) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.10...@apollo/client@4.0.11) ##### Patch Changes - [#&#8203;13050](https://github.com/apollographql/apollo-client/pull/13050) [`8020829`](https://github.com/apollographql/apollo-client/commit/8020829d8a3bdb3219a37e8d1f7b89179f721037) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Replace usage of `findLast` with more backwards-compatible methods. - [#&#8203;13049](https://github.com/apollographql/apollo-client/pull/13049) [`05638de`](https://github.com/apollographql/apollo-client/commit/05638deaf598c5bf5d03b82d7deaf57468546229) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Fixes an issue where queries starting with `skipToken` or lazy queries from `useLazyQuery` were included in `client.refetchQueries()` before they had been executed for the first time. While generally queries with a `standby` `fetchPolicy` should be included in refetch, these queries never had `variables` passed in, so they should be excluded until they have run once and received their actual variables. These queries are now properly excluded from refetch operations until after their initial execution. This change adds a new hidden option to `client.watchQuery`, `[variablesUnknownSymbol]`, which may be set `true` for queries starting with a `fetchPolicy` of `standby`. It will only be applied when creating the `ObservableQuery` instance and cannot be changed later. This flag indicates that the query's variables are not yet known, and thus it should be excluded from refetch operations until they are. **This option is not meant for everyday use and is intended for framework integrations only.** ### [`v4.0.10`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#4010) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.9...@apollo/client@4.0.10) ##### Patch Changes - [#&#8203;13045](https://github.com/apollographql/apollo-client/pull/13045) [`af4acdc`](https://github.com/apollographql/apollo-client/commit/af4acdc88bd3bac0d697ab300816241e4065842c) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Fix memory leak [#&#8203;13036](https://github.com/apollographql/apollo-client/issues/13036) ### [`v4.0.9`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#409) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.8...@apollo/client@4.0.9) ##### Patch Changes - [#&#8203;12993](https://github.com/apollographql/apollo-client/pull/12993) [`8f3bc9b`](https://github.com/apollographql/apollo-client/commit/8f3bc9b7253a737062dc0d652cd4f8b354f68ccc) Thanks [@&#8203;jerelmiller](https://github.com/jerelmiller)! - Fix an issue where switching from options with `variables` to `skipToken` with `useSuspenseQuery` and `useBackgroundQuery` would create a new `ObservableQuery`. This could cause unintended refetches where `variables` were absent in the request when the query was referenced with `refetchQueries`. ### [`v4.0.8`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#408) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.7...@apollo/client@4.0.8) ##### Patch Changes - [#&#8203;12983](https://github.com/apollographql/apollo-client/pull/12983) [`f6d0efa`](https://github.com/apollographql/apollo-client/commit/f6d0efac4d99375c67255aee6d9b2981753b6f55) Thanks [@&#8203;CarsonF](https://github.com/CarsonF)! - Fix cache.modify() mapping readonly arrays to singular reference ### [`v4.0.7`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#407) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.6...@apollo/client@4.0.7) ##### Patch Changes - [#&#8203;12950](https://github.com/apollographql/apollo-client/pull/12950) [`5b4f36a`](https://github.com/apollographql/apollo-client/commit/5b4f36a2b249d15e2e8165bd32d9b2fca7e70217) Thanks [@&#8203;jerelmiller](https://github.com/jerelmiller)! - Don't send `operationType` in the payload sent by `GraphQLWsLink`. ### [`v4.0.6`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#406) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.5...@apollo/client@4.0.6) ##### Patch Changes - [#&#8203;12937](https://github.com/apollographql/apollo-client/pull/12937) [`3b0d89b`](https://github.com/apollographql/apollo-client/commit/3b0d89bc9dde3eaee9ddf0aec387da43fe71abc0) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Fix a problem with `fetchMore` where the loading state wouldn't reset if the result wouldn't result in a data update. ### [`v4.0.5`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#405) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.4...@apollo/client@4.0.5) ##### Patch Changes - [#&#8203;12920](https://github.com/apollographql/apollo-client/pull/12920) [`e2fc385`](https://github.com/apollographql/apollo-client/commit/e2fc3850ddb2aa756fc44420390ae357daf31948) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Fix an invariance type error in the `MockedResponse` type. ### [`v4.0.4`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#404) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.3...@apollo/client@4.0.4) ##### Patch Changes - [#&#8203;12892](https://github.com/apollographql/apollo-client/pull/12892) [`db8a04b`](https://github.com/apollographql/apollo-client/commit/db8a04b193c157d57d6fe0f187b1892afdda1b7d) Thanks [@&#8203;jerelmiller](https://github.com/jerelmiller)! - Prevent unhandled rejections from the promise returned by calling the `mutate` function from the `useMutation` hook. - [#&#8203;12899](https://github.com/apollographql/apollo-client/pull/12899) [`5352c12`](https://github.com/apollographql/apollo-client/commit/5352c1208e19c93678fef7860a1a87841653eb64) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Fix an issue when `invariant` is called by external libraries when no dev error message handler is loaded. - [#&#8203;12895](https://github.com/apollographql/apollo-client/pull/12895) [`71f2517`](https://github.com/apollographql/apollo-client/commit/71f2517132a34563a14934f3971666b3691710f9) Thanks [@&#8203;jerelmiller](https://github.com/jerelmiller)! - Support `skipToken` with `useQuery` to provide a more type-safe way to skip query execution. ```ts import { skipToken, useQuery } from "@&#8203;apollo/client/react"; // Use `skipToken` in place of `skip: true` for better type safety // for required variables const { data } = useQuery(QUERY, id ? { variables: { id } } : skipToken); ``` Note: this change is provided as a patch within the 4.0 minor version because the changes to TypeScript validation with required variables in version 4.0 made using the `skip` option more difficult. - [#&#8203;12900](https://github.com/apollographql/apollo-client/pull/12900) [`c0d5be7`](https://github.com/apollographql/apollo-client/commit/c0d5be7cbbb1b1f7771962eb2ae0e173de743265) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Use named export `equal` instead of default from `"@&#8203;wry/equality"` ### [`v4.0.3`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#403) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.2...@apollo/client@4.0.3) ##### Patch Changes - [#&#8203;12887](https://github.com/apollographql/apollo-client/pull/12887) [`6f6ca47`](https://github.com/apollographql/apollo-client/commit/6f6ca47e9f5e80ee9c98fca2639b5cba6317fbbf) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Fix accidental deep re-export from `/react` out of `/react/internals` - [#&#8203;12890](https://github.com/apollographql/apollo-client/pull/12890) [`019b422`](https://github.com/apollographql/apollo-client/commit/019b4224147a5a8709de54c4474e126619dd2469) Thanks [@&#8203;jerelmiller](https://github.com/jerelmiller)! - Ensure the `variables` option for `useMutation` provides proper IntelliSense suggestions. ### [`v4.0.2`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#402) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.1...@apollo/client@4.0.2) ##### Patch Changes - [#&#8203;12880](https://github.com/apollographql/apollo-client/pull/12880) [`56fac52`](https://github.com/apollographql/apollo-client/commit/56fac522549eaed5494097dc0098ea7a558382a0) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - restore `getMemoryInternals` access in dev builds ### [`v4.0.1`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#4011) [Compare Source](https://github.com/apollographql/apollo-client/compare/@apollo/client@4.0.0...@apollo/client@4.0.1) ##### Patch Changes - [#&#8203;13050](https://github.com/apollographql/apollo-client/pull/13050) [`8020829`](https://github.com/apollographql/apollo-client/commit/8020829d8a3bdb3219a37e8d1f7b89179f721037) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Replace usage of `findLast` with more backwards-compatible methods. - [#&#8203;13049](https://github.com/apollographql/apollo-client/pull/13049) [`05638de`](https://github.com/apollographql/apollo-client/commit/05638deaf598c5bf5d03b82d7deaf57468546229) Thanks [@&#8203;phryneas](https://github.com/phryneas)! - Fixes an issue where queries starting with `skipToken` or lazy queries from `useLazyQuery` were included in `client.refetchQueries()` before they had been executed for the first time. While generally queries with a `standby` `fetchPolicy` should be included in refetch, these queries never had `variables` passed in, so they should be excluded until they have run once and received their actual variables. These queries are now properly excluded from refetch operations until after their initial execution. This change adds a new hidden option to `client.watchQuery`, `[variablesUnknownSymbol]`, which may be set `true` for queries starting with a `fetchPolicy` of `standby`. It will only be applied when creating the `ObservableQuery` instance and cannot be changed later. This flag indicates that the query's variables are not yet known, and thus it should be excluded from refetch operations until they are. **This option is not meant for everyday use and is intended for framework integrations only.** ### [`v4.0.0`](https://github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#400) [Compare Source](https://github.com/apollographql/apollo-client/compare/v3.14.0...@apollo/client@4.0.0) </details> --- ### Configuration 📅 **Schedule**: 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 MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS4zIiwidXBkYXRlZEluVmVyIjoiNDIuNjAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-22 16:55:31 +00:00 (Migrated from gitlab.com)

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this MR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this MR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @vue/apollo-composable@4.2.2
npm error Found: @apollo/client@4.0.11
npm error node_modules/@apollo/client
npm error   @apollo/client@"4.0.11" from the root project
npm error
npm error Could not resolve dependency:
npm error peer @apollo/client@"^3.4.13" from @vue/apollo-composable@4.2.2
npm error node_modules/@vue/apollo-composable
npm error   @vue/apollo-composable@"4.2.2" from the root project
npm error
npm error Conflicting peer dependency: @apollo/client@3.14.0
npm error node_modules/@apollo/client
npm error   peer @apollo/client@"^3.4.13" from @vue/apollo-composable@4.2.2
npm error   node_modules/@vue/apollo-composable
npm error     @vue/apollo-composable@"4.2.2" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /builds/unboundsoftware/renovate/renovate/cache/others/npm/_logs/2025-12-31T13_54_42_440Z-eresolve-report.txt
npm error A complete log of this run can be found in: /builds/unboundsoftware/renovate/renovate/cache/others/npm/_logs/2025-12-31T13_54_42_440Z-debug-0.log

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this MR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this MR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: package-lock.json ``` npm warn Unknown env config "store". This will stop working in the next major version of npm. npm error code ERESOLVE npm error ERESOLVE could not resolve npm error npm error While resolving: @vue/apollo-composable@4.2.2 npm error Found: @apollo/client@4.0.11 npm error node_modules/@apollo/client npm error @apollo/client@"4.0.11" from the root project npm error npm error Could not resolve dependency: npm error peer @apollo/client@"^3.4.13" from @vue/apollo-composable@4.2.2 npm error node_modules/@vue/apollo-composable npm error @vue/apollo-composable@"4.2.2" from the root project npm error npm error Conflicting peer dependency: @apollo/client@3.14.0 npm error node_modules/@apollo/client npm error peer @apollo/client@"^3.4.13" from @vue/apollo-composable@4.2.2 npm error node_modules/@vue/apollo-composable npm error @vue/apollo-composable@"4.2.2" from the root project npm error npm error Fix the upstream dependency conflict, or retry npm error this command with --force or --legacy-peer-deps npm error to accept an incorrect (and potentially broken) dependency resolution. npm error npm error npm error For a full report see: npm error /builds/unboundsoftware/renovate/renovate/cache/others/npm/_logs/2025-12-31T13_54_42_440Z-eresolve-report.txt npm error A complete log of this run can be found in: /builds/unboundsoftware/renovate/renovate/cache/others/npm/_logs/2025-12-31T13_54_42_440Z-debug-0.log ```
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-22 16:55:34 +00:00 (Migrated from gitlab.com)

mentioned in issue #1

mentioned in issue #1
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-22 17:54:58 +00:00 (Migrated from gitlab.com)

added 3 commits

  • 422ec097...535a5167 - 2 commits from branch main
  • 834b5585 - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 3 commits <ul><li>422ec097...535a5167 - 2 commits from branch <code>main</code></li><li>834b5585 - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1575045177&start_sha=422ec097d656d331e7b8432f1b6b3f6913f074b8)
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-22 20:54:44 +00:00 (Migrated from gitlab.com)

added 7 commits

  • 834b5585...9e3f2a33 - 6 commits from branch main
  • af556d67 - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 7 commits <ul><li>834b5585...9e3f2a33 - 6 commits from branch <code>main</code></li><li>af556d67 - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1575069149&start_sha=834b55856500c4f1a2c8d9092aa115533ac82f5a)
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-22 20:54:58 +00:00 (Migrated from gitlab.com)

changed the description

changed the description
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-28 09:56:10 +00:00 (Migrated from gitlab.com)

changed the description

changed the description
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-11-28 13:54:49 +00:00 (Migrated from gitlab.com)

added 31 commits

  • af556d67...3ff467be - 30 commits from branch main
  • c7b49294 - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 31 commits <ul><li>af556d67...3ff467be - 30 commits from branch <code>main</code></li><li>c7b49294 - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1582283418&start_sha=af556d674603a43e27c292408e49060cf1e354f3)
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-10 08:55:06 +00:00 (Migrated from gitlab.com)

added 23 commits

  • c7b49294...6fe27798 - 22 commits from branch main
  • 252eb3de - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 23 commits <ul><li>c7b49294...6fe27798 - 22 commits from branch <code>main</code></li><li>252eb3de - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1594971327&start_sha=c7b49294f1da72e89c0113880c0315497cb3ce46)
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-10 08:55:20 +00:00 (Migrated from gitlab.com)

changed the description

changed the description
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-12 13:56:34 +00:00 (Migrated from gitlab.com)

added 7 commits

  • 252eb3de...e9666dbd - 6 commits from branch main
  • 7abda76f - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 7 commits <ul><li>252eb3de...e9666dbd - 6 commits from branch <code>main</code></li><li>7abda76f - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1598630928&start_sha=252eb3de04108762265938bd3f7758b9fdcffb95)
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-16 17:55:10 +00:00 (Migrated from gitlab.com)

added 9 commits

  • 7abda76f...f08934c6 - 8 commits from branch main
  • 45b62f4d - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 9 commits <ul><li>7abda76f...f08934c6 - 8 commits from branch <code>main</code></li><li>45b62f4d - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1602491964&start_sha=7abda76ff27a2d07781794ad10a875479c8c47a3)
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-16 17:55:25 +00:00 (Migrated from gitlab.com)

changed the description

changed the description
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-18 07:54:41 +00:00 (Migrated from gitlab.com)

changed the description

changed the description
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-30 10:54:34 +00:00 (Migrated from gitlab.com)

added 13 commits

  • 45b62f4d...5fa8c054 - 12 commits from branch main
  • 57c2beb5 - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 13 commits <ul><li>45b62f4d...5fa8c054 - 12 commits from branch <code>main</code></li><li>57c2beb5 - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1612599772&start_sha=45b62f4d338eee88a2bb9ab0eca2266eea922722)
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 commented 2025-12-30 15:55:16 +00:00 (Migrated from gitlab.com)

added 3 commits

  • 57c2beb5...a5320a5b - 2 commits from branch main
  • 49467822 - fix(deps): update dependency @apollo/client to v4

Compare with previous version

added 3 commits <ul><li>57c2beb5...a5320a5b - 2 commits from branch <code>main</code></li><li>49467822 - fix(deps): update dependency @apollo/client to v4</li></ul> [Compare with previous version](/unboundsoftware/schemas-app/-/merge_requests/3/diffs?diff_id=1612853962&start_sha=57c2beb5ec588b9e55dc9f19fef7c88dd235ee86)
argoyle closed this pull request 2026-03-29 18:24:36 +00:00
argoyle deleted branch renovate/major-apollo-graphql-packages 2026-03-29 18:24:40 +00:00

Pull request closed

Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: unboundsoftware/schemas-app#4