Skip to content

Commit d4c7399

Browse files
mcanshgithub-actions[bot]brophdawg11
authored
chore: Update version for release (pre) (#9632)
* chore: Update version for release (pre) * Update changelogs Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Brophy <[email protected]>
1 parent 20065e2 commit d4c7399

File tree

13 files changed

+64
-13
lines changed

13 files changed

+64
-13
lines changed

.changeset/blue-cycles-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"react-router-dom": patch
33
---
44

5-
Properly serialize/deserialize ErrorResponse instances when using built-in hydration
5+
Properly serialize/deserialize `ErrorResponse` instances when using built-in hydration

.changeset/pre.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,12 @@
88
"react-router-native": "6.4.3",
99
"@remix-run/router": "1.0.3"
1010
},
11-
"changesets": []
11+
"changesets": [
12+
"blue-cycles-check",
13+
"flat-trainers-speak",
14+
"funny-oranges-arrive",
15+
"pretty-dolls-bathe",
16+
"proud-timers-tickle",
17+
"stale-coats-smoke"
18+
]
1219
}

.changeset/proud-timers-tickle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"@remix-run/router": patch
33
---
44

5-
- Throw an error if an `action`/`loader` function returns `undefined` as revalidations need to know whether the loader has previously been executed. `undefined` also causes issues during SSR stringification for hydration. You should always ensure you loader/acton return a value, and you may return `null` if you don't wish to return anything.
5+
- Throw an error if an `action`/`loader` function returns `undefined` as revalidations need to know whether the loader has previously been executed. `undefined` also causes issues during SSR stringification for hydration. You should always ensure you `loader`/`action` return a value, and you may return `null` if you don't wish to return anything.
66
- Enhanced `ErrorResponse` bodies to contain more descriptive text in internal 403/404/405 scenarios

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# `react-router-dom-v5-compat`
22

3+
## 6.4.4-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
9+
10+
311
## 6.4.3
412

513
### Patch Changes

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom-v5-compat",
3-
"version": "6.4.3",
3+
"version": "6.4.4-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.4.3"
27+
"react-router": "6.4.4-pre.0"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# `react-router-dom`
22

3+
## 6.4.4-pre.0
4+
5+
### Patch Changes
6+
7+
- Properly serialize/deserialize `ErrorResponse` instances when using built-in hydration ([#9593](https://github.com/remix-run/react-router/pull/9593))
8+
- Support `basename` in static data routers ([#9591](https://github.com/remix-run/react-router/pull/9591))
9+
- Fix issues with encoded characters in descendant routes ([#9589](https://github.com/remix-run/react-router/pull/9589))
10+
- Updated dependencies:
11+
- `@remix-run/[email protected]`
12+
13+
314
## 6.4.3
415

516
### Patch Changes

packages/react-router-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "6.4.3",
3+
"version": "6.4.4-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.0.3",
27-
"react-router": "6.4.3"
26+
"@remix-run/router": "1.0.4-pre.0",
27+
"react-router": "6.4.4-pre.0"
2828
},
2929
"devDependencies": {
3030
"react": "^18.2.0",

packages/react-router-native/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `react-router-native`
22

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

512
### Patch Changes

packages/react-router-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-native",
3-
"version": "6.4.3",
3+
"version": "6.4.4-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.4.3"
25+
"react-router": "6.4.4-pre.0"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

packages/react-router/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# `react-router`
22

3+
## 6.4.4-pre.0
4+
5+
### Patch Changes
6+
7+
- Fix issues with encoded characters in descendant routes ([#9589](https://github.com/remix-run/react-router/pull/9589))
8+
- Updated dependencies:
9+
- `@remix-run/[email protected]`
10+
311
## 6.4.3
412

513
### Patch Changes

packages/react-router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "6.4.3",
3+
"version": "6.4.4-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.0.3"
26+
"@remix-run/router": "1.0.4-pre.0"
2727
},
2828
"devDependencies": {
2929
"react": "^18.2.0"

packages/router/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# `@remix-run/router`
22

3+
## 1.0.4-pre.0
4+
5+
### Patch Changes
6+
7+
- Properly handle redirects to external domains ([#9590](https://github.com/remix-run/react-router/pull/9590))
8+
- Preserve the HTTP method on 307/308 redirects ([#9597](https://github.com/remix-run/react-router/pull/9597))
9+
- Support `basename` in static data routers ([#9591](https://github.com/remix-run/react-router/pull/9591))
10+
- Throw an error if an `action`/`loader` function returns `undefined` as revalidations need to know whether the loader has previously been executed. `undefined` also causes issues during SSR stringification for hydration. You should always ensure your `loader`/`action` return a value, and you may return `null` if you don't wish to return anything. ([#9511](https://github.com/remix-run/react-router/pull/9511))
11+
- Enhanced `ErrorResponse` bodies to contain more descriptive text in internal 403/404/405 scenarios ([#9511](https://github.com/remix-run/react-router/pull/9511))
12+
313
## 1.0.3
414

515
### Patch Changes

packages/router/package.json

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

0 commit comments

Comments
 (0)