npm @remix-run/react 1.0.0-rc.3
v1.0.0-rc.3

latest releases: 0.0.0-nightly-6ee69c13d-20241003, 0.0.0-experimental-38ca648a3, 0.0.0-nightly-38ca648a3-20240920...
2 years ago

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

Don't miss a new react release

NewReleases is sending notifications on new releases.