Warning about `componentWillReceiveProps` in React 16.9.0
See original GitHub issuereact-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:
- Created 4 years ago
- Reactions:38
- Comments:13
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
Top Related Hashnode Post
No results found
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
@fatso83 yea that’s fine temporarily but if the repo will never be updated i’ll probably just look for alternatives