Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

[Snyk] Upgrade @apollo/client from 3.5.10 to 3.7.16 #57

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

peterleiva
Copy link
Owner

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade @apollo/client from 3.5.10 to 3.7.16.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 61 versions ahead of your current version.
  • The recommended version was released a month ago, on 2023-06-20.
Release notes
Package name: @apollo/client
  • 3.7.16 - 2023-06-20

    Patch Changes

    • #10806 cb1540504 Thanks @ phryneas! - Fix a bug in PersistedQueryLink that would cause it to permanently skip persisted queries after a 400 or 500 status code.

    • #10807 b32369592 Thanks @ phryneas! - PersistedQueryLink will now also check for error codes in extensions.

    • #10982 b9be7a814 Thanks @ sdeleur-sc! - Update relayStylePagination to avoid populating startCursor when only a single cursor is present under the edges field. Use that cursor only as the endCursor.

    • #10962 772cfa3cb Thanks @ jerelmiller! - Remove useGETForQueries option in BatchHttpLink.Options type since it is not supported.

    Potentially breaking change in PersistedQueryLink

    Previously, if the PersistedQueryLink encountered a single 400 or 500 error, it would stop sending any persisted queries in the future. This allowed you to use the link even if a server had no support for persisted queries.

    We have decided to change this behavior, so now the PersistedQueryLink will only stop trying to send query hashes if the server responds with a PERSISTED_QUERY_NOT_SUPPORTED error code as it was unclear whether a 400 or 500 status code was in fact because the server did not support persisted queries.

    If you relied on the previous behaviour, maybe because you were communicating with a server that might or might not support persisted queries, but would return with a different kind of error, you can use the disable option callback to override this behavior like this:

    createPersistedQueryLink({
      // ... other options ...
      disable({ operation }){
        const { response } = operation.getContext();
        return (
          response &&
          response.status &&
          (response.status === 400 || response.status === 500)
        );
      }
    })

    Alternatively, consider removing the link entirely when your server does not support persisted queries.

  • 3.7.15 - 2023-05-26

    Patch Changes

    • #10891 ab42a5c08 Thanks @ laverdet! - Fixes a bug in how multipart responses are read when using @ defer. When reading a multipart body, HttpLink no longer attempts to parse the boundary (e.g. "---" or other boundary string) within the response data itself, only when reading the beginning of each mulitpart chunked message.

    • #10789 23a4e1578 Thanks @ phryneas! - Fix a bug where other fields could be aliased to __typename or id, in which case an incoming result would be merged into the wrong cache entry.

  • 3.7.14 - 2023-05-03

    Patch Changes

    • #10764 1b0a61fe5 Thanks @ phryneas! - Deprecate useFragment returnPartialData option

    • #10810 a6252774f Thanks @ dleavitt! - Fix type signature of ServerError.

      In <3.7 HttpLink and BatchHttpLink would return a ServerError.message of e.g. "Unexpected token 'E', \"Error! Foo bar\" is not valid JSON" and a ServerError.result of undefined in the case where a server returned a >= 300 response code with a response body containing a string that could not be parsed as JSON.

      In >=3.7, message became e.g. Response not successful: Received status code 302 and result became the string from the response body, however the type in ServerError.result was not updated to include the string type, which is now properly reflected.

  • 3.7.13 - 2023-04-27

    Patch Changes

    • #10805 a5503666c Thanks @ phryneas! - Fix a potential memory leak in SSR scenarios when many persistedQuery instances were created over time.

    • #10718 577c68bdd Thanks @ Hsifnus! - Delay Concast subscription teardown slightly in useSubscription to prevent unexpected Concast teardown when one useSubscription hook tears down its in-flight Concast subscription immediately followed by another useSubscription hook reusing and subscribing to that same Concast

  • 3.7.12 - 2023-04-12

    Patch Changes

  • 3.7.11 - 2023-03-31

    Patch Changes

    • #10586 4175af594 Thanks @ alessbell! - Improve WebSocket error handling for generic Event received on error. For more information see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/error_event.

    • #10411 152baac34 Thanks @ lovasoa! - Simplify error message generation and make 'undefined' an impossible message string.

    • #10592 cdb98ae08 Thanks @ alessbell! - Adds support for multipart subscriptions in HttpLink.

    • #10698 38508a251 Thanks @ jerelmiller! - Changes the behavior of useLazyQuery introduced in #10427 where unmounting a component before a query was resolved would reject the promise with an abort error. Instead, the promise will now resolve naturally with the result from the request.

      Other notable fixes:

      • Kicking off multiple requests in parallel with the execution function will now ensure each returned promise is resolved with the data from its request. Previously, each promise was resolved with data from the last execution.
      • Re-rendering useLazyQuery with a different query document will now ensure the execution function uses the updated query document. Previously, only the query document rendered the first time would be used for the request.
    • #10660 364bee98f Thanks @ alessbell! - Upgrades TypeScript to v5. This change is fully backward-compatible and transparent to users.

    • #10597 8fb9d190d Thanks @ phryneas! - Fix a bug where an incoming cache update could prevent future updates from the active link.

    • #10629 02605bb3c Thanks @ phryneas! - useQuery: delay unsubscribe to fix race conditions

  • 3.7.10 - 2023-03-02

    Patch Changes

    • #9438 52a9c8ea1 Thanks @ dciesielkiewicz! - Ensure the client option passed to useMutation's execute function is used when provided. Previously this option was ignored.

    • #9124 975b923c0 Thanks @ andrebrantom! - Make ApolloClient.writeQuery and ApolloClient.writeFragment behave more like cache.writeQuery and cache.writeFragment by returning the reference returned by the cache.

  • 3.7.9 - 2023-02-17

    Patch Changes

    • #10560 a561ecf43 Thanks @ benjamn! - Keep __typename fragment when it does not contain @ client directive and strip out inline fragments which use a @ client directive. Thanks @ Gazler and @ mtsmfm!

    • #10560 251a12806 Thanks @ benjamn! - Refactor removeDirectivesFromDocument to fix AST ordering sensitivities and avoid 1/3 AST traversals, potentially improving performance for large queries

  • 3.7.8 - 2023-02-15

    Patch Changes

    • #7555 45562d6fa Thanks @ TheCeloReis! - Adds TVariables generic to GraphQLRequest and MockedResponse interfaces.

    • #10526 1d13de4f1 Thanks @ benjamn! - Tolerate undefined concast.sources if complete called earlier than concast.start

    • #10497 8a883d8a1 Thanks @ nevir! - Update SingleExecutionResult and IncrementalPayload's data types such that they no longer include undefined, which was not a valid runtime value, to fix errors when TypeScript's exactOptionalPropertyTypes is enabled.

  • 3.7.7 - 2023-02-03
  • 3.7.6 - 2023-01-31
  • 3.7.5 - 2023-01-24
  • 3.7.4 - 2023-01-13
  • 3.7.3 - 2022-12-15
  • 3.7.2 - 2022-12-06
  • 3.7.1 - 2022-10-20
  • 3.7.0 - 2022-09-30
  • 3.7.0-rc.0 - 2022-09-21
  • 3.7.0-beta.8 - 2022-09-21
  • 3.7.0-beta.7 - 2022-09-08
  • 3.7.0-beta.6 - 2022-06-27
  • 3.7.0-beta.5 - 2022-06-10
  • 3.7.0-beta.4 - 2022-06-10
  • 3.7.0-beta.3 - 2022-06-07
  • 3.7.0-beta.2 - 2022-06-07
  • 3.7.0-beta.1 - 2022-05-26
  • 3.7.0-beta.0 - 2022-05-25
  • 3.7.0-alpha.6 - 2022-05-19
  • 3.7.0-alpha.5 - 2022-05-16
  • 3.7.0-alpha.4 - 2022-05-13
  • 3.7.0-alpha.3 - 2022-05-09
  • 3.7.0-alpha.2 - 2022-05-03
  • 3.7.0-alpha.1 - 2022-05-03
  • 3.7.0-alpha.0 - 2022-04-27
  • 3.6.10 - 2022-09-29
  • 3.6.9 - 2022-06-21
  • 3.6.8 - 2022-06-10
  • 3.6.7 - 2022-06-10
  • 3.6.6 - 2022-05-26
  • 3.6.5 - 2022-05-23
  • 3.6.4 - 2022-05-16
  • 3.6.3 - 2022-05-05
  • 3.6.2 - 2022-05-03
  • 3.6.1 - 2022-04-28
  • 3.6.0 - 2022-04-26
  • 3.6.0-rc.1 - 2022-04-19
  • 3.6.0-rc.0 - 2022-04-18
  • 3.6.0-beta.13 - 2022-04-14
  • 3.6.0-beta.12 - 2022-04-11
  • 3.6.0-beta.11 - 2022-04-05
  • 3.6.0-beta.10 - 2022-03-29
  • 3.6.0-beta.9 - 2022-03-10
  • 3.6.0-beta.8 - 2022-03-10
  • 3.6.0-beta.7 - 2022-03-10
  • 3.6.0-beta.6 - 2022-02-15
  • 3.6.0-beta.5 - 2022-02-04
  • 3.6.0-beta.4 - 2022-02-03
  • 3.6.0-beta.3 - 2021-11-23
  • 3.6.0-beta.2 - 2021-11-22
  • 3.6.0-beta.1 - 2021-11-16
  • 3.6.0-beta.0 - 2021-11-16
  • 3.5.10 - 2022-02-24
