Skip to content

Commit e158bc1

Browse files
authored
chore: Update version for release (#9988)
1 parent f85313e commit e158bc1

22 files changed

+38
-139
lines changed

.changeset/afraid-ducks-know.md

-6
This file was deleted.

.changeset/chilly-stingrays-rhyme.md

-6
This file was deleted.

.changeset/little-taxis-bake.md

-5
This file was deleted.

.changeset/orange-insects-complain.md

-5
This file was deleted.

.changeset/pre.json

-23
This file was deleted.

.changeset/silver-snails-destroy.md

-5
This file was deleted.

.changeset/six-tigers-fold.md

-6
This file was deleted.

.changeset/small-squids-wash.md

-5
This file was deleted.

.changeset/spotty-cheetahs-live.md

-5
This file was deleted.

.changeset/sweet-swans-cry.md

-5
This file was deleted.

.changeset/sweet-trains-call.md

-11
This file was deleted.

.changeset/twenty-badgers-notice.md

-5
This file was deleted.

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

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
11
# `react-router-dom-v5-compat`
22

3-
## 6.8.0-pre.1
4-
5-
### Patch Changes
6-
7-
- Updated dependencies:
8-
- `react-router-dom@6.8.0-pre.1`
9-
- `react-router@6.8.0-pre.1`
10-
11-
## 6.7.1-pre.0
3+
## 6.8.0
124

135
### Patch Changes
146

157
- Fix SSR `useLayoutEffect` `console.error` when using `CompatRouter` ([#9820](https://github.com/remix-run/react-router/pull/9820))
168
- Updated dependencies:
17-
- `react-router-dom@6.7.1-pre.0`
18-
- `react-router@6.7.1-pre.0`
9+
- `react-router-dom@6.8.0`
10+
- `react-router@6.8.0`
1911

2012
## 6.7.0
2113

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.8.0-pre.1",
3+
"version": "6.8.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.8.0-pre.1"
27+
"react-router": "6.8.0"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

+9-16
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,26 @@
11
# `react-router-dom`
22

3-
## 6.8.0-pre.1
3+
## 6.8.0
44

55
### Minor Changes
66

77
- Support absolute URLs in `<Link to>`. If the URL is for the current origin, it will still do a client-side navigation. If the URL is for a different origin then it will do a fresh document request for the new origin. ([#9900](https://github.com/remix-run/react-router/pull/9900))
88

99
```tsx
10-
<Link to="https://neworigin.com/some/path">
11-
<Link to="//neworigin.com/some/path">
12-
<Link to="https://www.currentorigin.com/path">
10+
<Link to="https://neworigin.com/some/path"> {/* Document request */}
11+
<Link to="//neworigin.com/some/path"> {/* Document request */}
12+
<Link to="https://www.currentorigin.com/path"> {/* Client-side navigation */}
1313
```
1414

1515
### Patch Changes
1616

17-
- Updated dependencies:
18-
- `react-router@6.8.0-pre.1`
19-
20-
## 6.7.1-pre.0
21-
22-
### Patch Changes
23-
24-
- Fix bug with search params removal ([#9969](https://github.com/remix-run/react-router/pull/9969))
25-
- Respect `preventScrollReset` on `fetcher.Form` ([#9963](https://github.com/remix-run/react-router/pull/9963))
17+
- Fix bug with search params removal via `useSearchParams` ([#9969](https://github.com/remix-run/react-router/pull/9969))
18+
- Respect `preventScrollReset` on `<fetcher.Form>` ([#9963](https://github.com/remix-run/react-router/pull/9963))
19+
- Fix navigation for hash routers on manual URL changes ([#9980](https://github.com/remix-run/react-router/pull/9980))
2620
- 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))
27-
2821
- Updated dependencies:
29-
- `@remix-run/router@1.3.1-pre.0`
30-
- `react-router@6.7.1-pre.0`
22+
- `@remix-run/router@1.3.1`
23+
- `react-router@6.8.0`
3124

3225
## 6.7.0
3326

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.8.0-pre.1",
3+
"version": "6.8.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.1-pre.0",
27-
"react-router": "6.8.0-pre.1"
26+
"@remix-run/router": "1.3.1",
27+
"react-router": "6.8.0"
2828
},
2929
"devDependencies": {
3030
"react": "^18.2.0",

packages/react-router-native/CHANGELOG.md

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
# `react-router-native`
22

3-
## 6.8.0-pre.1
3+
## 6.8.0
44

55
### Patch Changes
66

7+
- Fix bug with search params removal via `useSearchParams` ([#9969](https://github.com/remix-run/react-router/pull/9969))
78
- Updated dependencies:
8-
- `react-router@6.8.0-pre.1`
9-
10-
## 6.7.1-pre.0
11-
12-
### Patch Changes
13-
14-
- Fix bug with search params removal ([#9969](https://github.com/remix-run/react-router/pull/9969))
15-
- Updated dependencies:
16-
- `react-router@6.7.1-pre.0`
9+
- `react-router@6.8.0`
1710

1811
## 6.7.0
1912

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.8.0-pre.1",
3+
"version": "6.8.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.8.0-pre.1"
25+
"react-router": "6.8.0"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

packages/react-router/CHANGELOG.md

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

3-
## 6.8.0-pre.1
3+
## 6.8.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@remix-run/router@1.3.1`
49

510
## 6.7.1-pre.0
611

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.8.0-pre.1",
3+
"version": "6.8.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.1-pre.0"
26+
"@remix-run/router": "1.3.1"
2727
},
2828
"devDependencies": {
2929
"react": "^18.2.0"

packages/router/CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
# `@remix-run/router`
22

3-
## 1.3.1-pre.0
3+
## 1.3.1
44

55
### Patch Changes
66

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))
7+
- Fixes 2 separate issues for revalidating fetcher `shouldRevalidate` calls ([#9948](https://github.com/remix-run/react-router/pull/9948))
8+
- The `shouldRevalidate` function was only being called for _explicit_ revalidation scenarios (after a mutation, manual `useRevalidator` call, or an `X-Remix-Revalidate` header used for cookie setting in Remix). It was not properly being called on _implicit_ revalidation scenarios that also apply to navigation `loader` revalidation, such as a change in search params or clicking a link for the page we're already on. It's now correctly called in those additional scenarios.
9+
- The parameters being passed were incorrect and inconsistent with one another since the `current*`/`next*` parameters reflected the static `fetcher.load` URL (and thus were identical). Instead, they should have reflected the the navigation that triggered the revalidation (as the `form*` parameters did). These parameters now correctly reflect the triggering navigation.
10+
- Respect `preventScrollReset` on `<fetcher.Form>` ([#9963](https://github.com/remix-run/react-router/pull/9963))
911
- Do not short circuit on hash change only mutation submissions ([#9944](https://github.com/remix-run/react-router/pull/9944))
1012
- 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))
13+
- Fix navigation for hash routers on manual URL changes ([#9980](https://github.com/remix-run/react-router/pull/9980))
14+
- Detect when a `defer` call only contains critical data and remove the `AbortController` ([#9965](https://github.com/remix-run/react-router/pull/9965))
1215
- Send the name as the value when url-encoding `File` `FormData` entries ([#9867](https://github.com/remix-run/react-router/pull/9867))
1316

1417
## 1.3.0

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

0 commit comments

Comments
 (0)