Skip to content

chore: Update version for release (pre-v6) #13111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"react-router-native": "6.29.0",
"@remix-run/router": "1.22.0"
},
"changesets": []
"changesets": [
"tokyo-manifest-drift",
"witty-birds-fetch"
]
}
9 changes: 9 additions & 0 deletions packages/react-router-dom-v5-compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# `react-router-dom-v5-compat`

## 6.30.0-pre-v6.0

### Patch Changes

- Updated dependencies:
- `@remix-run/router@1.23.0-pre-v6.0`
- `react-router@6.30.0-pre-v6.0`
- `react-router-dom@6.30.0-pre-v6.0`

## 6.29.0

### Patch Changes
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.29.0",
"version": "6.30.0-pre-v6.0",
"description": "Migration path to React Router v6 from v4/5",
"keywords": [
"react",
Expand Down
12 changes: 12 additions & 0 deletions packages/react-router-dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# `react-router-dom`

## 6.30.0-pre-v6.0

### Minor Changes

- Add `fetcherKey` as a parameter to `patchRoutesOnNavigation` ([#13109](https://github.com/remix-run/react-router/pull/13109))

### Patch Changes

- Updated dependencies:
- `@remix-run/router@1.23.0-pre-v6.0`
- `react-router@6.30.0-pre-v6.0`

## 6.29.0

### Minor Changes
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.29.0",
"version": "6.30.0-pre-v6.0",
"description": "Declarative routing for React web applications",
"keywords": [
"react",
Expand Down
7 changes: 7 additions & 0 deletions packages/react-router-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# `react-router-native`

## 6.30.0-pre-v6.0

### Patch Changes

- Updated dependencies:
- `react-router@6.30.0-pre-v6.0`

## 6.29.0

### Patch Changes
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.29.0",
"version": "6.30.0-pre-v6.0",
"description": "Declarative routing for React Native applications",
"keywords": [
"react",
Expand Down
11 changes: 11 additions & 0 deletions packages/react-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# `react-router`

## 6.30.0-pre-v6.0

### Minor Changes

- Add `fetcherKey` as a parameter to `patchRoutesOnNavigation` ([#13109](https://github.com/remix-run/react-router/pull/13109))

### Patch Changes

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

## 6.29.0

### Minor Changes
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.29.0",
"version": "6.30.0-pre-v6.0",
"description": "Declarative routing for React",
"keywords": [
"react",
Expand Down
10 changes: 10 additions & 0 deletions packages/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# `@remix-run/router`

## 1.23.0-pre-v6.0

### Minor Changes

- Add `fetcherKey` as a parameter to `patchRoutesOnNavigation` ([#13109](https://github.com/remix-run/react-router/pull/13109))

### Patch Changes

- Fix regression introduced in `6.29.0` via [#12169](https://github.com/remix-run/react-router/pull/12169) that caused issues navigating to hash routes inside splat routes for applications using Lazy Route Discovery (`patchRoutesOnNavigation`) ([#13108](https://github.com/remix-run/react-router/pull/13108))

## 1.22.0

### Minor Changes
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.22.0",
"version": "1.23.0-pre-v6.0",
"description": "Nested/Data-driven/Framework-agnostic Routing",
"keywords": [
"remix",
Expand Down
2 changes: 2 additions & 0 deletions scripts/changesets-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ MODE=$(node -e "console.log(require('./.changeset/pre.json').mode)")
# Can only provide a custom --tag when not in prerelease mode
# The prerelease tags come from the pre.json "tag" field
if [ "${MODE}" == "exit" ]; then
echo "Publishing with v6 tag (stable release)"
pnpm exec changeset publish --tag v6
else
echo "Publishing with default changesets tag (pre-release)"
pnpm exec changeset publish
fi