v1.0.0-rc.3
Pre-release
Pre-release
Bug fixes 🐛
- Fixed a bug in
<Form>
where requests were sent to the wrong action (#411). - Fixed a bug with await handlers in server runtime (#413).
- Fixed a few bugs with local development (#417, #431)
Breaking changes 💔
react-router-dom
is no longer a peer dependency, so you can remove it from yourpackage.json
(#424). This isn't technically a breaking change today, but it could break your app in the future without making this switch! All React Router modules should be imported directly fromremix
:
// before
import { Outlet } from "react-router-dom";
// after
import { Outlet } from "remix";
Full Changelog: v1.0.0-rc.2...v1.0.0-rc.3