Let's cut to the chase - major version upgrades can be a pain. Especially for something as foundational to your application as the framework or router it's built on. For Remix and React Router, we want to do our best to give you the smoothest upgrade experience possible.
Our goals for major Remix and React Router releases are:
We plan to do this via what we're calling Future Flags that you'll provide when you initialize your Data Router. Think of these as feature flags for future features. As we implement new features, we always try to do them in a backwards-compatible way. But when a breaking change is warranted, we don't table that feature up for an eventual v7 release. Instead, we add a Future Flag and implement the new feature alongside the current behavior in a v6 minor release. This allows users to start using the feature, providing feedback, and reporting bugs immediately.
That way, not only can you adopt features incrementally (and eagerly without a major version bump), we can also work out any kinks incrementally before releasing v7. Eventually we also then add deprecation warnings to the v6 releases to nudge users to the new behavior. Then in v7 we remove the old v6 approach, remove the deprecations, and remove the flag - thus making the flagged behavior the new default in v7. If at the time v6 is released, an application has opted into all future flags and updated their code - then they should just be able to update their dependency to v7, delete the future flags, and be running on v7 in a matter of minutes.
Future flags come in 2 forms:
future.unstable_feature
unstable_
flags allow us to iterate on the API with early adopters as if we're in v0.x.x
versions, but for a specific feature. This avoids churning the API for all users and arriving at better APIs in the final release. This does not mean that we think the feature is bug-ridden! We absolutely want early adopters to start using these features so we can iterate on (and/or gain confidence in) the API.
future.v7_feature
v7_
indicates a breaking change from v6 behavior and implies (1) that the API is considered stable and will not under any more breaking changes and (2) that the API will become the default behavior in v7. A v7_
flag does not mean the feature is bug-free - no software is! Our recommendation is to upgrade to v7 flags as you have the time, as it will make your v7 upgrade much smoother.
The decision flow for a new feature looks something like this (note this diagram is in relation to Remix v1/v2 but applies to React Router v6/v7 as well):
The lifecycle is thus either:
future.unstable_
flag -> Lands in v6future.v7_
flag -> Lands in v7future.unstable_
flag -> future.v7_
flag -> Lands in v7Here's the current future flags in React Router v6 today:
| Flag | Description |
| v7_normalizeFormMethod
| Normalize useNavigation().formMethod
to be an uppercase HTTP Method |