Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

refactor(deps-dev): bump @apollo/react-hooks from 3.1.5 to 4.0.0 #453

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 20, 2020

⚠️ Dependabot Preview has been deactivated ⚠️

This pull request was created by Dependabot Preview, and you've upgraded to Dependabot. This means it won't respond to dependabot commands nor will it be automatically closed if a new version is found.

If you close this pull request, Dependabot will re-create it the next time it checks for updates and everything will work as expected.


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 will not automatically merge this PR because it includes an out-of-range update to a development dependency.


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
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jul 20, 2020
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch from d589227 to 9e04632 Compare July 30, 2020 23:23
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch from 9e04632 to 8584a4a Compare September 15, 2020 19:43
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch from 8584a4a to 4732756 Compare October 11, 2020 15:06
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 10 times, most recently from 230765c to ef0fe92 Compare February 3, 2021 17:38
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 5 times, most recently from 5307616 to 38962cf Compare February 12, 2021 13:29
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 5 times, most recently from 903432a to f86a2bf Compare February 19, 2021 13:32
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 5 times, most recently from 9c24223 to dcffa05 Compare February 26, 2021 13:43
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 2 times, most recently from e520b49 to 2376ace Compare May 24, 2021 13:29
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 4 times, most recently from af59a22 to 4f9fe30 Compare June 4, 2021 13:28
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 8 times, most recently from a4e71ba to 061656f Compare June 10, 2021 13:37
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 5 times, most recently from de951d5 to 088c24f Compare June 18, 2021 13:27
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 5 times, most recently from 2da122f to 8d60a4d Compare June 23, 2021 20:35
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch 3 times, most recently from 22b70ee to 66d3cec Compare June 29, 2021 13:32
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch from 66d3cec to 4de9d9c Compare July 5, 2021 13:35
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/apollo/react-hooks-4.0.0 branch from 4de9d9c to b7f8c8d Compare July 12, 2021 22:31
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants