Skip to content
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.

deps: bump @apollo/react-hooks from 3.1.5 to 4.0.0 in /web #126

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

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jul 27, 2020

Bumps @apollo/react-hooks from 3.1.5 to 4.0.0.

Changelog

Sourced from @apollo/react-hooks's changelog.

4.0.0 (2020-07-20)

⚠️ Deprecation Notice ⚠️

Please note that this is the final version of all React Apollo packages, and that this repository is going to be archived. React Apollo functionality is now directly available from @apollo/client >= 3. While using the @apollo/react-X packages will still work, we recommend using the following imports from @apollo/client directly instead:

  • old: @apollo/react-components --> new: @apollo/client/react/components
  • old: @apollo/react-hoc --> new: @apollo/client/react/hoc
  • old: @apollo/react-ssr --> new: @apollo/client/react/ssr
  • old: @apollo/react-testing --> new: @apollo/client/testing
  • old: @apollo/react-hooks --> new: @apollo/client

Breaking Changes

  • React Apollo 4.0.0 is dependent on @apollo/client >= 3. If you are using apollo-client 2.x and are not ready to update to @apollo/client, please use React Apollo 3.x.

  • The react-apollo package has been fully removed. Please use @apollo/client or @apollo/react-X packages directly. @hwillson in #4037

  • Due to changes made in Apollo Client, the previous SSR testing pattern of:

    return getDataFromTree(app).then(() => {
      const markup = ReactDOM.renderToString(app);
      expect(markup).toMatch(/Waldo/);
    });

    will no longer work (ReactDOM.renderToString(app) will just return the initial loading state of the component under test). Instead, we can leverage the markup returned when getDataFromTree's Promise resolves:

    return getDataFromTree(app).then((markup) => {
      expect(markup).toMatch(/Waldo/);
    });
  • We are no longer building UMD versions of React Apollo.

3.1.3 (2019-10-15)

  • Revert the changes made in #3497, which have lead to problems with onCompleted being called more often than necessary. @hwillson in 0901f4a

3.1.2 (2019-10-01)

Bug Fixes

  • Make sure SSR is fully disabled when using ssr: false and ssrMode: true. @maapteh in #3515
  • Fixed MockLink's broken newData function handling.
Commits
  • 9eab63a Publish
  • 4dca878 Changelog update, prep for publish
  • 95799e7 chore(deps): update dependency typescript to v3.9.7
  • 53db70c chore(deps): update dependency typescript to v3.9.6
  • 8aa002c chore(deps): update dependency lerna to v3.22.1
  • 1708124 Merge pull request #4037 from apollographql/export-from-ac
  • 7b5cff8 Publish
  • 15f16e4 README updates
  • be05ae7 Changelog update
  • 2f5d937 Simplify the package.json
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in the .dependabot/config.yml file in this repo:

  • Update frequency
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 27, 2020
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/web/apollo/react-hooks-4.0.0 branch from b1917cf to 6ba9f7f Compare July 29, 2020 22:15
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/web/apollo/react-hooks-4.0.0 branch 3 times, most recently from d5318ad to 077ee79 Compare August 17, 2020 13:48
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/web/apollo/react-hooks-4.0.0 branch from 077ee79 to d7a8952 Compare October 6, 2020 09:17
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/web/apollo/react-hooks-4.0.0 branch from d7a8952 to c3dddb0 Compare November 9, 2020 13:20
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/web/apollo/react-hooks-4.0.0 branch 2 times, most recently from 33f3d4b to f4353b7 Compare November 27, 2020 11:17
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/web/apollo/react-hooks-4.0.0 branch from f4353b7 to ac14a1e Compare November 27, 2020 11:30
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants