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

Update dependency apollo-client to v2.6.10 #57

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 26, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
apollo-client 2.4.13 -> 2.6.10 age adoption passing confidence

Release Notes

apollographql/apollo-client

v2.6.10

Compare Source

v2.6.9

Compare Source

v2.6.8

Compare Source

Apollo Client (2.6.8)
GraphQL Anywhere (4.2.6)
Apollo Boost (0.4.7)

v2.6.7

Compare Source

v2.6.6

Compare Source

v2.6.4

Compare Source

Apollo Client (2.6.4)

v2.6.3

Compare Source

Apollo Client (2.6.3)

v2.6.2

Compare Source

v2.6.1

Compare Source

Apollo Utilities 1.3.2

v2.6.0

Compare Source

  • In production, invariant(condition, message) failures will now include
    a unique error code that can be used to trace the error back to the
    point of failure.

    @​benjamn in #​4521
Apollo Client 2.6.0
  • If you can be sure your application code does not modify cache result objects (see freezeResults note below), you can unlock substantial performance improvements by communicating this assumption via

    new ApolloClient({ assumeImmutableResults: true });

    which allows the client to avoid taking defensive snapshots of past results using cloneDeep, as explained by @​benjamn in #​4543.

  • Identical overlapping queries are now deduplicated internally by apollo-client, rather than using the apollo-link-dedup package.

    @​benjamn in commit 7cd8479f

  • The FetchPolicy type has been split into two types, so that passing cache-and-network to ApolloClient#query is now forbidden at the type level, whereas previously it was forbidden by a runtime invariant assertion:

    export type FetchPolicy =
      | "cache-first"
      | "network-only"
      | "cache-only"
      | "no-cache"
      | "standby";
    
    export type WatchQueryFetchPolicy = FetchPolicy | "cache-and-network";

    The exception thrown if you ignore the type error has also been improved to explain the motivation behind this restriction.

    Issue #​3130 (comment) and commit cf069bc7

  • Avoid updating (and later invalidating) cache watches when fetchPolicy is 'no-cache'.

    @​bradleyayers in PR #​4573, part of issue #​3452

  • Remove temporary queryId after fetchMore completes.

    @​doomsower in #​4440

  • Call clearStore callbacks after clearing store.

    @​ds8k in #​4695

  • Perform all DocumentNode transforms once, and cache the results.

    @​benjamn in #​4601

  • Accommodate @client @​export variable changes in ObservableQuery.

    @​hwillson in #​4604

  • Support the returnPartialData option for watched queries again.

    @​benjamn in #​4743

  • Preserve networkStatus for incomplete cache-and-network queries.

    @​benjamn in #​4765

  • Preserve cache-and-network fetchPolicy when refetching.

    @​benjamn in #​4840

  • Update the React Native docs to remove the request for external example apps that we can link to. We're no longer going to manage a list of external example apps.

    @​hwillson in #​4531

  • Polling queries are no longer batched together, so their scheduling should be more predictable.

    @​benjamn in #​4800

Apollo Cache In-Memory 1.6.0
  • Support new InMemoryCache({ freezeResults: true }) to help enforce immutability.

    @​benjamn in #​4514

  • Allow IntrospectionFragmentMatcher to match fragments against the root Query, as HeuristicFragmentMatcher does.

    @​rynobax in #​4620

  • Rerential identity (===) of arrays in cache results will now be preserved for unchanged data.

    @​benjamn in commit f3091d6a

  • Avoid adding __typename field to @client selection sets that have been @exported as input variables.

    @​benjamn in #​4784

GraphQL Anywhere 4.2.2
  • The graphql function can now be configured to ignore @include and
    @skip directives (useful when walking a fragment to generate prop types
    or filter result data).

    @​GreenGremlin in #​4373

v2.5.1

Compare Source

apollo-client 2.5.1
graphql-anywhere 4.2.1

v2.5.0

Compare Source

Apollo Client (2.5.0)
  • Introduces new local state management features (client-side schema
    and local resolver / @client support) and many overall code improvements,
    to help reduce the Apollo Client bundle size.

    #​4361
  • Revamped CJS and ESM bundling approach with Rollup.

    @​rosskevin in #​4261
  • Fixes an issue where the QueryManager was accidentally returning cached
    data for network-only queries.

    @​danilobuerger in #​4352
  • Fixed an issue in the repo .gitattributes that was causing binary files
    to have their line endings adjusted, and cleaned up corrupted documentation
    imagehttps://github.com/apollographql/apollo-client/pull/4232ull/4232).

    @​rajington in #​4438
  • Improve (and shorten) query polling implementation.

    PR #​4337

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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update dependency apollo-client to v2.5.0 Update dependency apollo-client to v2.5.1 Feb 27, 2019
@renovate renovate bot force-pushed the renovate/app-apollo-client-2.x branch from 3e55a08 to 3afb548 Compare February 27, 2019 14:10
@renovate renovate bot force-pushed the renovate/app-apollo-client-2.x branch from 3afb548 to e5df538 Compare May 22, 2019 14:02
@renovate renovate bot changed the title Update dependency apollo-client to v2.5.1 Update dependency apollo-client to v2.6.0 May 22, 2019
@renovate renovate bot force-pushed the renovate/app-apollo-client-2.x branch from e5df538 to 16571f7 Compare June 19, 2019 12:59
@renovate renovate bot changed the title Update dependency apollo-client to v2.6.0 Update dependency apollo-client to v2.6.3 Jun 19, 2019
@renovate renovate bot force-pushed the renovate/app-apollo-client-2.x branch from 16571f7 to f70bd44 Compare August 18, 2019 07:04
@renovate renovate bot changed the title Update dependency apollo-client to v2.6.3 Update dependency apollo-client to v2.6.4 Aug 18, 2019
@renovate renovate bot force-pushed the renovate/app-apollo-client-2.x branch from f70bd44 to f0a8880 Compare February 16, 2020 12:03
@renovate renovate bot changed the title Update dependency apollo-client to v2.6.4 Update dependency apollo-client to v2.6.8 Feb 16, 2020
@ghost
Copy link

ghost commented Feb 16, 2020

Congratulations 🎉. DeepCode analyzed your code in 0.001 seconds and we found no issues. Enjoy a moment of no bugs ☀️.

👉 View analysis in DeepCode’s Dashboard

@renovate renovate bot force-pushed the renovate/app-apollo-client-2.x branch from f0a8880 to b49a1dc Compare May 15, 2020 09:58
@renovate renovate bot changed the title Update dependency apollo-client to v2.6.8 Update dependency apollo-client to v2.6.10 May 15, 2020
@renovate
Copy link
Author

renovate bot commented Mar 24, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

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

Successfully merging this pull request may close these issues.

1 participant