Skip to content

Commit 72e3ca6

Browse files
authored
chore: Update version for release (pre) (#9974)
1 parent a807982 commit 72e3ca6

16 files changed

+91
-17
lines changed

.changeset/pre.json

+12-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,16 @@
88
"react-router-native": "6.7.0",
99
"@remix-run/router": "1.3.0"
1010
},
11-
"changesets": []
11+
"changesets": [
12+
"afraid-ducks-know",
13+
"chilly-stingrays-rhyme",
14+
"little-taxis-bake",
15+
"orange-insects-complain",
16+
"silent-oranges-pay",
17+
"silver-snails-destroy",
18+
"small-squids-wash",
19+
"spotty-cheetahs-live",
20+
"sweet-swans-cry",
21+
"twenty-badgers-notice"
22+
]
1223
}

.changeset/silent-oranges-pay.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
"react-router-dom": patch
44
---
55

6-
allow using `<Link>` with external URLs
6+
Allow using `<Link>` with absolute URLs
77

88
```tsx
9-
<Link to="//example.com/some/path">
9+
<Link to="https://neworigin.com/some/path">
10+
<Link to="//neworigin.com/some/path">
1011
<Link to="https://www.currentorigin.com/path">
1112
```

.changeset/silver-snails-destroy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"@remix-run/router": patch
33
---
44

5-
Remove instanceof check from isRouteErrorResponse to avoid bundling issues on the server
5+
Remove `instanceof` check from `isRouteErrorResponse` to avoid bundling issues on the server

.changeset/spotty-cheetahs-live.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"@remix-run/router": patch
33
---
44

5-
Detect no lazy data and remove abort controller for defer
5+
Detect no lazy data and remove abort controller for `defer`

.changeset/sweet-swans-cry.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"@remix-run/router": patch
33
---
44

5-
Send the name as the value when url-encoding File form data entries
5+
Send the name as the value when url-encoding `File` `FormData` entries

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
},
105105
"filesize": {
106106
"packages/router/dist/router.umd.min.js": {
107-
"none": "41 kB"
107+
"none": "41.5 kB"
108108
},
109109
"packages/react-router/dist/react-router.production.min.js": {
110110
"none": "13 kB"

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.7.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Fix SSR `useLayoutEffect` `console.error` when using `CompatRouter` ([#9820](https://github.com/remix-run/react-router/pull/9820))
8+
- Updated dependencies:
9+
- `react-router-dom@6.7.1-pre.0`
10+
- `react-router@6.7.1-pre.0`
11+
312
## 6.7.0
413

514
### Patch Changes

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom-v5-compat",
3-
"version": "6.7.0",
3+
"version": "6.7.1-pre.0",
44
"description": "Migration path to React Router v6 from v4/5",
55
"keywords": [
66
"react",
@@ -24,7 +24,7 @@
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
2626
"history": "^5.3.0",
27-
"react-router": "6.7.0"
27+
"react-router": "6.7.1-pre.0"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

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

3+
## 6.7.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Fix bug with search params removal ([#9969](https://github.com/remix-run/react-router/pull/9969))
8+
- Respect `preventScrollReset` on `fetcher.Form` ([#9963](https://github.com/remix-run/react-router/pull/9963))
9+
- Use `pagehide` instead of `beforeunload` for `<ScrollRestoration>`. This has better cross-browser support, specifically on Mobile Safari. ([#9945](https://github.com/remix-run/react-router/pull/9945))
10+
- Allow using `<Link>` with absolute URLs ([#9900](https://github.com/remix-run/react-router/pull/9900))
11+
12+
```tsx
13+
<Link to="https://neworigin.com/some/path">
14+
<Link to="//neworigin.com/some/path">
15+
<Link to="https://www.currentorigin.com/path">
16+
```
17+
18+
- Updated dependencies:
19+
- `@remix-run/router@1.3.1-pre.0`
20+
- `react-router@6.7.1-pre.0`
21+
322
## 6.7.0
423

524
### Minor Changes

packages/react-router-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "6.7.0",
3+
"version": "6.7.1-pre.0",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",
@@ -23,8 +23,8 @@
2323
"module": "./dist/index.js",
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
26-
"@remix-run/router": "1.3.0",
27-
"react-router": "6.7.0"
26+
"@remix-run/router": "1.3.1-pre.0",
27+
"react-router": "6.7.1-pre.0"
2828
},
2929
"devDependencies": {
3030
"react": "^18.2.0",

packages/react-router-native/CHANGELOG.md

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

3+
## 6.7.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Fix bug with search params removal ([#9969](https://github.com/remix-run/react-router/pull/9969))
8+
- Updated dependencies:
9+
- `react-router@6.7.1-pre.0`
10+
311
## 6.7.0
412

513
### Patch Changes

packages/react-router-native/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-native",
3-
"version": "6.7.0",
3+
"version": "6.7.1-pre.0",
44
"description": "Declarative routing for React Native applications",
55
"keywords": [
66
"react",
@@ -22,7 +22,7 @@
2222
"types": "./dist/index.d.ts",
2323
"dependencies": {
2424
"@ungap/url-search-params": "^0.1.4",
25-
"react-router": "6.7.0"
25+
"react-router": "6.7.1-pre.0"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

packages/react-router/CHANGELOG.md

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

3+
## 6.7.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Allow using `<Link>` with absolute URLs ([#9900](https://github.com/remix-run/react-router/pull/9900))
8+
9+
```tsx
10+
<Link to="https://neworigin.com/some/path">
11+
<Link to="//neworigin.com/some/path">
12+
<Link to="https://www.currentorigin.com/path">
13+
```
14+
15+
- Updated dependencies:
16+
- `@remix-run/router@1.3.1-pre.0`
17+
318
## 6.7.0
419

520
### Minor Changes

packages/react-router/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "6.7.0",
3+
"version": "6.7.1-pre.0",
44
"description": "Declarative routing for React",
55
"keywords": [
66
"react",
@@ -23,7 +23,7 @@
2323
"module": "./dist/index.js",
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
26-
"@remix-run/router": "1.3.0"
26+
"@remix-run/router": "1.3.1-pre.0"
2727
},
2828
"devDependencies": {
2929
"react": "^18.2.0"

packages/router/CHANGELOG.md

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

3+
## 1.3.1-pre.0
4+
5+
### Patch Changes
6+
7+
- Respect `preventScrollReset` on `fetcher.Form` ([#9963](https://github.com/remix-run/react-router/pull/9963))
8+
- Fix revalidating fetcher `shouldRevalidate` params ([#9948](https://github.com/remix-run/react-router/pull/9948))
9+
- Do not short circuit on hash change only mutation submissions ([#9944](https://github.com/remix-run/react-router/pull/9944))
10+
- Remove `instanceof` check from `isRouteErrorResponse` to avoid bundling issues on the server ([#9930](https://github.com/remix-run/react-router/pull/9930))
11+
- Detect no lazy data and remove abort controller for `defer` ([#9965](https://github.com/remix-run/react-router/pull/9965))
12+
- Send the name as the value when url-encoding `File` `FormData` entries ([#9867](https://github.com/remix-run/react-router/pull/9867))
13+
314
## 1.3.0
415

516
### 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.3.0",
3+
"version": "1.3.1-pre.0",
44
"description": "Nested/Data-driven/Framework-agnostic Routing",
55
"keywords": [
66
"remix",

0 commit comments

Comments
 (0)