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

[Snyk] Upgrade @apollo/client from 3.7.0 to 3.7.13 #185

Merged
merged 1 commit into from
May 24, 2023

Conversation

snyk-bot
Copy link
Contributor

Snyk has created this PR to upgrade @apollo/client from 3.7.0 to 3.7.13.

ℹ️ 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 13 versions ahead of your current version.
  • The recommended version was released 22 days ago, on 2023-04-27.
Release notes
Package name: @apollo/client
  • 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

    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

  • 3.7.6 - 2023-01-31

    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 '@ 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.

  • 3.7.5 - 2023-01-24

    Patch Changes

    • #10458 b5ccef229 Thanks @ lennyburdette! - Passes getServerSnapshot to useSyncExternalStore so that it doesn't trigger a Missing getServerSnapshot error when using useFragment_experimental on the server.

    • #10471 895ddcb54 Thanks @ alessbell! - More robust type definition for headers property passed to createHttpLink

    • #10321 bbaa3ef2d Thanks @ alessbell! - Refetch should not return partial data with errorPolicy: none and notifyOnNetworkStatusChange: true.

    • #10402 0b07aa955 Thanks @ Hugodby! - Improve context types

    • #10469 328c58f90 Thanks @ jerelmiller! - Add generic type defaults when using useFragment to allow passing TData directly to the function without needing to specify TVars.

  • 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
from @apollo/client GitHub release notes
Commit messages
Package name: @apollo/client
  • 9e4d72c Version Packages (#10811)
  • 1e8a86c fix: release workflow also needs pull-requests: write permissions (#10816)
  • f45cde6 fix: add permissions contents: read in release workflow (#10815)
  • 1ae0d40 chore: generate npm provenance statements (#10814)
  • 577c68b useSubscription: keep subscription Concast alive if new in-flight subscription subscribes at the same time last in-flight subscription unsubscribes (#10718)
  • a550366 fix `persistedQuery` memory leak in SSR scenarios (#10805)
  • fdd0c5b Remove note about `setVariables` being an internal API (#10790)
  • 72dccb1 chore(deps): update dependency @ types/react to v18.2.0 (#10795)
  • e4f3bad chore(deps): update dependency @ typescript-eslint/parser to v5.59.1 (#10797)
  • fa570f2 chore(deps): update dependency @ typescript-eslint/eslint-plugin to v5.59.0 (#10796)
  • 65a9d79 chore(deps): update dependency @ types/node to v18.16.0 (#10794)
  • 31202da chore(deps): update dependency @ types/jest to v29.5.1 (#10793)
  • 52fbe3c chore(deps): update dependency eslint to v8.39.0 (#10798)
  • dd8d8d6 chore(deps): update dependency terser to v5.17.1 (#10799)
  • f2a4684 chore(deps): update cimg/node docker tag to v20 (#10800)
  • 4f4e4ba chore(deps): update dependency @ graphql-tools/schema to v9.0.19 (#10801)
  • 8e26ed6 docs: adds `createFragmentRegistry` (#10780)
  • 4997013 chore(deps): update dependency @ typescript-eslint/eslint-plugin to v5.58.0 (#10778)
  • 35f4dfd chore(deps): update dependency terser to v5.16.9 (#10776)
  • acee7a1 chore(deps): update dependency jest-junit to v16 (#10779)
  • 116ed42 chore(deps): update dependency @ graphql-tools/schema to v9.0.18 (#10771)
  • 4b3145f chore(deps): update cimg/node docker tag to v19.9.0 (#10777)
  • 7534394 chore(deps): update dependency @ types/lodash to v4.14.194 (#10772)
  • 03a20af chore(deps): update dependency @ types/react to v18.0.35 (#10773)

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

@ksibisamir ksibisamir merged commit e8a5168 into develop May 24, 2023
3 checks passed
@ksibisamir ksibisamir deleted the snyk-upgrade-8f330a4c60f9b6ee6f3215cd8e0217f5 branch May 24, 2023 09:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants