Skip to content

Commit

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

* Add logging to release script

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Matt Brophy <[email protected]>
  • Loading branch information
3 people authored Feb 25, 2025
1 parent 2e18caf commit f0bc784
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 6 deletions.
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/[email protected]`
- `[email protected]`
- `[email protected]`

## 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/[email protected]`
- `[email protected]`

## 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:
- `[email protected]`

## 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/[email protected]`

## 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

0 comments on commit f0bc784

Please sign in to comment.