react-router-native 6.16.0-pre.2 → 6.16.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 +2 -22
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,31 +1,11 @@
|
|
|
1
1
|
# `react-router-native`
|
|
2
2
|
|
|
3
|
-
## 6.16.0
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies:
|
|
8
|
-
- `react-router@6.16.0-pre.2`
|
|
9
|
-
|
|
10
|
-
## 6.16.0-pre.1
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- Updated dependencies:
|
|
15
|
-
- `react-router@6.16.0-pre.1`
|
|
16
|
-
|
|
17
|
-
## 6.16.0-pre.0
|
|
3
|
+
## 6.16.0
|
|
18
4
|
|
|
19
5
|
### Minor Changes
|
|
20
6
|
|
|
21
|
-
- Removed internal API only required for the Remix v1 back-compat layer and no longer needed in Remix v2 (`_isFetchActionRedirect`, `_hasFetcherDoneAnything`) ([#10715](https://github.com/remix-run/react-router/pull/10715))
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- Move the `@private` class export `ErrorResponse` to an `UNSAFE_ErrorResponseImpl` export since it is an implementation detail and there should be no construction of `ErrorResponse` instances in userland. This frees us up to export a `type ErrorResponse` which correlates to an instance of the class via `InstanceType`. Userland code should only ever be using `ErrorResponse` as a type and should be type-narrowing via `isRouteErrorResponse`. ([#10811](https://github.com/remix-run/react-router/pull/10811))
|
|
26
|
-
- Export `ShouldRevalidateFunctionArgs` interface ([#10797](https://github.com/remix-run/react-router/pull/10797))
|
|
27
7
|
- Updated dependencies:
|
|
28
|
-
- `react-router@6.16.0
|
|
8
|
+
- `react-router@6.16.0`
|
|
29
9
|
|
|
30
10
|
## 6.15.0
|
|
31
11
|
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-router-native",
|
|
3
|
-
"version": "6.16.0
|
|
3
|
+
"version": "6.16.0",
|
|
4
4
|
"description": "Declarative routing for React Native applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"types": "./dist/index.d.ts",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@ungap/url-search-params": "^0.2.2",
|
|
25
|
-
"react-router": "6.16.0
|
|
25
|
+
"react-router": "6.16.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"react": "^18.2.0",
|