Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(frontend): update dependency @apollo/client to v3.7.15 - autoclosed #292

Conversation

plural-renovate[bot]
Copy link
Contributor

@plural-renovate plural-renovate bot commented Feb 16, 2023

This PR contains the following updates:

Package Type Update Change
@apollo/client (source) dependencies patch 3.7.1 -> 3.7.15

Release Notes

apollographql/apollo-client

v3.7.15

Compare Source

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.

v3.7.14

Compare Source

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.

v3.7.13

Compare Source

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

v3.7.12

Compare Source

Patch Changes

v3.7.11

Compare Source

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

v3.7.10

Compare Source

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.

v3.7.9

Compare Source

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

v3.7.8

Compare Source

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.

v3.7.7

Compare Source

Patch Changes
  • #​10502 315faf9ca Thanks @​jerelmiller! - Log a warning to the console when a mock passed to MockedProvider or MockLink cannot be matched to a query during a test. This makes it easier to debug user errors in the mock setup, such as typos, especially if the query under test is using an errorPolicy set to ignore, which makes it difficult to know that a match did not occur.

  • #​10499 9e54f5dfa Thanks @​phryneas! - Allow the execution function returned by useLazyQuery to change the query.

  • #​10362 14a56b105 Thanks @​mccraveiro! - Fix error when server returns an error and we are also querying for a local field

v3.7.6

Compare Source

Patch Changes
  • #​10470 47435e879 Thanks @​alessbell! - Bumps TypeScript to 4.9.4 (previously 4.7.4) and updates types to account for changes in TypeScript 4.8 by propagating contstraints on generic types. Technically this makes some types stricter as attempting to pass null|undefined into certain functions is now disallowed by TypeScript, but these were never expected runtime values in the first place.
    This should only affect you if you are wrapping functions provided by Apollo Client with your own abstractions that pass in their generics as type arguments, in which case you might get an error like error TS2344: Type 'YourGenericType' does not satisfy the constraint 'OperationVariables'. In that case, make sure that YourGenericType is restricted to a type that only accepts objects via extends, like Record<string, any> or @apollo/client's OperationVariables:

    import {
      QueryHookOptions,
      QueryResult,
      useQuery,
    + OperationVariables,
    } from '@&#8203;apollo/client';
    - export function useWrappedQuery<T, TVariables>(
    + export function useWrappedQuery<T, TVariables extends OperationVariables>(
        query: DocumentNode,
        queryOptions: QueryHookOptions<T, TVariables>
      ): QueryResult<T, TVariables> {
        const [execute, result] = useQuery<T, TVariables>(query);
      }
  • #​10408 55ffafc58 Thanks @​zlrlo! - fix: modify BatchHttpLink to have a separate timer for each different batch key

  • #​9573 4a4f48dda Thanks @​vladar! - Improve performance of local resolvers by only executing selection sets that contain an @client directive. Previously, local resolvers were executed even when the field did not contain @client. While the result was properly discarded, the unncessary work could negatively affect query performance, sometimes signficantly.

v3.7.5

Compare Source

Patch Changes

v3.7.4

Compare Source

Patch Changes

v3.7.3

Compare Source

Patch Changes
  • #​10334 7d923939d Thanks @​jerelmiller! - Better handle deferred queries that have cached or partial cached data for them

  • #​10368 46b58e976 Thanks @​alessbell! - Fix: unblocks support for defer in mutations

    If the @defer directive is present in the document passed to mutate, the Promise will resolve with the final merged data after the last multipart chunk has arrived in the response.

v3.7.2

Compare Source

Patch Changes

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

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


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

@plural-renovate plural-renovate bot added dependencies Pull requests that update a dependency file frontend Changes related to the frontend labels Feb 16, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Feb 16, 2023

Visit the preview URL for this PR (updated for commit b65d60c):

https://pluralsh-console--pr292-renovate-frontend-pa-acecc9di.web.app

(expires Wed, 10 May 2023 21:58:05 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Sign: dd1ffa0705acc6ef7d6db370e6bd6fc390e945ce

@plural-renovate plural-renovate bot force-pushed the renovate/frontend/patch-apollo-graphql-packages branch from d5f7305 to e6b3eec Compare February 21, 2023 00:19
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.8 fix(frontend): update dependency @apollo/client to v3.7.9 Feb 21, 2023
@plural-renovate plural-renovate bot force-pushed the renovate/frontend/patch-apollo-graphql-packages branch from e6b3eec to b34ad95 Compare March 7, 2023 08:08
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.9 fix(frontend): update dependency @apollo/client to v3.7.10 Mar 7, 2023
@plural-renovate plural-renovate bot force-pushed the renovate/frontend/patch-apollo-graphql-packages branch from b34ad95 to 3a6ff5b Compare March 31, 2023 21:03
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.10 fix(frontend): update dependency @apollo/client to v3.7.11 Mar 31, 2023
@plural-renovate plural-renovate bot force-pushed the renovate/frontend/patch-apollo-graphql-packages branch from 3a6ff5b to 9289505 Compare April 12, 2023 23:00
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.11 fix(frontend): update dependency @apollo/client to v3.7.12 Apr 12, 2023
@plural-renovate plural-renovate bot force-pushed the renovate/frontend/patch-apollo-graphql-packages branch from 9289505 to ed1acda Compare April 27, 2023 21:40
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.12 fix(frontend): update dependency @apollo/client to v3.7.13 Apr 27, 2023
@plural-renovate plural-renovate bot force-pushed the renovate/frontend/patch-apollo-graphql-packages branch from ed1acda to b65d60c Compare May 3, 2023 21:54
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.13 fix(frontend): update dependency @apollo/client to v3.7.14 May 3, 2023
@plural-renovate plural-renovate bot force-pushed the renovate/frontend/patch-apollo-graphql-packages branch from b65d60c to a242f84 Compare June 2, 2023 15:59
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.14 fix(frontend): update dependency @apollo/client to v3.7.15 Jun 2, 2023
@plural-renovate plural-renovate bot changed the title fix(frontend): update dependency @apollo/client to v3.7.15 fix(frontend): update dependency @apollo/client to v3.7.15 - autoclosed Jun 8, 2023
@plural-renovate plural-renovate bot closed this Jun 8, 2023
@plural-renovate plural-renovate bot deleted the renovate/frontend/patch-apollo-graphql-packages branch June 8, 2023 16:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file frontend Changes related to the frontend
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants