loona icon indicating copy to clipboard operation
loona copied to clipboard

chore(deps): update apollo graphql packages

Open renovate[bot] opened this issue 7 years ago • 0 comments

This PR contains the following updates:

Package Type Update Change
apollo-cache devDependencies minor 1.2.1 -> 1.3.5
apollo-cache-inmemory devDependencies minor 1.5.1 -> 1.6.6
apollo-client devDependencies minor 2.5.1 -> 2.6.10
apollo-link devDependencies patch 1.2.11 -> 1.2.14
graphql-tag devDependencies minor 2.10.1 -> 2.11.0
react-apollo devDependencies patch 2.5.4 -> 2.5.8

Release Notes

apollographql/apollo-client

v1.3.5

Compare Source

v1.3.4

Compare Source

v1.3.2

Compare Source

v1.3.1

Compare Source

  • The isEqual function has been reimplemented using the lodash.isequal npm package, to better support circular references. Since the lodash.isequal package is already used by react-apollo, this change is likely to decrease total bundle size.
    @​capaj in #​4915

v1.3.0

Compare Source

apollographql/apollo-link

v1.2.14

Compare Source

v1.2.13

Compare Source

v1.2.12

Compare Source

apollographql/graphql-tag

v2.11.0

Compare Source

v2.10.4

Compare Source

v2.10.3

Compare Source

v2.10.2

Compare Source

apollographql/react-apollo

v2.5.8

Compare Source

2.5.8 (2019-06-21)

Bug Fixes
  • Makes the use of apollo-client 2.6.3's ObservableQuery.resetQueryStoreErrors method optional, for people who can't update to react-apollo's new apollo-client peer dep of 2.6.3. @​hwillson in #​3151

v2.5.7

Compare Source

Improvements
Bug Fixes

v2.5.6

Compare Source

Improvements
  • Both the Query component and graphql HOC now accept a returnPartialData prop. This is an important new feature, that should help address a lot of open Apollo Client / React Apollo issues, so we'll explain it here with an example. Before this release, if you run a query that looks like:

    const GET_MEMBER = gql`
      query GetMember($id: ID!) {
        member(id: $id) {
          id
          name
        }
      }
    `;
    

    in one component, the results are cached, then you run a superset query like the following in another component:

    const GET_MEMBER_WITH_PLANS = gql`
      query GetMemberWithPlans($id: ID!) {
        member(id: $id) {
          id
          name
          plans {
            id
            title
            duration
          }
        }
      }
    `;
    

    Apollo Client will not re-use the partial data that was cached from the first query, when it preps and displays the second component. It can't find a cache hit for the full second query, so it fires the full query over the network.

    With this release, if you set a returnPartialData prop to true on the second component, the data available to that component will be automatically pre-loaded with the parts of the query that can be found in the cache, before the full query is fired over the network. This means you can do things like showing partial data in your components, while the rest of the data is being loaded over the network.

v2.5.5

Compare Source

Improvements

Renovate configuration

:date: Schedule: "after 11pm,before 6am" in timezone Europe/Warsaw.

:vertical_traffic_light: Automerge: Disabled due to failing status checks.

:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

:ghost: Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

renovate[bot] avatar Apr 22 '19 22:04 renovate[bot]