Skip to content

Commit 07876f8

Browse files
committed
chore: format
1 parent efd1283 commit 07876f8

File tree

6 files changed

+0
-18
lines changed

6 files changed

+0
-18
lines changed

integration/CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
### Minor Changes
66

77
- Unstable Vite support for Node-based Remix apps ([#7590](https://github.com/remix-run/remix/pull/7590))
8-
98
- `remix build` 👉 `vite build && vite build --ssr`
109
- `remix dev` 👉 `vite dev`
1110

packages/react-router-architect/CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@
210210
### Major Changes
211211

212212
- For Remix consumers migrating to React Router, the `crypto` global from the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) is now required when using cookie and session APIs. This means that the following APIs are provided from `react-router` rather than platform-specific packages: ([#11837](https://github.com/remix-run/react-router/pull/11837))
213-
214213
- `createCookie`
215214
- `createCookieSessionStorage`
216215
- `createMemorySessionStorage`
@@ -219,7 +218,6 @@
219218
For consumers running older versions of Node, the `installGlobals` function from `@remix-run/node` has been updated to define `globalThis.crypto`, using [Node's `require('node:crypto').webcrypto` implementation.](https://nodejs.org/api/webcrypto.html)
220219

221220
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
222-
223221
- `createCookieFactory`
224222
- `createSessionStorageFactory`
225223
- `createCookieSessionStorageFactory`

packages/react-router-cloudflare/CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@
186186

187187
- For Remix consumers migrating to React Router, all exports from `@remix-run/cloudflare-pages` are now provided for React Router consumers in the `@react-router/cloudflare` package. There is no longer a separate package for Cloudflare Pages. ([#11801](https://github.com/remix-run/react-router/pull/11801))
188188
- For Remix consumers migrating to React Router, the `crypto` global from the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) is now required when using cookie and session APIs. This means that the following APIs are provided from `react-router` rather than platform-specific packages: ([#11837](https://github.com/remix-run/react-router/pull/11837))
189-
190189
- `createCookie`
191190
- `createCookieSessionStorage`
192191
- `createMemorySessionStorage`
@@ -195,7 +194,6 @@
195194
For consumers running older versions of Node, the `installGlobals` function from `@remix-run/node` has been updated to define `globalThis.crypto`, using [Node's `require('node:crypto').webcrypto` implementation.](https://nodejs.org/api/webcrypto.html)
196195

197196
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
198-
199197
- `createCookieFactory`
200198
- `createSessionStorageFactory`
201199
- `createCookieSessionStorageFactory`

packages/react-router-dev/CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,6 @@
728728
```
729729
730730
This initial implementation targets type inference for:
731-
732731
- `Params` : Path parameters from your routing config in `routes.ts` including file-based routing
733732
- `LoaderData` : Loader data from `loader` and/or `clientLoader` within your route module
734733
- `ActionData` : Action data from `action` and/or `clientAction` within your route module
@@ -743,7 +742,6 @@
743742
```
744743
745744
Check out our docs for more:
746-
747745
- [_Explanations > Type Safety_](https://reactrouter.com/dev/guides/explanation/type-safety)
748746
- [_How-To > Setting up type safety_](https://reactrouter.com/dev/guides/how-to/setting-up-type-safety)
749747
@@ -943,7 +941,6 @@
943941
- Vite: Provide `Unstable_ServerBundlesFunction` and `Unstable_VitePluginConfig` types ([#8654](https://github.com/remix-run/remix/pull/8654))
944942
945943
- Vite: add `--sourcemapClient` and `--sourcemapServer` flags to `remix vite:build` ([#8613](https://github.com/remix-run/remix/pull/8613))
946-
947944
- `--sourcemapClient`
948945
949946
- `--sourcemapClient=inline`
@@ -1280,7 +1277,6 @@
12801277
- Add support for `clientLoader`/`clientAction`/`HydrateFallback` route exports ([RFC](https://github.com/remix-run/remix/discussions/7634)) ([#8173](https://github.com/remix-run/remix/pull/8173))
12811278
12821279
Remix now supports loaders/actions that run on the client (in addition to, or instead of the loader/action that runs on the server). While we still recommend server loaders/actions for the majority of your data needs in a Remix app - these provide some levers you can pull for more advanced use-cases such as:
1283-
12841280
- Leveraging a data source local to the browser (i.e., `localStorage`)
12851281
- Managing a client-side cache of server data (like `IndexedDB`)
12861282
- Bypassing the Remix server in a BFF setup and hitting your API directly from the browser
@@ -1684,7 +1680,6 @@
16841680
- Output esbuild metafiles for bundle analysis ([#6772](https://github.com/remix-run/remix/pull/6772))
16851681
16861682
Written to server build directory (`build/` by default):
1687-
16881683
- `metafile.css.json`
16891684
- `metafile.js.json` (browser JS)
16901685
- `metafile.server.json` (server JS)
@@ -1782,7 +1777,6 @@
17821777
- built-in tls support ([#6483](https://github.com/remix-run/remix/pull/6483))
17831778
17841779
New options:
1785-
17861780
- `--tls-key` / `tlsKey`: TLS key
17871781
- `--tls-cert` / `tlsCert`: TLS Certificate
17881782
@@ -2053,7 +2047,6 @@
20532047
```
20542048
20552049
The dev server will:
2056-
20572050
- force `NODE_ENV=development` and warn you if it was previously set to something else
20582051
- rebuild your app whenever your Remix app code changes
20592052
- restart your app server whenever rebuilds succeed

packages/react-router-node/CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@
187187
- Remove single fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
188188

189189
- For Remix consumers migrating to React Router, the `crypto` global from the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) is now required when using cookie and session APIs. This means that the following APIs are provided from `react-router` rather than platform-specific packages: ([#11837](https://github.com/remix-run/react-router/pull/11837))
190-
191190
- `createCookie`
192191
- `createCookieSessionStorage`
193192
- `createMemorySessionStorage`
@@ -196,7 +195,6 @@
196195
For consumers running older versions of Node, the `installGlobals` function from `@remix-run/node` has been updated to define `globalThis.crypto`, using [Node's `require('node:crypto').webcrypto` implementation.](https://nodejs.org/api/webcrypto.html)
197196

198197
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
199-
200198
- `createCookieFactory`
201199
- `createSessionStorageFactory`
202200
- `createCookieSessionStorageFactory`
@@ -604,12 +602,10 @@
604602
- Introduces the `defer()` API from `@remix-run/router` with support for server-rendering and HTTP streaming. This utility allows you to defer values returned from `loader` functions by returning promises instead of resolved values. This has been refered to as _"sending a promise over the wire"_. ([#4920](https://github.com/remix-run/remix/pull/4920))
605603
606604
Informational Resources:
607-
608605
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
609606
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
610607
611608
Documentation Resources (better docs specific to Remix are in the works):
612-
613609
- <https://reactrouter.com/en/main/utils/defer>
614610
- <https://reactrouter.com/en/main/components/await>
615611
- <https://reactrouter.com/en/main/hooks/use-async-value>

packages/react-router-serve/CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,12 +608,10 @@
608608
- Introduces the `defer()` API from `@remix-run/router` with support for server-rendering and HTTP streaming. This utility allows you to defer values returned from `loader` functions by returning promises instead of resolved values. This has been refered to as _"sending a promise over the wire"_. ([#4920](https://github.com/remix-run/remix/pull/4920))
609609

610610
Informational Resources:
611-
612611
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
613612
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
614613

615614
Documentation Resources (better docs specific to Remix are in the works):
616-
617615
- <https://reactrouter.com/en/main/utils/defer>
618616
- <https://reactrouter.com/en/main/components/await>
619617
- <https://reactrouter.com/en/main/hooks/use-async-value>

0 commit comments

Comments
 (0)