From c42594e2fe60739a8c93f7a065f65c15cbe67025 Mon Sep 17 00:00:00 2001 From: Matt Brophy <matt@brophy.org> Date: Mon, 9 Sep 2024 11:52:16 -0400 Subject: [PATCH] Update changelogs --- packages/create-remix/CHANGELOG.md | 2 ++ packages/remix-css-bundle/CHANGELOG.md | 2 ++ packages/remix-dev/CHANGELOG.md | 10 ++++------ packages/remix-eslint-config/CHANGELOG.md | 2 ++ packages/remix-react/CHANGELOG.md | 8 -------- packages/remix-server-runtime/CHANGELOG.md | 3 --- 6 files changed, 10 insertions(+), 17 deletions(-) diff --git a/packages/create-remix/CHANGELOG.md b/packages/create-remix/CHANGELOG.md index da52d12c4ad..845fff30086 100644 --- a/packages/create-remix/CHANGELOG.md +++ b/packages/create-remix/CHANGELOG.md @@ -2,6 +2,8 @@ ## 2.12.0 +No significant changes to this package were made in this release. [See the repo `CHANGELOG.md`](https://github.com/remix-run/remix/blob/main/CHANGELOG.md) for an overview of all changes in v2.12.0. + ## 2.11.2 No significant changes to this package were made in this release. [See the repo `CHANGELOG.md`](https://github.com/remix-run/remix/blob/main/CHANGELOG.md) for an overview of all changes in v2.11.2. diff --git a/packages/remix-css-bundle/CHANGELOG.md b/packages/remix-css-bundle/CHANGELOG.md index 6192eff3c13..25de667e8b9 100644 --- a/packages/remix-css-bundle/CHANGELOG.md +++ b/packages/remix-css-bundle/CHANGELOG.md @@ -2,6 +2,8 @@ ## 2.12.0 +No significant changes to this package were made in this release. [See the repo `CHANGELOG.md`](https://github.com/remix-run/remix/blob/main/CHANGELOG.md) for an overview of all changes in v2.12.0. + ## 2.11.2 No significant changes to this package were made in this release. [See the repo `CHANGELOG.md`](https://github.com/remix-run/remix/blob/main/CHANGELOG.md) for an overview of all changes in v2.11.2. diff --git a/packages/remix-dev/CHANGELOG.md b/packages/remix-dev/CHANGELOG.md index 1989e2cd638..b7cbb9ad54d 100644 --- a/packages/remix-dev/CHANGELOG.md +++ b/packages/remix-dev/CHANGELOG.md @@ -5,15 +5,13 @@ ### Minor Changes - New `future.unstable_optimizeDeps` flag for automatic dependency optimization ([#9921](https://github.com/remix-run/remix/pull/9921)) - - You can now opt-in to automatic dependency optimization during development by using the `future.unstable_optimizeDeps` future flag. - For details, check out the docs at [`Guides` > `Dependency optimization`](https://remix.run/docs/en/main/guides/dependency-optimization). - - For users who were previously working around this limitation, you no longer need to explicitly add routes to Vite's `optimizeDeps.entries` nor do you need to disable the `remix-dot-server` plugin. + - You can now opt-in to automatic dependency optimization during development by using the `future.unstable_optimizeDeps` future flag + - For details, check out the docs at [`Guides` > `Dependency optimization`](https://remix.run/docs/en/main/guides/dependency-optimization) + - For users who were previously working around this limitation, you no longer need to explicitly add routes to Vite's `optimizeDeps.entries` nor do you need to disable the `remix-dot-server` plugin ### Patch Changes -- Handle circular dependencies in modulepreload manifest generation. ([#9917](https://github.com/remix-run/remix/pull/9917)) +- Handle circular dependencies in modulepreload manifest generation ([#9917](https://github.com/remix-run/remix/pull/9917)) - Fix `dest already exists` build errors by only moving SSR assets to the client build directory when they're not already present on disk ([#9901](https://github.com/remix-run/remix/pull/9901)) - Updated dependencies: - `@remix-run/server-runtime@2.12.0` diff --git a/packages/remix-eslint-config/CHANGELOG.md b/packages/remix-eslint-config/CHANGELOG.md index 976d99dc12a..03fbed7f466 100644 --- a/packages/remix-eslint-config/CHANGELOG.md +++ b/packages/remix-eslint-config/CHANGELOG.md @@ -2,6 +2,8 @@ ## 2.12.0 +No significant changes to this package were made in this release. [See the repo `CHANGELOG.md`](https://github.com/remix-run/remix/blob/main/CHANGELOG.md) for an overview of all changes in v2.12.0. + ## 2.11.2 No significant changes to this package were made in this release. [See the repo `CHANGELOG.md`](https://github.com/remix-run/remix/blob/main/CHANGELOG.md) for an overview of all changes in v2.11.2. diff --git a/packages/remix-react/CHANGELOG.md b/packages/remix-react/CHANGELOG.md index 915441f8fad..88d564335ec 100644 --- a/packages/remix-react/CHANGELOG.md +++ b/packages/remix-react/CHANGELOG.md @@ -6,8 +6,6 @@ - Lazy Route Discovery: Sort `/__manifest` query parameters for better caching ([#9888](https://github.com/remix-run/remix/pull/9888)) -- \[REMOVE] cleanup tests ([#9945](https://github.com/remix-run/remix/pull/9945)) - - Single Fetch: fix revalidation behavior bugs ([#9938](https://github.com/remix-run/remix/pull/9938)) - With Single Fetch, existing routes revalidate by default @@ -18,8 +16,6 @@ - When one or more routes are excluded from the single fetch call, the remaining routes that have loaders are included as query params: - For example, if A was excluded, and the `root` route and `routes/b` had a `loader` but `routes/c` did not, the single fetch request would be `GET /a/b/c.data?_routes=root,routes/a` -- \[REMOVE] Align single fetch prefetchign with new revalidation logic ([#9958](https://github.com/remix-run/remix/pull/9958)) - - Remove hydration URL check that was originally added for React 17 hydration issues and we no longer support React 17 ([#9890](https://github.com/remix-run/remix/pull/9890)) - Reverts the logic originally added in Remix `v1.18.0` via <https://github.com/remix-run/remix/pull/6409> @@ -30,8 +26,6 @@ - React v18 handles this hydration error like any other error and does not result in a loop - So we can remove our check and thus avoid the false-positive scenarios in which it may also trigger a loop -- \[REMOVE] Bump router ([#9963](https://github.com/remix-run/remix/pull/9963)) - - Single Fetch: Improved typesafety ([#9893](https://github.com/remix-run/remix/pull/9893)) If you were already using previously released unstable single-fetch types: @@ -65,8 +59,6 @@ For more information, see [Guides > Single Fetch](https://remix.run/docs/en/dev/guides/single-fetch) in our docs. -- \[REMOVE] Fix HDR for single fetch ([#9954](https://github.com/remix-run/remix/pull/9954)) - - Clarify wording in default `HydrateFallback` console warning ([#9899](https://github.com/remix-run/remix/pull/9899)) - Updated dependencies: diff --git a/packages/remix-server-runtime/CHANGELOG.md b/packages/remix-server-runtime/CHANGELOG.md index a90e9fdb3c4..8f339348193 100644 --- a/packages/remix-server-runtime/CHANGELOG.md +++ b/packages/remix-server-runtime/CHANGELOG.md @@ -5,9 +5,7 @@ ### Patch Changes - Single Fetch: Do not try to encode a `turbo-stream` body into 304 responses ([#9941](https://github.com/remix-run/remix/pull/9941)) - - Single Fetch: fix revalidation behavior bugs ([#9938](https://github.com/remix-run/remix/pull/9938)) - - With Single Fetch, existing routes revalidate by default - This means requests do not need special query params for granular route revalidations out of the box - i.e., `GET /a/b/c.data` - There are two conditions that will trigger granular revalidation: @@ -15,7 +13,6 @@ - If a route defines a `clientLoader` then it will be excluded from the single fetch call and if you call `serverLoader()` from your `clientLoader`, that will make a separarte HTTP call for just that route loader - i.e., `GET /a/b/c.data?_routes=routes/a` for a `clientLoader` in `routes/a.tsx` - When one or more routes are excluded from the single fetch call, the remaining routes that have loaders are included as query params: - For example, if A was excluded, and the `root` route and `routes/b` had a `loader` but `routes/c` did not, the single fetch request would be `GET /a/b/c.data?_routes=root,routes/a` - - Remove hydration URL check that was originally added for React 17 hydration issues and we no longer support React 17 ([#9890](https://github.com/remix-run/remix/pull/9890)) - Reverts the logic originally added in Remix `v1.18.0` via <https://github.com/remix-run/remix/pull/6409>