aerogear / datasync-starter

GraphQL Low Code React and Node.js DataSync Application template
http://graphback.dev
MIT License
32 stars 38 forks source link

fix(deps): update dependency @apollo/react-hooks to v4 #439

Closed renovate[bot] closed 4 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Type Update Change
@apollo/react-hooks dependencies major 3.1.5 -> 4.0.0

Release Notes

apollographql/react-apollo ### [`v4.0.0`](https://togithub.com/apollographql/react-apollo/blob/master/Changelog.md#​400-2020-07-20) [Compare Source](https://togithub.com/apollographql/react-apollo/compare/@apollo/react-hooks@3.1.5...@apollo/react-hooks@4.0.0) > ⚠️ **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](https://togithub.com/hwillson) in [#​4037](https://togithub.com/apollographql/react-apollo/pull/4037) - Due to changes made in Apollo Client, the previous SSR testing pattern of: ```js 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: ```js return getDataFromTree(app).then((markup) => { expect(markup).toMatch(/Waldo/); }); ``` - We are no longer building UMD versions of React Apollo.

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

:no_bell: Ignore: Close this PR and you won't be reminded about this update again.



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

renovate[bot] commented 4 years ago

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will ignore this upgrade and you will not receive PRs for any future 4.x releases. However, if you upgrade to 4.x manually then Renovate will then reenable updates for minor and patch updates automatically.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.