react-router-dom
Advanced tools
Changelog
v6.1.0
Date: 2021-12-10
<Outlet>
can now receive a context
prop. This value is passed to child routes and is accessible via the new useOutletContext
hook. See the API docs for details. (#8461)<NavLink>
can now receive a child function for access to its props. (#8164)useMatch
and matchPath
. For example, when you call useMatch("foo/:bar/:baz")
, the path is parsed and the return type will be PathMatch<"bar" | "baz">
. (#8030)Full Changelog: v6.0.2...v6.1.0
Changelog
v6.0.2
Date: 2021-11-09
reloadDocument
prop to <Link>
. This allows <Link>
to function like a normal anchor tag by reloading the document after navigation while maintaining the relative to
resolution (#8283)Full Changelog: v6.0.1...v6.0.2
Changelog
v6.0.1
Date: 2021-11-05
<StaticRouter location>
value (#8243)<Route>
inside <Routes>
to help people make the change (#8238)Full Changelog: v6.0.0...v6.0.1
Changelog
v6.0.0
Date: 2021-11-03
React Router v6 is here!
Please go read our blog post for more information on all the great stuff in v6 including notes about how to upgrade from React Router v5 and Reach Router.