@react-router/node 7.8.2 → 7.9.0-pre.1
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 +26 -4
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# `@react-router/node`
|
|
2
2
|
|
|
3
|
+
## 7.9.0-pre.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies:
|
|
8
|
+
- `react-router@7.9.0-pre.1`
|
|
9
|
+
|
|
10
|
+
## 7.9.0-pre.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- Stabilize middleware and context APIs. ([#14215](https://github.com/remix-run/react-router/pull/14215))
|
|
15
|
+
|
|
16
|
+
We have removed the `unstable_` prefix from the following APIs and they are now considered stable and ready for production use:
|
|
17
|
+
- [`RouterContextProvider`](https://reactrouter.com/api/utils/RouterContextProvider)
|
|
18
|
+
- [`createContext`](https://reactrouter.com/api/utils/createContext)
|
|
19
|
+
- `createBrowserRouter` [`getContext`](https://reactrouter.com/api/data-routers/createBrowserRouter#optsgetcontext) option
|
|
20
|
+
- `<HydratedRouter>` [`getContext`](https://reactrouter.com/api/framework-routers/HydratedRouter#getcontext) prop
|
|
21
|
+
|
|
22
|
+
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.
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies:
|
|
27
|
+
- `react-router@7.9.0-pre.0`
|
|
28
|
+
|
|
3
29
|
## 7.8.2
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
|
@@ -187,7 +213,6 @@
|
|
|
187
213
|
- Remove single fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
|
|
188
214
|
|
|
189
215
|
- For Remix consumers migrating to React Router, the `crypto` global from the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) is now required when using cookie and session APIs. This means that the following APIs are provided from `react-router` rather than platform-specific packages: ([#11837](https://github.com/remix-run/react-router/pull/11837))
|
|
190
|
-
|
|
191
216
|
- `createCookie`
|
|
192
217
|
- `createCookieSessionStorage`
|
|
193
218
|
- `createMemorySessionStorage`
|
|
@@ -196,7 +221,6 @@
|
|
|
196
221
|
For consumers running older versions of Node, the `installGlobals` function from `@remix-run/node` has been updated to define `globalThis.crypto`, using [Node's `require('node:crypto').webcrypto` implementation.](https://nodejs.org/api/webcrypto.html)
|
|
197
222
|
|
|
198
223
|
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
|
|
199
|
-
|
|
200
224
|
- `createCookieFactory`
|
|
201
225
|
- `createSessionStorageFactory`
|
|
202
226
|
- `createCookieSessionStorageFactory`
|
|
@@ -604,12 +628,10 @@
|
|
|
604
628
|
- Introduces the `defer()` API from `@remix-run/router` with support for server-rendering and HTTP streaming. This utility allows you to defer values returned from `loader` functions by returning promises instead of resolved values. This has been refered to as _"sending a promise over the wire"_. ([#4920](https://github.com/remix-run/remix/pull/4920))
|
|
605
629
|
|
|
606
630
|
Informational Resources:
|
|
607
|
-
|
|
608
631
|
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
|
|
609
632
|
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
|
|
610
633
|
|
|
611
634
|
Documentation Resources (better docs specific to Remix are in the works):
|
|
612
|
-
|
|
613
635
|
- <https://reactrouter.com/en/main/utils/defer>
|
|
614
636
|
- <https://reactrouter.com/en/main/components/await>
|
|
615
637
|
- <https://reactrouter.com/en/main/hooks/use-async-value>
|
package/dist/index.d.mts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RequestListener } from 'node:http';
|
|
2
|
-
import { ServerBuild, UNSAFE_MiddlewareEnabled,
|
|
2
|
+
import { ServerBuild, UNSAFE_MiddlewareEnabled, RouterContextProvider, AppLoadContext, SessionData, SessionIdStorageStrategy, SessionStorage } from 'react-router';
|
|
3
3
|
import { ClientAddress } from '@mjackson/node-fetch-server';
|
|
4
4
|
import { Readable, Writable } from 'node:stream';
|
|
5
5
|
|
|
6
6
|
type MaybePromise<T> = T | Promise<T>;
|
|
7
7
|
interface RequestListenerOptions {
|
|
8
8
|
build: ServerBuild | (() => ServerBuild | Promise<ServerBuild>);
|
|
9
|
-
getLoadContext?: (request: Request, client: ClientAddress) => UNSAFE_MiddlewareEnabled extends true ? MaybePromise<
|
|
9
|
+
getLoadContext?: (request: Request, client: ClientAddress) => UNSAFE_MiddlewareEnabled extends true ? MaybePromise<RouterContextProvider> : MaybePromise<AppLoadContext>;
|
|
10
10
|
mode?: string;
|
|
11
11
|
}
|
|
12
12
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RequestListener } from 'node:http';
|
|
2
|
-
import { ServerBuild, UNSAFE_MiddlewareEnabled,
|
|
2
|
+
import { ServerBuild, UNSAFE_MiddlewareEnabled, RouterContextProvider, AppLoadContext, SessionData, SessionIdStorageStrategy, SessionStorage } from 'react-router';
|
|
3
3
|
import { ClientAddress } from '@mjackson/node-fetch-server';
|
|
4
4
|
import { Readable, Writable } from 'node:stream';
|
|
5
5
|
|
|
6
6
|
type MaybePromise<T> = T | Promise<T>;
|
|
7
7
|
interface RequestListenerOptions {
|
|
8
8
|
build: ServerBuild | (() => ServerBuild | Promise<ServerBuild>);
|
|
9
|
-
getLoadContext?: (request: Request, client: ClientAddress) => UNSAFE_MiddlewareEnabled extends true ? MaybePromise<
|
|
9
|
+
getLoadContext?: (request: Request, client: ClientAddress) => UNSAFE_MiddlewareEnabled extends true ? MaybePromise<RouterContextProvider> : MaybePromise<AppLoadContext>;
|
|
10
10
|
mode?: string;
|
|
11
11
|
}
|
|
12
12
|
/**
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-router/node",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.9.0-pre.1",
|
|
4
4
|
"description": "Node.js platform abstractions for React Router",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/react-router/issues"
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"tsup": "^8.3.0",
|
|
53
53
|
"typescript": "^5.1.6",
|
|
54
54
|
"wireit": "0.14.9",
|
|
55
|
-
"react-router": "7.
|
|
55
|
+
"react-router": "7.9.0-pre.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"typescript": "^5.1.0",
|
|
59
|
-
"react-router": "7.
|
|
59
|
+
"react-router": "7.9.0-pre.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependenciesMeta": {
|
|
62
62
|
"typescript": {
|