@remix-run/node 2.9.0-pre.7 → 2.9.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 +5 -54
- package/dist/crypto.js +1 -1
- package/dist/globals.js +1 -1
- package/dist/implementations.js +1 -1
- package/dist/index.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,67 +1,18 @@
|
|
|
1
1
|
# `@remix-run/node`
|
|
2
2
|
|
|
3
|
-
## 2.9.0
|
|
3
|
+
## 2.9.0
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
- Updated dependencies:
|
|
8
|
-
- `@remix-run/server-runtime@2.9.0-pre.7`
|
|
9
|
-
|
|
10
|
-
## 2.9.0-pre.6
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- Updated dependencies:
|
|
15
|
-
- `@remix-run/server-runtime@2.9.0-pre.6`
|
|
16
|
-
|
|
17
|
-
## 2.9.0-pre.5
|
|
18
|
-
|
|
19
|
-
### Patch Changes
|
|
20
|
-
|
|
21
|
-
- Updated dependencies:
|
|
22
|
-
- `@remix-run/server-runtime@2.9.0-pre.5`
|
|
23
|
-
|
|
24
|
-
## 2.9.0-pre.4
|
|
25
|
-
|
|
26
|
-
### Patch Changes
|
|
27
|
-
|
|
28
|
-
- Updated dependencies:
|
|
29
|
-
- `@remix-run/server-runtime@2.9.0-pre.4`
|
|
30
|
-
|
|
31
|
-
## 2.9.0-pre.3
|
|
32
|
-
|
|
33
|
-
### Patch Changes
|
|
5
|
+
### Minor Changes
|
|
34
6
|
|
|
35
|
-
-
|
|
7
|
+
- Use undici as our fetch polyfill going forward ([#9106](https://github.com/remix-run/remix/pull/9106), [#9111](https://github.com/remix-run/remix/pull/9111))
|
|
8
|
+
- Put `undici` fetch polyfill behind a new `installGlobals({ nativeFetch: true })` parameter ([#9198](https://github.com/remix-run/remix/pull/9198))
|
|
36
9
|
- `remix-serve` will default to using `undici` for the fetch polyfill if `future._unstable_singleFetch` is enabled because the single fetch implementation relies on the `undici` polyfill
|
|
37
10
|
- Any users opting into Single Fetch and managing their own polfill will need to pass the flag to `installGlobals` on their own to avoid runtime errors with Single Fetch
|
|
38
|
-
- Updated dependencies:
|
|
39
|
-
- `@remix-run/server-runtime@2.9.0-pre.3`
|
|
40
|
-
|
|
41
|
-
## 2.9.0-pre.2
|
|
42
|
-
|
|
43
|
-
### Patch Changes
|
|
44
|
-
|
|
45
|
-
- Updated dependencies:
|
|
46
|
-
- `@remix-run/server-runtime@2.9.0-pre.2`
|
|
47
|
-
|
|
48
|
-
## 2.9.0-pre.1
|
|
49
|
-
|
|
50
|
-
### Patch Changes
|
|
51
|
-
|
|
52
|
-
- Updated dependencies:
|
|
53
|
-
- `@remix-run/server-runtime@2.9.0-pre.1`
|
|
54
|
-
|
|
55
|
-
## 2.9.0-pre.0
|
|
56
|
-
|
|
57
|
-
### Minor Changes
|
|
58
|
-
|
|
59
|
-
- Use undici as our fetch polyfill going forward. #9106 ([#9111](https://github.com/remix-run/remix/pull/9111))
|
|
60
11
|
|
|
61
12
|
### Patch Changes
|
|
62
13
|
|
|
63
14
|
- Updated dependencies:
|
|
64
|
-
- `@remix-run/server-runtime@2.9.0
|
|
15
|
+
- `@remix-run/server-runtime@2.9.0`
|
|
65
16
|
|
|
66
17
|
## 2.8.1
|
|
67
18
|
|
package/dist/crypto.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": "2.9.0
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "Node.js platform abstractions for Remix",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/remix/issues"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"source-map-support": "^0.5.21",
|
|
24
24
|
"stream-slice": "^0.1.2",
|
|
25
25
|
"undici": "^6.10.1",
|
|
26
|
-
"@remix-run/server-runtime": "2.9.0
|
|
26
|
+
"@remix-run/server-runtime": "2.9.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/cookie-signature": "^1.0.3",
|