@react-router/dev 7.3.0-pre.1 → 7.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,37 +1,39 @@
1
1
  # `@react-router/dev`
2
2
 
3
- ## 7.3.0-pre.1
4
-
5
- ### Patch Changes
6
-
7
- - Updated dependencies:
8
- - `react-router@7.3.0-pre.1`
9
- - `@react-router/node@7.3.0-pre.1`
10
- - `@react-router/serve@7.3.0-pre.1`
11
-
12
- ## 7.3.0-pre.0
3
+ ## 7.3.0
13
4
 
14
5
  ### Patch Changes
15
6
 
16
7
  - Fix support for custom client `build.rollupOptions.output.entryFileNames` ([#13098](https://github.com/remix-run/react-router/pull/13098))
8
+
17
9
  - 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))
10
+
18
11
  - Fix support for custom `build.assetsDir` ([#13077](https://github.com/remix-run/react-router/pull/13077))
12
+
19
13
  - Remove unused dependencies ([#13134](https://github.com/remix-run/react-router/pull/13134))
14
+
20
15
  - 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))
16
+
21
17
  - 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))
18
+
22
19
  - Remove unused Vite file system watcher ([#13133](https://github.com/remix-run/react-router/pull/13133))
20
+
23
21
  - Fix support for custom SSR build input when `serverBundles` option has been configured ([#13107](https://github.com/remix-run/react-router/pull/13107))
24
22
 
25
23
  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.
26
24
 
27
25
  - 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))
26
+
28
27
  - 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))
28
+
29
29
  - 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))
30
+
30
31
  - Fix duplicated entries in typegen for layout routes and their corresponding index route ([#13140](https://github.com/remix-run/react-router/pull/13140))
32
+
31
33
  - Updated dependencies:
32
- - `react-router@7.3.0-pre.0`
33
- - `@react-router/node@7.3.0-pre.0`
34
- - `@react-router/serve@7.3.0-pre.0`
34
+ - `react-router@7.3.0`
35
+ - `@react-router/node@7.3.0`
36
+ - `@react-router/serve@7.3.0`
35
37
 
36
38
  ## 7.2.0
37
39
 
@@ -236,7 +238,7 @@
236
238
  +import { cloudflareDevProxy } from "@react-router/dev/vite/cloudflare";
237
239
  ```
238
240
 
239
- - Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
241
+ - Remove single\_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
240
242
 
241
243
  - update minimum node version to 18 ([#11690](https://github.com/remix-run/react-router/pull/11690))
242
244
 
package/dist/cli/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * @react-router/dev v7.3.0-pre.1
3
+ * @react-router/dev v7.3.0
4
4
  *
5
5
  * Copyright (c) Remix Software Inc.
6
6
  *
package/dist/config.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @react-router/dev v7.3.0-pre.1
2
+ * @react-router/dev v7.3.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/dist/routes.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @react-router/dev v7.3.0-pre.1
2
+ * @react-router/dev v7.3.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @react-router/dev v7.3.0-pre.1
2
+ * @react-router/dev v7.3.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/dist/vite.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @react-router/dev v7.3.0-pre.1
2
+ * @react-router/dev v7.3.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-router/dev",
3
- "version": "7.3.0-pre.1",
3
+ "version": "7.3.0",
4
4
  "description": "Dev tools and CLI for React Router",
5
5
  "homepage": "https://reactrouter.com",
6
6
  "bugs": {
@@ -86,7 +86,7 @@
86
86
  "set-cookie-parser": "^2.6.0",
87
87
  "valibot": "^0.41.0",
88
88
  "vite-node": "3.0.0-beta.2",
89
- "@react-router/node": "7.3.0-pre.1"
89
+ "@react-router/node": "7.3.0"
90
90
  },
91
91
  "devDependencies": {
92
92
  "@types/babel__core": "^7.20.5",
@@ -110,15 +110,15 @@
110
110
  "vite": "^6.1.0",
111
111
  "wireit": "0.14.9",
112
112
  "wrangler": "^3.109.2",
113
- "@react-router/serve": "7.3.0-pre.1",
114
- "react-router": "^7.3.0-pre.1"
113
+ "react-router": "^7.3.0",
114
+ "@react-router/serve": "7.3.0"
115
115
  },
116
116
  "peerDependencies": {
117
117
  "typescript": "^5.1.0",
118
118
  "vite": "^5.1.0 || ^6.0.0",
119
119
  "wrangler": "^3.28.2",
120
- "@react-router/serve": "^7.3.0-pre.1",
121
- "react-router": "^7.3.0-pre.1"
120
+ "@react-router/serve": "^7.3.0",
121
+ "react-router": "^7.3.0"
122
122
  },
123
123
  "peerDependenciesMeta": {
124
124
  "@react-router/serve": {