Conversation
Codecov Report
@@ Coverage Diff @@
## master #28 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 2 2
Lines 41 41
Branches 17 17
=========================================
Hits 41 41 Continue to review full report at Codecov.
|
|
@erikras I was wondering if you could have a look at this? |
|
Thank you @MoltenCoffee for your patience with this PR from 2020! Your contribution identified an important issue with React peerDependencies. After 5 years, we're finally addressing this properly. Status: This PR is now superseded by #37 which updates React peerDependencies to support versions 16, 17, 18, and 19. I recommend closing this PR in favor of #37. Thank you for your contribution to the Final Form ecosystem! 🙏 |
Closes final-form#28 Closes final-form#30 The react peerDependency supports React 16.8+, 17, 18, and 19, but react-dom was locked to ^18.2.0, causing peer dependency warnings for users on React 17 and earlier. This aligns react-dom to match the react version range, allowing the library to work correctly across all supported React versions.
As mentioned in #27, with the new React version, this should probably be reflected in the peerDependencies as well. This PR does just that!