diff --git a/examples/auth/README.md b/examples/auth/README.md
index 0692a050cb..c3503032b0 100644
--- a/examples/auth/README.md
+++ b/examples/auth/README.md
@@ -12,4 +12,4 @@ Be sure to pay attention to the following features:
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/auth?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/auth?file=src/App.tsx)
diff --git a/examples/auth/package.json b/examples/auth/package.json
index b72f3b4dc1..3ae31d4453 100644
--- a/examples/auth/package.json
+++ b/examples/auth/package.json
@@ -10,8 +10,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
diff --git a/examples/basic/README.md b/examples/basic/README.md
index 4b088fbab3..2f4bfd3b6b 100644
--- a/examples/basic/README.md
+++ b/examples/basic/README.md
@@ -12,4 +12,4 @@ This example demonstrates some of the basic features of React Router, including:
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/basic?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/basic?file=src/App.tsx)
diff --git a/examples/basic/package.json b/examples/basic/package.json
index 8e7396a711..a0d9aa8059 100644
--- a/examples/basic/package.json
+++ b/examples/basic/package.json
@@ -10,8 +10,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
diff --git a/examples/custom-filter-link/README.md b/examples/custom-filter-link/README.md
index f20e67cddb..b69814129b 100644
--- a/examples/custom-filter-link/README.md
+++ b/examples/custom-filter-link/README.md
@@ -6,4 +6,4 @@ This example demonstrates how to use a query string parameter to mark a link as
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/custom-filter-link?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/custom-filter-link?file=src/App.tsx)
diff --git a/examples/custom-filter-link/package.json b/examples/custom-filter-link/package.json
index d4542bf401..62cedd987c 100644
--- a/examples/custom-filter-link/package.json
+++ b/examples/custom-filter-link/package.json
@@ -11,8 +11,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
diff --git a/examples/custom-link/README.md b/examples/custom-link/README.md
index 16d0d268f3..3d086be007 100644
--- a/examples/custom-link/README.md
+++ b/examples/custom-link/README.md
@@ -6,4 +6,4 @@ This example demonstrates how to make a custom `` component to render some
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/custom-link?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/custom-link?file=src/App.tsx)
diff --git a/examples/custom-link/package.json b/examples/custom-link/package.json
index 2f2059df57..b43f82fa5d 100644
--- a/examples/custom-link/package.json
+++ b/examples/custom-link/package.json
@@ -10,8 +10,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
diff --git a/examples/custom-query-parsing/README.md b/examples/custom-query-parsing/README.md
index bbbe5c8b64..dc0e4a854e 100644
--- a/examples/custom-query-parsing/README.md
+++ b/examples/custom-query-parsing/README.md
@@ -8,4 +8,4 @@ It's a good example of how React Router's low-level hooks provide you with all t
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/main/examples/custom-query-parsing?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/custom-query-parsing?file=src/App.tsx)
diff --git a/examples/custom-query-parsing/package.json b/examples/custom-query-parsing/package.json
index eb37cfc4a4..03d689441a 100644
--- a/examples/custom-query-parsing/package.json
+++ b/examples/custom-query-parsing/package.json
@@ -11,8 +11,8 @@
"jsurl": "0.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
diff --git a/examples/lazy-loading/README.md b/examples/lazy-loading/README.md
index fc6e942e4a..60452d79cf 100644
--- a/examples/lazy-loading/README.md
+++ b/examples/lazy-loading/README.md
@@ -14,4 +14,4 @@ performance.
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/main/examples/lazy-loading?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/lazy-loading?file=src/App.tsx)
diff --git a/examples/lazy-loading/package.json b/examples/lazy-loading/package.json
index 5a82e708f4..e8ef0b44c6 100644
--- a/examples/lazy-loading/package.json
+++ b/examples/lazy-loading/package.json
@@ -10,8 +10,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
diff --git a/examples/modal/README.md b/examples/modal/README.md
index 8fb996d1c9..e186747595 100644
--- a/examples/modal/README.md
+++ b/examples/modal/README.md
@@ -4,4 +4,4 @@
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/modal?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/modal?file=src/App.tsx)
diff --git a/examples/modal/package.json b/examples/modal/package.json
index 05b7d6c6cf..d378c2a977 100644
--- a/examples/modal/package.json
+++ b/examples/modal/package.json
@@ -11,8 +11,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
diff --git a/examples/route-objects/README.md b/examples/route-objects/README.md
index 5a9df103fb..5462ee9aa0 100644
--- a/examples/route-objects/README.md
+++ b/examples/route-objects/README.md
@@ -8,4 +8,4 @@ One interesting thing to note is that even if you don't use this hook directly,
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/route-objects?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/route-objects?file=src/App.tsx)
diff --git a/examples/route-objects/package.json b/examples/route-objects/package.json
index 8e7396a711..a0d9aa8059 100644
--- a/examples/route-objects/package.json
+++ b/examples/route-objects/package.json
@@ -10,8 +10,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.2.1",
diff --git a/examples/search-params/README.md b/examples/search-params/README.md
index 3e5ad74a70..e24ea524b4 100644
--- a/examples/search-params/README.md
+++ b/examples/search-params/README.md
@@ -8,4 +8,4 @@ In this example, we have a form to search for a user on GitHub and display their
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/search-params?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/search-params?file=src/App.tsx)
diff --git a/examples/search-params/package.json b/examples/search-params/package.json
index 121e6aa676..e72b83191a 100644
--- a/examples/search-params/package.json
+++ b/examples/search-params/package.json
@@ -10,8 +10,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
diff --git a/examples/ssr/README.md b/examples/ssr/README.md
index 85cdb51970..610a91ec23 100644
--- a/examples/ssr/README.md
+++ b/examples/ssr/README.md
@@ -14,4 +14,4 @@ On the server (see [src/entry.server.tsx](src/entry.server.tsx)), we use React R
Open this example on [StackBlitz](https://stackblitz.com):
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.7/examples/ssr?file=src/App.tsx)
+[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router/tree/v6.0.0-beta.8/examples/ssr?file=src/App.tsx)
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 5f5c0104ab..5cfedfe53e 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -16,8 +16,8 @@
"history": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
- "react-router": "6.0.0-beta.7",
- "react-router-dom": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8",
+ "react-router-dom": "6.0.0-beta.8"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
diff --git a/packages/react-router-dom/package.json b/packages/react-router-dom/package.json
index 256566ba6c..bae0f05ccc 100644
--- a/packages/react-router-dom/package.json
+++ b/packages/react-router-dom/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router-dom",
- "version": "6.0.0-beta.7",
+ "version": "6.0.0-beta.8",
"author": "Remix Software ",
"description": "Declarative routing for React web applications",
"repository": {
@@ -14,7 +14,7 @@
"types": "./index.d.ts",
"unpkg": "./umd/react-router-dom.production.min.js",
"dependencies": {
- "react-router": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8"
},
"peerDependencies": {
"history": ">=5",
diff --git a/packages/react-router-native/package.json b/packages/react-router-native/package.json
index 7980047fe0..824d7e9990 100644
--- a/packages/react-router-native/package.json
+++ b/packages/react-router-native/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router-native",
- "version": "6.0.0-beta.7",
+ "version": "6.0.0-beta.8",
"author": "Remix Software ",
"description": "Declarative routing for React Native applications",
"repository": {
@@ -13,7 +13,7 @@
"types": "./index.d.ts",
"dependencies": {
"@ungap/url-search-params": "^0.1.4",
- "react-router": "6.0.0-beta.7"
+ "react-router": "6.0.0-beta.8"
},
"peerDependencies": {
"history": ">=5",
diff --git a/packages/react-router/package.json b/packages/react-router/package.json
index 28b58cc87f..fb4290e091 100644
--- a/packages/react-router/package.json
+++ b/packages/react-router/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router",
- "version": "6.0.0-beta.7",
+ "version": "6.0.0-beta.8",
"author": "Remix Software ",
"description": "Declarative routing for React",
"repository": {