Skip to content

Commit f806fa4

Browse files
chore: Update version for release (pre) (#11889)
1 parent 409bd43 commit f806fa4

File tree

14 files changed

+66
-8
lines changed

14 files changed

+66
-8
lines changed

.changeset/pre.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
"react-router-native": "6.26.0",
99
"@remix-run/router": "1.19.0"
1010
},
11-
"changesets": []
11+
"changesets": [
12+
"cyan-bobcats-notice",
13+
"silver-coats-work"
14+
]
1215
}

.changeset/silver-coats-work.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
"@remix-run/router": patch
55
---
66

7-
Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` because it will now be called on the first navigation to paths matching splat/param routes in case there exists a higher-scoring route match not yet discovered
7+
Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` to match new behavior

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,18 @@ Date: YYYY-MM-DD
203203
**Full Changelog**: [`v6.X.Y...v6.X.Y`](https://github.com/remix-run/react-router/compare/[email protected]@6.X.Y)
204204
-->
205205

206+
## v6.26.1
207+
208+
Date: 2024-08-15
209+
210+
### Patch Changes
211+
212+
- Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` to match new behavior ([#11888](https://github.com/remix-run/react-router/pull/11888))
213+
- Update `unstable_patchRoutesOnNavigation` logic so that we call the method when we match routes with dynamic param or splat segments in case there exists a higher-scoring static route that we've not yet discovered ([#11883](https://github.com/remix-run/react-router/pull/11883))
214+
- We also now leverage an internal FIFO queue of previous paths we've already called `unstable_patchRoutesOnNavigation` against so that we don't re-call on subsequent navigations to the same path
215+
216+
**Full Changelog**: [`v6.26.0...v6.26.1`](https://github.com/remix-run/react-router/compare/[email protected]@6.26.1)
217+
206218
## v6.26.0
207219

208220
Date: 2024-08-01

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"none": "17.3 kB"
118118
},
119119
"packages/react-router-dom/dist/umd/react-router-dom.production.min.js": {
120-
"none": "23.7 kB"
120+
"none": "23.8 kB"
121121
}
122122
},
123123
"pnpm": {

packages/react-router-dom-v5-compat/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# `react-router-dom-v5-compat`
22

3+
## 6.26.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@remix-run/[email protected]`
9+
10+
11+
312
## 6.26.0
413

514
### Patch Changes

packages/react-router-dom-v5-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom-v5-compat",
3-
"version": "6.26.0",
3+
"version": "6.26.1-pre.0",
44
"description": "Migration path to React Router v6 from v4/5",
55
"keywords": [
66
"react",

packages/react-router-dom/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# `react-router-dom`
22

3+
## 6.26.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` because it will now be called on the first navigation to paths matching splat/param routes in case there exists a higher-scoring route match not yet discovered ([#11888](https://github.com/remix-run/react-router/pull/11888))
8+
- Updated dependencies:
9+
- `@remix-run/[email protected]`
10+
11+
312
## 6.26.0
413

514
### Minor Changes

packages/react-router-dom/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "6.26.0",
3+
"version": "6.26.1-pre.0",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",

packages/react-router-native/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `react-router-native`
22

3+
## 6.26.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
9+
310
## 6.26.0
411

512
### Patch Changes

packages/react-router-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-native",
3-
"version": "6.26.0",
3+
"version": "6.26.1-pre.0",
44
"description": "Declarative routing for React Native applications",
55
"keywords": [
66
"react",

packages/react-router/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# `react-router`
22

3+
## 6.26.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` because it will now be called on the first navigation to paths matching splat/param routes in case there exists a higher-scoring route match not yet discovered ([#11888](https://github.com/remix-run/react-router/pull/11888))
8+
- Updated dependencies:
9+
- `@remix-run/[email protected]`
10+
311
## 6.26.0
412

513
### Minor Changes

packages/react-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "6.26.0",
3+
"version": "6.26.1-pre.0",
44
"description": "Declarative routing for React",
55
"keywords": [
66
"react",

packages/router/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# `@remix-run/router`
22

3+
## 1.19.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Fog of War: Update `unstable_patchRoutesOnMiss` logic so that we call the method when we match routes with dynamic param or splat segments in case there exists a higher-scoring static route that we've not yet discovered. ([#11883](https://github.com/remix-run/react-router/pull/11883))
8+
9+
- We also now leverage an internal FIFO queue of previous paths we've already called `unstable_patchRouteOnMiss` against so that we don't re-call on subsequent navigations to the same path
10+
11+
- Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` because it will now be called on the first navigation to paths matching splat/param routes in case there exists a higher-scoring route match not yet discovered ([#11888](https://github.com/remix-run/react-router/pull/11888))
12+
313
## 1.19.0
414

515
### Minor Changes

packages/router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/router",
3-
"version": "1.19.0",
3+
"version": "1.19.1-pre.0",
44
"description": "Nested/Data-driven/Framework-agnostic Routing",
55
"keywords": [
66
"remix",

0 commit comments

Comments
 (0)