Skip to content

Commit de1eb5d

Browse files
committed
chore: format
1 parent 07afd76 commit de1eb5d

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
@@ -194,7 +194,6 @@
194194
### Major Changes
195195

196196
- 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))
197-
198197
- `createCookie`
199198
- `createCookieSessionStorage`
200199
- `createMemorySessionStorage`
@@ -203,7 +202,6 @@
203202
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)
204203

205204
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
206-
207205
- `createCookieFactory`
208206
- `createSessionStorageFactory`
209207
- `createCookieSessionStorageFactory`

packages/react-router-cloudflare/CHANGELOG.md

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

173173
- 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))
174174
- 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))
175-
176175
- `createCookie`
177176
- `createCookieSessionStorage`
178177
- `createMemorySessionStorage`
@@ -181,7 +180,6 @@
181180
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)
182181

183182
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
184-
185183
- `createCookieFactory`
186184
- `createSessionStorageFactory`
187185
- `createCookieSessionStorageFactory`

packages/react-router-dev/CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,6 @@
708708
```
709709
710710
This initial implementation targets type inference for:
711-
712711
- `Params` : Path parameters from your routing config in `routes.ts` including file-based routing
713712
- `LoaderData` : Loader data from `loader` and/or `clientLoader` within your route module
714713
- `ActionData` : Action data from `action` and/or `clientAction` within your route module
@@ -723,7 +722,6 @@
723722
```
724723
725724
Check out our docs for more:
726-
727725
- [_Explanations > Type Safety_](https://reactrouter.com/dev/guides/explanation/type-safety)
728726
- [_How-To > Setting up type safety_](https://reactrouter.com/dev/guides/how-to/setting-up-type-safety)
729727
@@ -923,7 +921,6 @@
923921
- Vite: Provide `Unstable_ServerBundlesFunction` and `Unstable_VitePluginConfig` types ([#8654](https://github.com/remix-run/remix/pull/8654))
924922
925923
- Vite: add `--sourcemapClient` and `--sourcemapServer` flags to `remix vite:build` ([#8613](https://github.com/remix-run/remix/pull/8613))
926-
927924
- `--sourcemapClient`
928925
929926
- `--sourcemapClient=inline`
@@ -1260,7 +1257,6 @@
12601257
- 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))
12611258
12621259
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:
1263-
12641260
- Leveraging a data source local to the browser (i.e., `localStorage`)
12651261
- Managing a client-side cache of server data (like `IndexedDB`)
12661262
- Bypassing the Remix server in a BFF setup and hitting your API directly from the browser
@@ -1664,7 +1660,6 @@
16641660
- Output esbuild metafiles for bundle analysis ([#6772](https://github.com/remix-run/remix/pull/6772))
16651661
16661662
Written to server build directory (`build/` by default):
1667-
16681663
- `metafile.css.json`
16691664
- `metafile.js.json` (browser JS)
16701665
- `metafile.server.json` (server JS)
@@ -1762,7 +1757,6 @@
17621757
- built-in tls support ([#6483](https://github.com/remix-run/remix/pull/6483))
17631758
17641759
New options:
1765-
17661760
- `--tls-key` / `tlsKey`: TLS key
17671761
- `--tls-cert` / `tlsCert`: TLS Certificate
17681762
@@ -2033,7 +2027,6 @@
20332027
```
20342028
20352029
The dev server will:
2036-
20372030
- force `NODE_ENV=development` and warn you if it was previously set to something else
20382031
- rebuild your app whenever your Remix app code changes
20392032
- 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
@@ -173,7 +173,6 @@
173173
- Remove single fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
174174

175175
- 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))
176-
177176
- `createCookie`
178177
- `createCookieSessionStorage`
179178
- `createMemorySessionStorage`
@@ -182,7 +181,6 @@
182181
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)
183182

184183
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
185-
186184
- `createCookieFactory`
187185
- `createSessionStorageFactory`
188186
- `createCookieSessionStorageFactory`
@@ -590,12 +588,10 @@
590588
- 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))
591589
592590
Informational Resources:
593-
594591
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
595592
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
596593
597594
Documentation Resources (better docs specific to Remix are in the works):
598-
599595
- <https://reactrouter.com/en/main/utils/defer>
600596
- <https://reactrouter.com/en/main/components/await>
601597
- <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
@@ -590,12 +590,10 @@
590590
- 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))
591591

592592
Informational Resources:
593-
594593
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
595594
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
596595

597596
Documentation Resources (better docs specific to Remix are in the works):
598-
599597
- <https://reactrouter.com/en/main/utils/defer>
600598
- <https://reactrouter.com/en/main/components/await>
601599
- <https://reactrouter.com/en/main/hooks/use-async-value>

0 commit comments

Comments
 (0)