Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update version for release #9291

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/brave-cars-approve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curvy-seahorses-jog.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/good-buses-divide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-steaks-remember.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/honest-geese-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-beds-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/odd-frogs-attend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-adults-remain.md

This file was deleted.

49 changes: 0 additions & 49 deletions .changeset/pre.json

This file was deleted.

25 changes: 0 additions & 25 deletions .changeset/response-stub.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-ravens-cross.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/shy-buttons-buy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/single-fetch-client-loaders.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/single-fetch-spa-mode.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/single-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-ways-march.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-ghosts-watch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/update-docs.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-trains-change.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/young-eagles-grab.md

This file was deleted.

15 changes: 8 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Date: YYYY-MM-DD

## v2.9.0

Date: 2024-04-03
Date: 2024-04-23

### What's Changed

Expand All @@ -179,6 +179,7 @@ Date: 2024-04-03

- Naked objects returned from `loader`/`action` functions are no longer automatically serialized to JSON responses
- Instead, they'll be streamed as-is via [`turbo-stream`](https://github.com/jacob-ebey/turbo-stream) which allows direct serialization of more complex types such as `Promise`, `Date`, `Map` instances, and more
- You will need to modify your `tsconfig.json`'s `include` array to infer types properly when using Single Fetch
- The `headers` export is no longer used when Single Fetch is enabled in favor of a new `response` stub passed to your `loader`/`action` functions
- The `json`/`defer`/`redirect` utilities are deprecated when using Single Fetch (but still work _mostly_ the same)
- Actions no longer automatically revalidate on `4xx`/`5xx` responses - you can return a `2xx` to opt-into revalidation or use `shouldRevalidate`
Expand All @@ -201,18 +202,18 @@ Remix `2.9.0` adds a new `installGlobals({ nativeFetch: true })` flag to opt int

### Minor Changes

- New `future.unstable_singleFetch` flag ([#8773](https://github.com/remix-run/remix/pull/8773), [#9073](https://github.com/remix-run/remix/pull/9073), [#9084](https://github.com/remix-run/remix/pull/9084))
- `@remix-run/dev` - Improve `getDependenciesToBundle` resolution in monorepos ([#8848](https://github.com/remix-run/remix/pull/8848))
- `@remix-run/dev` - Fix SPA mode when Single Fetch is enabled by using streaming `entry.server` ([#9063](https://github.com/remix-run/remix/pull/9063))
- `@remix-run/dev` - Vite: added sourcemap support for transformed routes ([#8970](https://github.com/remix-run/remix/pull/8970))
- New `future.unstable_singleFetch` flag ([#8773](https://github.com/remix-run/remix/pull/8773), [#9073](https://github.com/remix-run/remix/pull/9073), [#9084](https://github.com/remix-run/remix/pull/9084), [#9272](https://github.com/remix-run/remix/pull/9272))
- `@remix-run/node` - Add a new `installGlobals({ nativeFetch: true })` flag to opt-into using [`undici`](https://github.com/nodejs/undici) as the fetch polyfill instead of `@remix-run/web-*` ([#9106](https://github.com/remix-run/remix/pull/9106), [#9111](https://github.com/remix-run/remix/pull/9111), [#9198](https://github.com/remix-run/remix/pull/9198))
- `@remix-run/server-runtime` - Add `ResponseStub` header interface for Single Fetch and deprecate the `headers` export ([#9142](https://github.com/remix-run/remix/pull/9142))
- `@remix-run/server-runtime` - Handle redirects created by `handleDataRequest` ([#9104](https://github.com/remix-run/remix/pull/9104))
- `@remix-run/server-runtime` - Add `ResponseStub` header interface and deprecate the `headers` export when Single Fetch is enabled ([#9142](https://github.com/remix-run/remix/pull/9142))

### Patch Changes

- `create-remix` - Allow `.` in repo name when using `--template` flag ([#9026](https://github.com/remix-run/remix/pull/9026))
- `@remix-run/dev` - Improve `getDependenciesToBundle` resolution in monorepos ([#8848](https://github.com/remix-run/remix/pull/8848))
- `@remix-run/dev` - Fix SPA mode when Single Fetch is enabled by using streaming `entry.server` ([#9063](https://github.com/remix-run/remix/pull/9063))
- `@remix-run/dev` - Vite: added sourcemap support for transformed routes ([#8970](https://github.com/remix-run/remix/pull/8970))
- `@remix-run/dev` - Update links printed to the console by the Remix CLI/Dev Server to point to updated docs locations ([#9176](https://github.com/remix-run/remix/pull/9176))
- `@remix-run/server-runtime` - Handle redirects created by `handleDataRequest` ([#9104](https://github.com/remix-run/remix/pull/9104))

### Updated Dependencies

Expand Down
6 changes: 3 additions & 3 deletions integration/helpers/vite-cloudflare-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/cloudflare": "2.9.0-pre.8",
"@remix-run/cloudflare-pages": "2.9.0-pre.8",
"@remix-run/react": "2.9.0-pre.8",
"@remix-run/cloudflare": "2.9.0",
"@remix-run/cloudflare-pages": "2.9.0",
"@remix-run/react": "2.9.0",
"isbot": "^4.1.0",
"miniflare": "^3.20231030.4",
"react": "^18.2.0",
Expand Down
18 changes: 1 addition & 17 deletions packages/create-remix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,6 @@
# `create-remix`

## 2.9.0-pre.8

## 2.9.0-pre.7

## 2.9.0-pre.6

## 2.9.0-pre.5

## 2.9.0-pre.4

## 2.9.0-pre.3

## 2.9.0-pre.2

## 2.9.0-pre.1

## 2.9.0-pre.0
## 2.9.0

### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion packages/create-remix/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-remix",
"version": "2.9.0-pre.8",
"version": "2.9.0",
"description": "Create a new Remix app",
"homepage": "https://remix.run",
"bugs": {
Expand Down
60 changes: 2 additions & 58 deletions packages/remix-architect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,67 +1,11 @@
# `@remix-run/architect`

## 2.9.0-pre.8
## 2.9.0

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.8`

## 2.9.0-pre.7

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.7`

## 2.9.0-pre.6

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.6`

## 2.9.0-pre.5

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.5`

## 2.9.0-pre.4

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.4`

## 2.9.0-pre.3

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.3`

## 2.9.0-pre.2

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.2`

## 2.9.0-pre.1

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.1`

## 2.9.0-pre.0

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.9.0-pre.0`
- `@remix-run/node@2.9.0`

## 2.8.1

Expand Down
2 changes: 1 addition & 1 deletion packages/remix-architect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/architect",
"version": "2.9.0-pre.8",
"version": "2.9.0",
"description": "Architect server request handler for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
Expand Down
Loading