Skip to content

v1.0.0-rc.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@chaance chaance released this 22 Nov 18:28
· 5161 commits to main since this 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 your package.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 from remix:
// before
import { Outlet } from "react-router-dom";
// after
import { Outlet } from "remix";

Full Changelog: v1.0.0-rc.2...v1.0.0-rc.3