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(deps): update apollo graphql packages #36

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 6, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
apollo-server-express (source) 2.14.2 -> 2.26.2 age adoption passing confidence
react-apollo 2.5.5 -> 2.5.8 age adoption passing confidence

Release Notes

apollographql/apollo-server (apollo-server-express)

v2.26.2

Compare Source

v2.26.1

Compare Source

v2.26.0

Compare Source

v2.25.4

Compare Source

v2.25.3

Compare Source

v2.25.2

Compare Source

v2.25.1

Compare Source

v2.25.0

Compare Source

v2.24.1

Compare Source

v2.24.0

Compare Source

v2.23.0

Compare Source

v2.22.2

Compare Source

v2.22.1

Compare Source

v2.22.0

Compare Source

v2.21.2

Compare Source

v2.21.1

Compare Source

v2.21.0

Compare Source

v2.20.0

Compare Source

v2.19.2

Compare Source

v2.19.1

Compare Source

v2.19.0

Compare Source

v2.18.2

Compare Source

v2.18.1

Compare Source

v2.18.0

Compare Source

v2.17.0

Compare Source

v2.16.1

Compare Source

v2.16.0

Compare Source

v2.15.1

Compare Source

v2.15.0

Compare Source

v2.14.5

Compare Source

v2.14.4

Compare Source

v2.14.3

Compare Source

apollographql/react-apollo (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
  • Make sure MockedProvider is using the proper CJS/ESM bundle, when
    referencing ApolloProvider.

    @​jure in #​3029.
  • Adjust the ApolloContext definition to play a bit more nicely with
    React.createContext types.

    @​JoviDeCroock in #​3018
  • The result of a mutation is now made available to the wrapped component,
    when using the graphql HOC.

    @​andycarrell in #​3008
  • Check equality of stringified variables in the MockLink to improve
    debugging experience used by MockedProvider.

    @​evans in #​3078
Bug Fixes
  • Removed leftover apollo-client@beta peer dep.

    @​brentertz in #​3064
  • Stop setting optional input to null, when using the graphql HOC.

    @​ZhengYuTay in #​3056
  • Fix typescript error caused by query being mandatory in the fetchMore signature.

    @​HsuTing in #​3065
  • Fixes an issue that caused the Query component to get stuck in an always
    loading state, caused by receiving an error (meaning subsequent valid
    responses couldn't be handled). The Query component can now handle an
    error in a response, then continue to handle a valid response afterwards.

    @​hwillson in #​3107
  • Reorder Subscription component code to avoid setting state on unmounted
    component.

    @​jasonpaulos in #​3139
  • Fix component stuck in loading state for network-only fetch policy.

    @​jasonpaulos in #​3126

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.


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.

👻 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Jan 6, 2021
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from c65179a to 32d3824 Compare January 22, 2021 07:55
@renovate renovate bot changed the title Update dependency apollo-server-express to v2.19.1 Update dependency apollo-server-express to v2.19.2 Jan 22, 2021
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 32d3824 to 2327733 Compare February 10, 2021 22:45
@renovate renovate bot changed the title Update dependency apollo-server-express to v2.19.2 Update dependency apollo-server-express to v2.20.0 Feb 10, 2021
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 2327733 to 0c28435 Compare April 26, 2021 14:12
@renovate renovate bot changed the title Update dependency apollo-server-express to v2.20.0 Update Apollo GraphQL packages Apr 26, 2021
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 0c28435 to 58c4229 Compare May 9, 2021 20:59
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch 2 times, most recently from 0c0b356 to 6a7f9a9 Compare June 12, 2021 22:09
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 6a7f9a9 to c7a244a Compare October 19, 2021 01:13
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from c7a244a to 31f2aeb Compare March 7, 2022 16:44
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 31f2aeb to 630ff86 Compare June 18, 2022 17:23
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 630ff86 to d1fced7 Compare September 25, 2022 21:48
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from d1fced7 to 77b5186 Compare November 20, 2022 19:46
@renovate renovate bot changed the title Update Apollo GraphQL packages fix(deps): update apollo graphql packages Mar 18, 2023
@renovate renovate bot force-pushed the renovate/apollo-graphql-packages branch from 77b5186 to a6d68b6 Compare August 30, 2023 21:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants