@react-router/serve 7.11.0-pre.0 → 7.11.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 -4
- package/dist/cli.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# `@react-router/serve`
|
|
2
2
|
|
|
3
|
-
## 7.11.0
|
|
3
|
+
## 7.11.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- support custom entrypoints for RSC framework mode ([#14643](https://github.com/remix-run/react-router/pull/14643))
|
|
8
8
|
- Update `compression` and `morgan` dependencies to address `on-headers` CVE: [GHSA-76c9-3jph-rj3q](https://github.com/advisories/GHSA-76c9-3jph-rj3q) ([#14652](https://github.com/remix-run/react-router/pull/14652))
|
|
9
9
|
- Updated dependencies:
|
|
10
|
-
- `react-router@7.11.0
|
|
11
|
-
- `@react-router/node@7.11.0
|
|
12
|
-
- `@react-router/express@7.11.0
|
|
10
|
+
- `react-router@7.11.0`
|
|
11
|
+
- `@react-router/node@7.11.0`
|
|
12
|
+
- `@react-router/express@7.11.0`
|
|
13
13
|
|
|
14
14
|
## 7.10.1
|
|
15
15
|
|
|
@@ -701,10 +701,12 @@
|
|
|
701
701
|
- 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))
|
|
702
702
|
|
|
703
703
|
Informational Resources:
|
|
704
|
+
|
|
704
705
|
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
|
|
705
706
|
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
|
|
706
707
|
|
|
707
708
|
Documentation Resources (better docs specific to Remix are in the works):
|
|
709
|
+
|
|
708
710
|
- <https://reactrouter.com/en/main/utils/defer>
|
|
709
711
|
- <https://reactrouter.com/en/main/components/await>
|
|
710
712
|
- <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.11.0
|
|
3
|
+
"version": "7.11.0",
|
|
4
4
|
"description": "Production application server for React Router",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/react-router/issues"
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"get-port": "5.1.1",
|
|
40
40
|
"morgan": "^1.10.1",
|
|
41
41
|
"source-map-support": "^0.5.21",
|
|
42
|
-
"@react-router/express": "7.11.0
|
|
43
|
-
"@react-router/node": "7.11.0
|
|
42
|
+
"@react-router/express": "7.11.0",
|
|
43
|
+
"@react-router/node": "7.11.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"react-router": "7.11.0
|
|
46
|
+
"react-router": "7.11.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/compression": "^1.8.1",
|