diff --git a/packages/remix-dev/CHANGELOG.md b/packages/remix-dev/CHANGELOG.md index a51b3fa1c66..bc820321f5f 100644 --- a/packages/remix-dev/CHANGELOG.md +++ b/packages/remix-dev/CHANGELOG.md @@ -8,7 +8,6 @@ ### Patch Changes -- Fix missing async return in `remix dev` command ([#4660](https://github.com/remix-run/remix/pull/4660)) - Importing functions and types from the `remix` package is deprecated, and all exported modules will be removed in the next major release. For more details,[see the release notes for 1.4.0](https://github.com/remix-run/remix/releases/tag/v1.4.0) where these changes were first announced. ([#4661](https://github.com/remix-run/remix/pull/4661)) - Updated dependencies: - `@remix-run/server-runtime@1.8.0` diff --git a/packages/remix-server-runtime/CHANGELOG.md b/packages/remix-server-runtime/CHANGELOG.md index 5742f9e5897..02009d951c0 100644 --- a/packages/remix-server-runtime/CHANGELOG.md +++ b/packages/remix-server-runtime/CHANGELOG.md @@ -13,8 +13,6 @@ ### Patch Changes -- Update to use stable `@remix-run/router@1.0.4` release ([#4720](https://github.com/remix-run/remix/pull/4720)) -- Remove duplicated router code in favor of `@remix-run/router` dependency ([#4699](https://github.com/remix-run/remix/pull/4699)) - Properly categorize internal framework-thrown error Responses as error boundary errors ([#4385](https://github.com/remix-run/remix/pull/4385)) Previously there was some ambiguity around _"thrown Responses go to the `CatchBoundary`"_.