react-router 6.27.0-pre.1 → 6.27.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 CHANGED
@@ -1,29 +1,23 @@
1
1
  # `react-router`
2
2
 
3
- ## 6.27.0-pre.1
4
-
5
- ### Patch Changes
6
-
7
- - Updated dependencies:
8
- - `@remix-run/router@1.20.0-pre.1`
9
-
10
- ## 6.27.0-pre.0
3
+ ## 6.27.0
11
4
 
12
5
  ### Minor Changes
13
6
 
14
7
  - Stabilize `unstable_patchRoutesOnNavigation` ([#11973](https://github.com/remix-run/react-router/pull/11973))
8
+ - Add new `PatchRoutesOnNavigationFunctionArgs` type for convenience ([#11967](https://github.com/remix-run/react-router/pull/11967))
15
9
  - Stabilize `unstable_dataStrategy` ([#11974](https://github.com/remix-run/react-router/pull/11974))
16
10
  - Stabilize the `unstable_flushSync` option for navigations and fetchers ([#11989](https://github.com/remix-run/react-router/pull/11989))
17
11
  - Stabilize the `unstable_viewTransition` option for navigations and the corresponding `unstable_useViewTransitionState` hook ([#11989](https://github.com/remix-run/react-router/pull/11989))
18
12
 
19
13
  ### Patch Changes
20
14
 
21
- - - Fix bug when submitting to the current contextual route (parent route with an index child) when an `?index` param already exists from a prior submission ([#12003](https://github.com/remix-run/react-router/pull/12003))
22
- - Fix `useFormAction` bug - when removing `?index` param it would not keep other non-Remix `index` params
23
- - - Fix types for `RouteObject` within `PatchRoutesOnNavigationFunction`'s `patch` method so it doesn't expect agnostic route objects passed to `patch` ([#11967](https://github.com/remix-run/react-router/pull/11967))
24
- - Add new `PatchRoutesOnNavigationFunctionArgs` type for convenience
15
+ - Fix bug when submitting to the current contextual route (parent route with an index child) when an `?index` param already exists from a prior submission ([#12003](https://github.com/remix-run/react-router/pull/12003))
16
+ - Fix `useFormAction` bug - when removing `?index` param it would not keep other non-Remix `index` params ([#12003](https://github.com/remix-run/react-router/pull/12003))
17
+ - Fix types for `RouteObject` within `PatchRoutesOnNavigationFunction`'s `patch` method so it doesn't expect agnostic route objects passed to `patch` ([#11967](https://github.com/remix-run/react-router/pull/11967))
18
+
25
19
  - Updated dependencies:
26
- - `@remix-run/router@1.20.0-pre.0`
20
+ - `@remix-run/router@1.20.0`
27
21
 
28
22
  ## 6.26.2
29
23
 
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.27.0-pre.1
2
+ * React Router v6.27.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/dist/main.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.27.0-pre.1
2
+ * React Router v6.27.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.27.0-pre.1
2
+ * React Router v6.27.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.27.0-pre.1
2
+ * React Router v6.27.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.27.0-pre.1
2
+ * React Router v6.27.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.27.0-pre.1
2
+ * React Router v6.27.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-router",
3
- "version": "6.27.0-pre.1",
3
+ "version": "6.27.0",
4
4
  "description": "Declarative routing for React",
5
5
  "keywords": [
6
6
  "react",
@@ -23,11 +23,11 @@
23
23
  "module": "./dist/index.js",
24
24
  "types": "./dist/index.d.ts",
25
25
  "dependencies": {
26
- "@remix-run/router": "1.20.0-pre.1"
26
+ "@remix-run/router": "1.20.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "react": "^18.2.0",
30
- "react-router-dom": "6.27.0-pre.1"
30
+ "react-router-dom": "6.27.0"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "react": ">=16.8"