react-router 0.0.0-experimental-9ea41ead4 → 0.0.0-experimental-beaa4f52a
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 +23 -0
- package/dist/development/{chunk-RSP5WONC.mjs → chunk-3SBCR7VW.mjs} +759 -463
- package/dist/development/dom-export.d.mts +14 -4
- package/dist/development/dom-export.d.ts +14 -4
- package/dist/development/dom-export.js +269 -201
- package/dist/development/dom-export.mjs +9 -6
- package/dist/{production/fog-of-war-CTZ6x_bd.d.mts → development/fog-of-war-CYAe8qUt.d.mts} +93 -17
- package/dist/development/{fog-of-war-CTZ6x_bd.d.mts → fog-of-war-CrM4EOZM.d.ts} +93 -17
- package/dist/development/index.d.mts +10 -50
- package/dist/development/index.d.ts +10 -50
- package/dist/development/index.js +759 -463
- package/dist/development/index.mjs +2 -2
- package/dist/development/lib/types/route-module.d.mts +13 -5
- package/dist/development/lib/types/route-module.d.ts +13 -5
- package/dist/development/lib/types/route-module.js +1 -1
- package/dist/development/lib/types/route-module.mjs +1 -1
- package/dist/{production/route-data-JFOfNyPS.d.mts → development/route-data-C9zMg-qq.d.mts} +87 -18
- package/dist/development/{route-data-JFOfNyPS.d.mts → route-data-C9zMg-qq.d.ts} +87 -18
- package/dist/production/{chunk-3VYQCA5J.mjs → chunk-DRRQRV77.mjs} +759 -463
- package/dist/production/dom-export.d.mts +14 -4
- package/dist/production/dom-export.d.ts +14 -4
- package/dist/production/dom-export.js +269 -201
- package/dist/production/dom-export.mjs +9 -6
- package/dist/{development/fog-of-war-B3edLoNW.d.ts → production/fog-of-war-CYAe8qUt.d.mts} +93 -17
- package/dist/production/{fog-of-war-B3edLoNW.d.ts → fog-of-war-CrM4EOZM.d.ts} +93 -17
- package/dist/production/index.d.mts +10 -50
- package/dist/production/index.d.ts +10 -50
- package/dist/production/index.js +759 -463
- package/dist/production/index.mjs +2 -2
- package/dist/production/lib/types/route-module.d.mts +13 -5
- package/dist/production/lib/types/route-module.d.ts +13 -5
- package/dist/production/lib/types/route-module.js +1 -1
- package/dist/production/lib/types/route-module.mjs +1 -1
- package/dist/{development/route-data-JFOfNyPS.d.ts → production/route-data-C9zMg-qq.d.mts} +87 -18
- package/dist/production/{route-data-JFOfNyPS.d.ts → route-data-C9zMg-qq.d.ts} +87 -18
- package/package.json +1 -1
- package/dist/development/data-CQbyyGzl.d.mts +0 -11
- package/dist/development/data-CQbyyGzl.d.ts +0 -11
- package/dist/production/data-CQbyyGzl.d.mts +0 -11
- package/dist/production/data-CQbyyGzl.d.ts +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,28 @@
|
|
|
1
1
|
# `react-router`
|
|
2
2
|
|
|
3
|
+
## 7.1.3
|
|
4
|
+
|
|
5
|
+
_No changes_
|
|
6
|
+
|
|
7
|
+
## 7.1.2
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Fix issue with fetcher data cleanup in the data layer on fetcher unmount ([#12681](https://github.com/remix-run/react-router/pull/12681))
|
|
12
|
+
- Do not rely on `symbol` for filtering out `redirect` responses from loader data ([#12694](https://github.com/remix-run/react-router/pull/12694))
|
|
13
|
+
|
|
14
|
+
Previously, some projects were getting type checking errors like:
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
error TS4058: Return type of exported function has or is using name 'redirectSymbol' from external module "node_modules/..." but cannot be named.
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Now that `symbol`s are not used for the `redirect` response type, these errors should no longer be present.
|
|
21
|
+
|
|
3
22
|
## 7.1.1
|
|
4
23
|
|
|
24
|
+
_No changes_
|
|
25
|
+
|
|
5
26
|
## 7.1.0
|
|
6
27
|
|
|
7
28
|
### Patch Changes
|
|
@@ -23,6 +44,8 @@
|
|
|
23
44
|
|
|
24
45
|
## 7.0.1
|
|
25
46
|
|
|
47
|
+
_No changes_
|
|
48
|
+
|
|
26
49
|
## 7.0.0
|
|
27
50
|
|
|
28
51
|
### Major Changes
|