@react-router/dev 0.0.0-experimental-795b50c5b → 0.0.0-experimental-4cf5bd08c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -0
- package/dist/cli/index.js +206 -86
- package/dist/config/default-rsc-entries/entry.rsc.tsx +6 -0
- package/dist/config.js +1 -1
- package/dist/routes.js +1 -1
- package/dist/vite/cloudflare.js +20 -6
- package/dist/vite.d.ts +3 -1
- package/dist/vite.js +1199 -256
- package/package.json +11 -11
- package/dist/internal.d.ts +0 -9
- package/dist/internal.js +0 -2016
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# `@react-router/dev`
|
|
2
2
|
|
|
3
|
+
## 7.9.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix internal `Future` interface naming from `middleware` -> `v8_middleware` ([#14327](https://github.com/remix-run/react-router/pull/14327))
|
|
8
|
+
- Updated dependencies:
|
|
9
|
+
- `react-router@7.9.1`
|
|
10
|
+
- `@react-router/node@7.9.1`
|
|
11
|
+
- `@react-router/serve@7.9.1`
|
|
12
|
+
|
|
13
|
+
## 7.9.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- Stabilize middleware and context APIs. ([#14215](https://github.com/remix-run/react-router/pull/14215))
|
|
18
|
+
|
|
19
|
+
We have removed the `unstable_` prefix from the following APIs and they are now considered stable and ready for production use:
|
|
20
|
+
- [`RouterContextProvider`](https://reactrouter.com/api/utils/RouterContextProvider)
|
|
21
|
+
- [`createContext`](https://reactrouter.com/api/utils/createContext)
|
|
22
|
+
- `createBrowserRouter` [`getContext`](https://reactrouter.com/api/data-routers/createBrowserRouter#optsgetcontext) option
|
|
23
|
+
- `<HydratedRouter>` [`getContext`](https://reactrouter.com/api/framework-routers/HydratedRouter#getcontext) prop
|
|
24
|
+
|
|
25
|
+
Please see the [Middleware Docs](https://reactrouter.com/how-to/middleware), the [Middleware RFC](https://github.com/remix-run/remix/discussions/7642), and the [Client-side Context RFC](https://github.com/remix-run/react-router/discussions/9856) for more information.
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies:
|
|
30
|
+
- `react-router@7.9.0`
|
|
31
|
+
- `@react-router/node@7.9.0`
|
|
32
|
+
- `@react-router/serve@7.9.0`
|
|
33
|
+
|
|
3
34
|
## 7.8.2
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|