from @apollo/client GitHub release notes
Commit messages
Package name: @apollo/client
  • 2e59045 Version Packages (#10965)
  • e9daa02 Add 3.9 to roadmap (#10996)
  • cb15405 `PersistedQueryLink`: do not permanently skip persisted queries after a 400 or 500 status code (#10806)
  • f26ff2e renovate: add package groups (#10803)
  • b9be7a8 Don't set startCursor in relayStylePagination when only one cursor is present (#10982)
  • 05f4d6d chore: make tag name dynamic in postpublish message for prereleases (#10981)
  • b323695 PersistedQueryLink: also check for extension error codes (#10807)
  • 772cfa3 Remove `useGETForQueries` option in `BatchHttpLink.Options` (#10962)
  • a1dac63 chore(deps): update dependency @ typescript-eslint/parser to v5.59.9 (#10946)
  • 582d063 chore(deps): update dependency eslint to v8.42.0 (#10948)
  • 44f753f chore(deps): update dependency terser to v5.17.7 (#10947)
  • 2594440 chore(deps): update dependency @ typescript-eslint/eslint-plugin to v5.59.8 (#10945)
  • 53347d1 chore(deps): update dependency @ types/react to v18.2.8 (#10944)
  • c74d884 chore(deps): update dependency @ types/jest to v29.5.2 (#10942)
  • c10ff18 chore(deps): update dependency @ babel/parser to v7.22.4 (#10941)
  • 720bc42 chore(deps): update dependency @ types/node to v20.2.5 (#10921)
  • 3c29d4d chore(deps): update dependency @ types/react to v18.2.7 (#10922)
  • 94c636c chore(deps): update dependency @ types/lodash to v4.14.195 (#10920)
  • bb8ae9f chore(deps): update dependency @ typescript-eslint/eslint-plugin to v5.59.7 (#10923)
  • e99d23d chore(deps): update dependency terser to v5.17.6 (#10924)
  • 2e189c8 chore(deps): update dependency @ babel/parser to v7.22.3 (#10925)
  • 7b30a32 chore(deps): update dependency @ graphql-tools/schema to v10 (#10926)
  • 5c78e23 2023-05-30 Roadmap update
  • 249076f Add `errors` docs page (#10909)

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@vercel
Copy link

vercel bot commented Jul 17, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
community ❌ Failed (Inspect) Jul 17, 2023 5:50pm

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants