@react-router/serve 7.8.0-pre.3 → 7.8.0
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 +6 -31
- package/dist/cli.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,40 +1,13 @@
|
|
|
1
1
|
# `@react-router/serve`
|
|
2
2
|
|
|
3
|
-
## 7.8.0
|
|
3
|
+
## 7.8.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies:
|
|
8
|
-
- `react-router@7.8.0
|
|
9
|
-
- `@react-router/
|
|
10
|
-
- `@react-router/
|
|
11
|
-
|
|
12
|
-
## 7.8.0-pre.2
|
|
13
|
-
|
|
14
|
-
### Patch Changes
|
|
15
|
-
|
|
16
|
-
- Updated dependencies:
|
|
17
|
-
- `react-router@7.8.0-pre.2`
|
|
18
|
-
- `@react-router/node@7.8.0-pre.2`
|
|
19
|
-
- `@react-router/express@7.8.0-pre.2`
|
|
20
|
-
|
|
21
|
-
## 7.8.0-pre.1
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- Updated dependencies:
|
|
26
|
-
- `react-router@7.8.0-pre.1`
|
|
27
|
-
- `@react-router/node@7.8.0-pre.1`
|
|
28
|
-
- `@react-router/express@7.8.0-pre.1`
|
|
29
|
-
|
|
30
|
-
## 7.8.0-pre.0
|
|
31
|
-
|
|
32
|
-
### Patch Changes
|
|
33
|
-
|
|
34
|
-
- Updated dependencies:
|
|
35
|
-
- `react-router@7.8.0-pre.0`
|
|
36
|
-
- `@react-router/express@7.8.0-pre.0`
|
|
37
|
-
- `@react-router/node@7.8.0-pre.0`
|
|
8
|
+
- `react-router@7.8.0`
|
|
9
|
+
- `@react-router/express@7.8.0`
|
|
10
|
+
- `@react-router/node@7.8.0`
|
|
38
11
|
|
|
39
12
|
## 7.7.1
|
|
40
13
|
|
|
@@ -617,10 +590,12 @@
|
|
|
617
590
|
- 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))
|
|
618
591
|
|
|
619
592
|
Informational Resources:
|
|
593
|
+
|
|
620
594
|
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
|
|
621
595
|
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
|
|
622
596
|
|
|
623
597
|
Documentation Resources (better docs specific to Remix are in the works):
|
|
598
|
+
|
|
624
599
|
- <https://reactrouter.com/en/main/utils/defer>
|
|
625
600
|
- <https://reactrouter.com/en/main/components/await>
|
|
626
601
|
- <https://reactrouter.com/en/main/hooks/use-async-value>
|
package/dist/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-router/serve",
|
|
3
|
-
"version": "7.8.0
|
|
3
|
+
"version": "7.8.0",
|
|
4
4
|
"description": "Production application server for React Router",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/react-router/issues"
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"get-port": "5.1.1",
|
|
38
38
|
"morgan": "^1.10.0",
|
|
39
39
|
"source-map-support": "^0.5.21",
|
|
40
|
-
"@react-router/express": "7.8.0
|
|
41
|
-
"@react-router/node": "7.8.0
|
|
40
|
+
"@react-router/express": "7.8.0",
|
|
41
|
+
"@react-router/node": "7.8.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"react-router": "7.8.0
|
|
44
|
+
"react-router": "7.8.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/compression": "^1.7.0",
|