@react-router/node 7.7.0 → 7.7.1

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,5 +1,12 @@
1
1
  # `@react-router/node`
2
2
 
3
+ ## 7.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - `react-router@7.7.1`
9
+
3
10
  ## 7.7.0
4
11
 
5
12
  ### Patch Changes
@@ -177,7 +184,6 @@
177
184
  - node package no longer re-exports from react-router ([#11702](https://github.com/remix-run/react-router/pull/11702))
178
185
 
179
186
  - Drop support for Node 18, update minimum Node vestion to 20 ([#12171](https://github.com/remix-run/react-router/pull/12171))
180
-
181
187
  - Remove `installGlobals()` as this should no longer be necessary
182
188
 
183
189
  ### Patch Changes
@@ -324,7 +330,6 @@
324
330
  - Stop exporting the `fetch` API in favor of using the version in the global scope - which can be polyfilled via `installGlobals` ([#7293](https://github.com/remix-run/remix/pull/7293))
325
331
 
326
332
  - Removed/adjusted types to prefer `unknown` over `any` and to align with underlying React Router types ([#7319](https://github.com/remix-run/remix/pull/7319), [#7354](https://github.com/remix-run/remix/pull/7354)):
327
-
328
333
  - Renamed the `useMatches()` return type from `RouteMatch` to `UIMatch`
329
334
  - Renamed `LoaderArgs`/`ActionArgs` to `LoaderFunctionArgs`/`ActionFunctionArgs`
330
335
  - `AppData` changed from `any` to `unknown`
@@ -336,11 +341,9 @@
336
341
  - `AppData`/`RouteHandle` are no longer exported as they are just aliases for `unknown`
337
342
 
338
343
  - The route `meta` API now defaults to the new "V2 Meta" API ([#6958](https://github.com/remix-run/remix/pull/6958))
339
-
340
344
  - Please refer to the ([docs](https://remix.run/docs/en/2.0.0/route/meta) and [Preparing for V2](https://remix.run/docs/en/2.0.0/start/v2#route-meta) guide for more information.
341
345
 
342
346
  - For preparation of using Node's built in fetch implementation, installing the fetch globals is now a responsibility of the app server ([#7009](https://github.com/remix-run/remix/pull/7009))
343
-
344
347
  - If you are using `remix-serve`, nothing is required
345
348
  - If you are using your own app server, you will need to install the globals yourself
346
349
 
@@ -351,7 +354,6 @@
351
354
  ```
352
355
 
353
356
  - `source-map-support` is now a responsibility of the app server ([#7009](https://github.com/remix-run/remix/pull/7009))
354
-
355
357
  - If you are using `remix-serve`, nothing is required
356
358
  - If you are using your own app server, you will need to install [`source-map-support`](https://www.npmjs.com/package/source-map-support) yourself.
357
359
 
@@ -485,7 +487,6 @@
485
487
  ### Minor Changes
486
488
 
487
489
  - We have made a few changes to the API for route module `meta` functions when using the `future.v2_meta` flag. **These changes are _only_ breaking for users who have opted in.** ([#5746](https://github.com/remix-run/remix/pull/5746))
488
-
489
490
  - `V2_HtmlMetaDescriptor` has been renamed to `V2_MetaDescriptor`
490
491
  - The `meta` function's arguments have been simplified
491
492
  - `parentsData` has been removed, as each route's loader data is available on the `data` property of its respective `match` object
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @react-router/node v7.7.0
2
+ * @react-router/node v7.7.1
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @react-router/node v7.7.0
2
+ * @react-router/node v7.7.1
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/node",
3
- "version": "7.7.0",
3
+ "version": "7.7.1",
4
4
  "description": "Node.js platform abstractions for React Router",
5
5
  "bugs": {
6
6
  "url": "https://github.com/remix-run/react-router/issues"
@@ -52,11 +52,11 @@
52
52
  "tsup": "^8.3.0",
53
53
  "typescript": "^5.1.6",
54
54
  "wireit": "0.14.9",
55
- "react-router": "7.7.0"
55
+ "react-router": "7.7.1"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "typescript": "^5.1.0",
59
- "react-router": "7.7.0"
59
+ "react-router": "7.7.1"
60
60
  },
61
61
  "peerDependenciesMeta": {
62
62
  "typescript": {