question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Warning about `componentWillReceiveProps` in React 16.9.0

See original GitHub issue
react-dom.development.js:11494 Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-async-component-lifecycle-hooks for details.

* Move data fetching code or side effects to componentDidUpdate.
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://fb.me/react-derived-state
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 17.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: Autosuggest, Autowhatever

Can be auto fixed with

npx react-codemod rename-unsafe-lifecycles <path>

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:38
  • Comments:13

github_iconTop GitHub Comments

8reactions
ChrisWilescommented, Aug 25, 2019

You still have a while before react 17, so while you refactor your library you could at least add unsafe in the meantime which takes no time and little effort

6reactions
bdwaincommented, Sep 11, 2019

@fatso83 yea that’s fine temporarily but if the repo will never be updated i’ll probably just look for alternatives

Read more comments on GitHub >

github_iconTop Results From Across the Web

componentWillReceiveProps warning in React 16.9.0 #30
Since React 16.9.0 this package will produce following warning into the console Warning: componentWillReceiveProps has been renamed, ...
Read more >
get warning "componentWillReceiveProps has been ...
This is a warning from react native. componentWillReceiveProps is a synchronous hook. Calling asynchronous function like data fetching ...
Read more >
React v16.9.0 and the Roadmap Update
Today we are releasing React 16.9. It contains several new features, bugfixes, and new deprecation warnings to help prepare for a future ...
Read more >
componentwillreceiveprops has been renamed stackoverflow
After updating react and react-dom to v 16.9.0, this warning appears: react-dom.development.js:11494 Warning: componentWillReceiveProps has been renamed, and is ...
Read more >
Warning: componentWillMount has been Renamed, and is ...
Starting in React version 16.3, the following component lifecycle methods are being phased out. componentWillMount; componentWillReceiveProps ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Hashnode Post

No results found