Skip to content

Commit 754c304

Browse files
chore: Update version for release (pre) (#13157)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 8e245a6 commit 754c304

File tree

23 files changed

+378
-12
lines changed

23 files changed

+378
-12
lines changed

.changeset/pre.json

+21-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,25 @@
2626
"@playground/split-route-modules-spa": "0.0.0",
2727
"@playground/vite-plugin-cloudflare": "0.0.0"
2828
},
29-
"changesets": []
29+
"changesets": [
30+
"afraid-tigers-promise",
31+
"cool-pillows-sing",
32+
"dry-impalas-live",
33+
"gold-insects-remain",
34+
"hip-jars-hunt",
35+
"lucky-icons-tap",
36+
"middleware",
37+
"modern-forks-ring",
38+
"new-houses-hug",
39+
"ninety-otters-repeat",
40+
"orange-meals-repair",
41+
"pretty-flies-crash",
42+
"real-adults-protect",
43+
"sharp-sloths-swim",
44+
"short-comics-fly",
45+
"slow-coats-arrive",
46+
"spa-context",
47+
"tough-rats-sparkle",
48+
"yellow-glasses-sort"
49+
]
3050
}

packages/create-react-router/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `create-react-router`
22

3+
## 7.3.0-pre.0
4+
35
## 7.2.0
46

57
_No changes_

packages/create-react-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-react-router",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Create a new React Router app",
55
"homepage": "https://reactrouter.com",
66
"bugs": {

packages/react-router-architect/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# `@react-router/architect`
22

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `react-router@7.3.0-pre.0`
9+
- `@react-router/node@7.3.0-pre.0`
10+
311
## 7.2.0
412

513
### Patch Changes

packages/react-router-architect/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/architect",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Architect server request handler for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-cloudflare/CHANGELOG.md

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

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `react-router@7.3.0-pre.0`
9+
310
## 7.2.0
411

512
### Patch Changes

packages/react-router-cloudflare/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/cloudflare",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Cloudflare platform abstractions for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-dev/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# `@react-router/dev`
22

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Fix support for custom client `build.rollupOptions.output.entryFileNames` ([#13098](https://github.com/remix-run/react-router/pull/13098))
8+
- Fix usage of `prerender` option when `serverBundles` option has been configured or provided by a preset, e.g. `vercelPreset` from `@vercel/react-router` ([#13082](https://github.com/remix-run/react-router/pull/13082))
9+
- Fix support for custom `build.assetsDir` ([#13077](https://github.com/remix-run/react-router/pull/13077))
10+
- Remove unused dependencies ([#13134](https://github.com/remix-run/react-router/pull/13134))
11+
- Stub all routes except root in "SPA Mode" server builds to avoid issues when route modules or their dependencies import non-SSR-friendly modules ([#13023](https://github.com/remix-run/react-router/pull/13023))
12+
- Fix errors with `future.unstable_viteEnvironmentApi` when the `ssr` environment has been configured by another plugin to be a custom `Vite.DevEnvironment` rather than the default `Vite.RunnableDevEnvironment` ([#13008](https://github.com/remix-run/react-router/pull/13008))
13+
- Remove unused Vite file system watcher ([#13133](https://github.com/remix-run/react-router/pull/13133))
14+
- Fix support for custom SSR build input when `serverBundles` option has been configured ([#13107](https://github.com/remix-run/react-router/pull/13107))
15+
16+
Note that for consumers using the `future.unstable_viteEnvironmentApi` and `serverBundles` options together, hyphens are no longer supported in server bundle IDs since they also need to be valid Vite environment names.
17+
18+
- Fix dev server when using HTTPS by stripping HTTP/2 pseudo headers from dev server requests ([#12830](https://github.com/remix-run/react-router/pull/12830))
19+
- Lazy load Cloudflare platform proxy on first dev server request when using the `cloudflareDevProxy` Vite plugin to avoid creating unnecessary workerd processes ([#13016](https://github.com/remix-run/react-router/pull/13016))
20+
- When `future.unstable_viteEnvironmentApi` is enabled and the `ssr` environment has `optimizeDeps.noDiscovery` disabled, define `optimizeDeps.entries` and `optimizeDeps.include` ([#13007](https://github.com/remix-run/react-router/pull/13007))
21+
- Fix duplicated entries in typegen for layout routes and their corresponding index route ([#13140](https://github.com/remix-run/react-router/pull/13140))
22+
- Updated dependencies:
23+
- `react-router@7.3.0-pre.0`
24+
- `@react-router/node@7.3.0-pre.0`
25+
- `@react-router/serve@7.3.0-pre.0`
26+
327
## 7.2.0
428

529
### Minor Changes

packages/react-router-dev/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/dev",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Dev tools and CLI for React Router",
55
"homepage": "https://reactrouter.com",
66
"bugs": {

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+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `react-router@7.3.0-pre.0`
9+
310
## 7.2.0
411

512
### Patch Changes

packages/react-router-dom/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",

packages/react-router-express/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# `@react-router/express`
22

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Update `express` `peerDependency` to include v5 (https://github.com/remix-run/react-router/pull/13064) ([#12961](https://github.com/remix-run/react-router/pull/12961))
8+
- Updated dependencies:
9+
- `react-router@7.3.0-pre.0`
10+
- `@react-router/node@7.3.0-pre.0`
11+
312
## 7.2.0
413

514
### Patch Changes

packages/react-router-express/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/express",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Express server request handler for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-fs-routes/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `@react-router/fs-routes`
22

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@react-router/dev@7.3.0-pre.0`
9+
310
## 7.2.0
411

512
### Patch Changes

packages/react-router-fs-routes/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/fs-routes",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "File system routing conventions for React Router, for use within routes.ts",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-node/CHANGELOG.md

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

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `react-router@7.3.0-pre.0`
9+
310
## 7.2.0
411

512
### Patch Changes

packages/react-router-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/node",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Node.js platform abstractions for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-remix-routes-option-adapter/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `@react-router/remix-config-routes-adapter`
22

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@react-router/dev@7.3.0-pre.0`
9+
310
## 7.2.0
411

512
### Patch Changes

packages/react-router-remix-routes-option-adapter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/remix-routes-option-adapter",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Adapter for Remix's \"routes\" config option, for use within routes.ts",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-serve/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# `@react-router/serve`
22

3+
## 7.3.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `react-router@7.3.0-pre.0`
9+
- `@react-router/express@7.3.0-pre.0`
10+
- `@react-router/node@7.3.0-pre.0`
11+
312
## 7.2.0
413

514
### Patch Changes

packages/react-router-serve/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/serve",
3-
"version": "7.2.0",
3+
"version": "7.3.0-pre.0",
44
"description": "Production application server for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

0 commit comments

Comments
 (0)