Skip to content

Commit 12f3bd3

Browse files
chore: Update version for release (pre) (#9121)
* 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 e6a5372 commit 12f3bd3

File tree

12 files changed

+71
-11
lines changed

12 files changed

+71
-11
lines changed

.changeset/pre.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"strange-terms-pretend",
3232
"strong-bees-pay",
3333
"stupid-dryers-shout",
34+
"sweet-books-switch",
3435
"thick-lions-taste",
3536
"thirty-monkeys-cheer",
3637
"tough-zoos-cry",

.changeset/sweet-books-switch.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
"@remix-run/router": patch
44
---
55

6-
fix: Rename `<Deferred>` to `<Await>`
6+
fix: Rename `<Deferred>` to `<Await>` (#9095)
77

88
- We are no longer replacing the `Promise` on `loaderData` with the value/error
99
when it settles so it's now always a `Promise`.
1010
- To that end, we changed from `<Deferred value={promise}>` to
1111
`<Await resolve={promise}>` for clarity, and it also now supports using
1212
`<Await>` with raw promises from anywhere, not only those on `loaderData`
1313
from a defer() call.
14-
- The hook is also changed from `useDeferredData` -> `useAsyncValue`
14+
- Note that raw promises will not be automatically cancelled on interruptions
15+
so they are not recommended
16+
- The hooks are now `useAsyncValue`/`useAsyncError`

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

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

3+
## 6.4.0-pre.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
9+
10+
311
## 6.4.0-pre.10
412

513
### 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.4.0-pre.10",
3+
"version": "6.4.0-pre.11",
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.0-pre.10"
27+
"react-router": "6.4.0-pre.11"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

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

3+
## 6.4.0-pre.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [c3406eb9]
8+
9+
310
## 6.4.0-pre.10
411

512
### Patch Changes

packages/react-router-dom/package.json

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

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.4.0-pre.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
9+
310
## 6.4.0-pre.10
411

512
### 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.4.0-pre.10",
3+
"version": "6.4.0-pre.11",
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.0-pre.10"
25+
"react-router": "6.4.0-pre.11"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

packages/react-router/CHANGELOG.md

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

3+
## 6.4.0-pre.11
4+
5+
### Patch Changes
6+
7+
- c3406eb9: fix: Rename `<Deferred>` to `<Await>` (#9095)
8+
9+
- We are no longer replacing the `Promise` on `loaderData` with the value/error
10+
when it settles so it's now always a `Promise`.
11+
- To that end, we changed from `<Deferred value={promise}>` to
12+
`<Await resolve={promise}>` for clarity, and it also now supports using
13+
`<Await>` with raw promises from anywhere, not only those on `loaderData`
14+
from a defer() call.
15+
- Note that raw promises will not be automatically cancelled on interruptions
16+
so they are not recommended
17+
- The hooks are now `useAsyncValue`/`useAsyncError`
18+
19+
- Updated dependencies
20+
- @remix-run/router@0.2.0-pre.6
21+
322
## 6.4.0-pre.10
423

524
### Patch 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.4.0-pre.10",
3+
"version": "6.4.0-pre.11",
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": "0.2.0-pre.5"
26+
"@remix-run/router": "0.2.0-pre.6"
2727
},
2828
"devDependencies": {
2929
"react": "^18.2.0"

packages/router/CHANGELOG.md

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

3+
## 0.2.0-pre.6
4+
5+
### Patch Changes
6+
7+
- c3406eb9: fix: Rename `<Deferred>` to `<Await>` (#9095)
8+
9+
- We are no longer replacing the `Promise` on `loaderData` with the value/error
10+
when it settles so it's now always a `Promise`.
11+
- To that end, we changed from `<Deferred value={promise}>` to
12+
`<Await resolve={promise}>` for clarity, and it also now supports using
13+
`<Await>` with raw promises from anywhere, not only those on `loaderData`
14+
from a defer() call.
15+
- Note that raw promises will not be automatically cancelled on interruptions
16+
so they are not recommended
17+
- The hooks are now `useAsyncValue`/`useAsyncError`
18+
319
## 0.2.0-pre.5
420

521
### Patch 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": "0.2.0-pre.5",
3+
"version": "0.2.0-pre.6",
44
"description": "Nested/Data-driven/Framework-agnostic Routing",
55
"keywords": [
66
"remix",

0 commit comments

Comments
 (0)