Skip to content

Commit 2978815

Browse files
remix-run-botjoseph0926
authored andcommitted
chore: format
1 parent 8690124 commit 2978815

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
@@ -202,7 +202,6 @@
202202
### Major Changes
203203

204204
- 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))
205-
206205
- `createCookie`
207206
- `createCookieSessionStorage`
208207
- `createMemorySessionStorage`
@@ -211,7 +210,6 @@
211210
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)
212211

213212
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
214-
215213
- `createCookieFactory`
216214
- `createSessionStorageFactory`
217215
- `createCookieSessionStorageFactory`

packages/react-router-cloudflare/CHANGELOG.md

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

180180
- 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))
181181
- 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))
182-
183182
- `createCookie`
184183
- `createCookieSessionStorage`
185184
- `createMemorySessionStorage`
@@ -188,7 +187,6 @@
188187
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)
189188

190189
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
191-
192190
- `createCookieFactory`
193191
- `createSessionStorageFactory`
194192
- `createCookieSessionStorageFactory`

packages/react-router-dev/CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,6 @@
718718
```
719719
720720
This initial implementation targets type inference for:
721-
722721
- `Params` : Path parameters from your routing config in `routes.ts` including file-based routing
723722
- `LoaderData` : Loader data from `loader` and/or `clientLoader` within your route module
724723
- `ActionData` : Action data from `action` and/or `clientAction` within your route module
@@ -733,7 +732,6 @@
733732
```
734733
735734
Check out our docs for more:
736-
737735
- [_Explanations > Type Safety_](https://reactrouter.com/dev/guides/explanation/type-safety)
738736
- [_How-To > Setting up type safety_](https://reactrouter.com/dev/guides/how-to/setting-up-type-safety)
739737
@@ -933,7 +931,6 @@
933931
- Vite: Provide `Unstable_ServerBundlesFunction` and `Unstable_VitePluginConfig` types ([#8654](https://github.com/remix-run/remix/pull/8654))
934932
935933
- Vite: add `--sourcemapClient` and `--sourcemapServer` flags to `remix vite:build` ([#8613](https://github.com/remix-run/remix/pull/8613))
936-
937934
- `--sourcemapClient`
938935
939936
- `--sourcemapClient=inline`
@@ -1270,7 +1267,6 @@
12701267
- 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))
12711268
12721269
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:
1273-
12741270
- Leveraging a data source local to the browser (i.e., `localStorage`)
12751271
- Managing a client-side cache of server data (like `IndexedDB`)
12761272
- Bypassing the Remix server in a BFF setup and hitting your API directly from the browser
@@ -1674,7 +1670,6 @@
16741670
- Output esbuild metafiles for bundle analysis ([#6772](https://github.com/remix-run/remix/pull/6772))
16751671
16761672
Written to server build directory (`build/` by default):
1677-
16781673
- `metafile.css.json`
16791674
- `metafile.js.json` (browser JS)
16801675
- `metafile.server.json` (server JS)
@@ -1772,7 +1767,6 @@
17721767
- built-in tls support ([#6483](https://github.com/remix-run/remix/pull/6483))
17731768
17741769
New options:
1775-
17761770
- `--tls-key` / `tlsKey`: TLS key
17771771
- `--tls-cert` / `tlsCert`: TLS Certificate
17781772
@@ -2043,7 +2037,6 @@
20432037
```
20442038
20452039
The dev server will:
2046-
20472040
- force `NODE_ENV=development` and warn you if it was previously set to something else
20482041
- rebuild your app whenever your Remix app code changes
20492042
- 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
@@ -180,7 +180,6 @@
180180
- Remove single fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
181181

182182
- 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))
183-
184183
- `createCookie`
185184
- `createCookieSessionStorage`
186185
- `createMemorySessionStorage`
@@ -189,7 +188,6 @@
189188
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)
190189

191190
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
192-
193191
- `createCookieFactory`
194192
- `createSessionStorageFactory`
195193
- `createCookieSessionStorageFactory`
@@ -597,12 +595,10 @@
597595
- 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))
598596
599597
Informational Resources:
600-
601598
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
602599
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
603600
604601
Documentation Resources (better docs specific to Remix are in the works):
605-
606602
- <https://reactrouter.com/en/main/utils/defer>
607603
- <https://reactrouter.com/en/main/components/await>
608604
- <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
@@ -599,12 +599,10 @@
599599
- 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))
600600

601601
Informational Resources:
602-
603602
- <https://gist.github.com/jacob-ebey/9bde9546c1aafaa6bc8c242054b1be26>
604603
- <https://github.com/remix-run/remix/blob/main/decisions/0004-streaming-apis.md>
605604

606605
Documentation Resources (better docs specific to Remix are in the works):
607-
608606
- <https://reactrouter.com/en/main/utils/defer>
609607
- <https://reactrouter.com/en/main/components/await>
610608
- <https://reactrouter.com/en/main/hooks/use-async-value>

0 commit comments

Comments
 (0)