Skip to content

Commit

Permalink
chore: Update version for release (#11968)
Browse files Browse the repository at this point in the history
* chore: Update version for release

* Update changelog

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Matt Brophy <matt@brophy.org>
  • Loading branch information
3 people authored Sep 9, 2024
1 parent a018177 commit eeb86ab
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 66 deletions.
14 changes: 0 additions & 14 deletions .changeset/four-books-bow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hot-insects-rescue.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/pre.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-news-kick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/soft-socks-remain.md

This file was deleted.

8 changes: 4 additions & 4 deletions packages/react-router-dom-v5-compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# `react-router-dom-v5-compat`

## 6.26.2-pre.0
## 6.26.2

### Patch Changes

- Updated dependencies:
- `@remix-run/router@1.19.2-pre.0`
- `react-router@6.26.2-pre.0`
- `react-router-dom@6.26.2-pre.0`
- `@remix-run/router@1.19.2`
- `react-router@6.26.2`
- `react-router-dom@6.26.2`

## 6.26.1

Expand Down
2 changes: 1 addition & 1 deletion packages/react-router-dom-v5-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-router-dom-v5-compat",
"version": "6.26.2-pre.0",
"version": "6.26.2",
"description": "Migration path to React Router v6 from v4/5",
"keywords": [
"react",
Expand Down
6 changes: 3 additions & 3 deletions packages/react-router-dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# `react-router-dom`

## 6.26.2-pre.0
## 6.26.2

### Patch Changes

- Updated dependencies:
- `@remix-run/router@1.19.2-pre.0`
- `react-router@6.26.2-pre.0`
- `@remix-run/router@1.19.2`
- `react-router@6.26.2`

## 6.26.1

Expand Down
2 changes: 1 addition & 1 deletion packages/react-router-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-router-dom",
"version": "6.26.2-pre.0",
"version": "6.26.2",
"description": "Declarative routing for React web applications",
"keywords": [
"react",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-router-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# `react-router-native`

## 6.26.2-pre.0
## 6.26.2

### Patch Changes

- Updated dependencies:
- `react-router@6.26.2-pre.0`
- `react-router@6.26.2`

## 6.26.1

Expand Down
2 changes: 1 addition & 1 deletion packages/react-router-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-router-native",
"version": "6.26.2-pre.0",
"version": "6.26.2",
"description": "Declarative routing for React Native applications",
"keywords": [
"react",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# `react-router`

## 6.26.2-pre.0
## 6.26.2

### Patch Changes

- Updated dependencies:
- `@remix-run/router@1.19.2-pre.0`
- `@remix-run/router@1.19.2`

## 6.26.1

Expand Down
2 changes: 1 addition & 1 deletion packages/react-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-router",
"version": "6.26.2-pre.0",
"version": "6.26.2",
"description": "Declarative routing for React",
"keywords": [
"react",
Expand Down
6 changes: 2 additions & 4 deletions packages/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# `@remix-run/router`

## 1.19.2-pre.0
## 1.19.2

### Patch Changes

- Update the `unstable_dataStrategy` API to allow for more advanced implementations ([#11943](https://github.com/remix-run/react-router/pull/11943))

- Rename `unstable_HandlerResult` to `unstable_DataStrategyResult`
- The return signature has changed from a parallel array of `unstable_DataStrategyResult[]` (parallel to `matches`) to a key/value object of `routeId => unstable_DataStrategyResult`
- This allows you to more easily decide to opt-into or out-of revalidating data that may not have been revalidated by default (via `match.shouldLoad`)
Expand All @@ -14,9 +13,8 @@
- You should now return/throw a result from your `handlerOverride` instead of returning a `DataStrategyResult`
- If you are aggregating the results of `match.resolve()` into a final results object you should not need to think about the `DataStrategyResult` type
- If you are manually filling your results object from within your `handlerOverride`, then you will need to assign a `DataStrategyResult` as the value so React Router knows if it's a successful execution or an error.

- Preserve view transition through redirects ([#11925](https://github.com/remix-run/react-router/pull/11925))
- Fix blocker usage when `blocker.proceed` is called quickly/syncronously ([#11930](https://github.com/remix-run/react-router/pull/11930))
- Fix blocker usage when `blocker.proceed` is called quickly/synchronously ([#11930](https://github.com/remix-run/react-router/pull/11930))
- Preserve pending view transitions through a router revalidation call ([#11917](https://github.com/remix-run/react-router/pull/11917))

## 1.19.1
Expand Down
2 changes: 1 addition & 1 deletion packages/router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/router",
"version": "1.19.2-pre.0",
"version": "1.19.2",
"description": "Nested/Data-driven/Framework-agnostic Routing",
"keywords": [
"remix",
Expand Down

0 comments on commit eeb86ab

Please sign in to comment.