@remix-run/node 1.11.0-pre.1 → 1.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 +10 -17
- package/dist/base64.js +1 -1
- package/dist/crypto.js +1 -1
- package/dist/fetch.js +1 -1
- package/dist/globals.js +1 -1
- package/dist/implementations.js +1 -1
- package/dist/index.js +1 -1
- package/dist/magicExports/esm/remix.js +1 -1
- package/dist/magicExports/remix.d.ts +1 -1
- package/dist/magicExports/remix.js +1 -1
- package/dist/sessions/fileStorage.js +1 -1
- package/dist/stream.js +1 -1
- package/dist/upload/fileUploadHandler.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,32 +1,25 @@
|
|
|
1
1
|
# `@remix-run/node`
|
|
2
2
|
|
|
3
|
-
## 1.11.0
|
|
3
|
+
## 1.11.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- `@remix-run/server-runtime@1.11.0-pre.1`
|
|
9
|
-
|
|
10
|
-
## 1.11.0-pre.0
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- 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 loaders by passing promises instead of resolved values. This has been refered to as "promise over the wire". ([#4920](https://github.com/remix-run/remix/pull/4920))
|
|
7
|
+
- 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))
|
|
15
8
|
|
|
16
9
|
Informational Resources:
|
|
17
10
|
|
|
18
|
-
- https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26
|
|
19
|
-
- https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md
|
|
11
|
+
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
|
|
12
|
+
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
|
|
20
13
|
|
|
21
|
-
Documentation Resources (better docs specific to
|
|
14
|
+
Documentation Resources (better docs specific to Remix are in the works):
|
|
22
15
|
|
|
23
|
-
- https://reactrouter.com/en/main/utils/defer
|
|
24
|
-
- https://reactrouter.com/en/main/components/await
|
|
25
|
-
- https://reactrouter.com/en/main/hooks/use-async-value
|
|
26
|
-
- https://reactrouter.com/en/main/hooks/use-async-error
|
|
16
|
+
- <https://reactrouter.com/en/main/utils/defer>
|
|
17
|
+
- <https://reactrouter.com/en/main/components/await>
|
|
18
|
+
- <https://reactrouter.com/en/main/hooks/use-async-value>
|
|
19
|
+
- <https://reactrouter.com/en/main/hooks/use-async-error>
|
|
27
20
|
|
|
28
21
|
- Updated dependencies:
|
|
29
|
-
- `@remix-run/server-runtime@1.11.0
|
|
22
|
+
- `@remix-run/server-runtime@1.11.0`
|
|
30
23
|
|
|
31
24
|
## 1.10.1
|
|
32
25
|
|
package/dist/base64.js
CHANGED
package/dist/crypto.js
CHANGED
package/dist/fetch.js
CHANGED
package/dist/globals.js
CHANGED
package/dist/implementations.js
CHANGED
package/dist/index.js
CHANGED
package/dist/stream.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remix-run/node",
|
|
3
|
-
"version": "1.11.0
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Node.js platform abstractions for Remix",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/remix/issues"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"typings": "dist/index.d.ts",
|
|
16
16
|
"sideEffects": false,
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@remix-run/server-runtime": "1.11.0
|
|
18
|
+
"@remix-run/server-runtime": "1.11.0",
|
|
19
19
|
"@remix-run/web-fetch": "^4.3.2",
|
|
20
20
|
"@remix-run/web-file": "^3.0.2",
|
|
21
21
|
"@remix-run/web-stream": "^1.0.3",
|