Skip to content

Commit

Permalink
chore: Update version for release (#8666)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Matt Brophy <matt@brophy.org>
  • Loading branch information
3 people committed Feb 1, 2024
1 parent 25c4a98 commit c85c9be
Show file tree
Hide file tree
Showing 12 changed files with 49 additions and 157 deletions.
52 changes: 20 additions & 32 deletions packages/remix-dev/CHANGELOG.md
@@ -1,32 +1,6 @@
# `@remix-run/dev`

## 2.6.0-pre.3

### Patch Changes

- Updated dependencies:
- `@remix-run/node@2.6.0-pre.3`
- `@remix-run/server-runtime@2.6.0-pre.3`

## 2.6.0-pre.2

### Patch Changes

- Vite: Provide `Unstable_ServerBundlesFunction` and `Unstable_VitePluginConfig` types ([#8654](https://github.com/remix-run/remix/pull/8654))
- Updated dependencies:
- `@remix-run/node@2.6.0-pre.2`
- `@remix-run/server-runtime@2.6.0-pre.2`

## 2.6.0-pre.1

### Patch Changes

- Vite: add dev load context option to Cloudflare preset ([#8649](https://github.com/remix-run/remix/pull/8649))
- Updated dependencies:
- `@remix-run/node@2.6.0-pre.1`
- `@remix-run/server-runtime@2.6.0-pre.1`

## 2.6.0-pre.0
## 2.6.0

### Minor Changes

Expand All @@ -40,19 +14,26 @@

The `build/server/bundles.json` file has been superseded by the more general `build/.remix/manifest.json`. While the old server bundles manifest was always written to disk when generating server bundles, the build manifest file must be explicitly enabled via the `manifest` option.

- Vite: Provide `Unstable_ServerBundlesFunction` and `Unstable_VitePluginConfig` types ([#8654](https://github.com/remix-run/remix/pull/8654))

- Vite: add `--sourcemapClient` and `--sourcemapServer` flags to `remix vite:build` ([#8613](https://github.com/remix-run/remix/pull/8613))

- `--sourcemapClient`

- `--sourcemapClient=inline`

- `--sourcemapClient=hidden`

- `--sourcemapServer`

- `--sourcemapServer=inline`

- `--sourcemapServer=hidden`

See https://vitejs.dev/config/build-options.html#build-sourcemap
See <https://vitejs.dev/config/build-options.html#build-sourcemap>

- Vite: Validate IDs returned from the `serverBundles` function to ensure they only contain alphanumeric characters, hyphens and underscores ([#8598](https://github.com/remix-run/remix/pull/8598))

- Vite: fix "could not fast refresh" false alarm ([#8580](https://github.com/remix-run/remix/pull/8580))

HMR is already functioning correctly but was incorrectly logging that it "could not fast refresh" on internal client routes.
Expand All @@ -61,7 +42,7 @@

- Vite: Cloudflare Pages support ([#8531](https://github.com/remix-run/remix/pull/8531))

To get started with Cloudflare, you can use the [`unstable-vite-cloudflare`][template-vite-cloudflare] template:
To get started with Cloudflare, you can use the \[`unstable-vite-cloudflare`]\[template-vite-cloudflare] template:

```shellscript nonumber
npx create-remix@latest --template remix-run/remix/templates/unstable-vite-cloudflare
Expand All @@ -71,6 +52,7 @@
[Future > Vite > Migrating > Migrating Cloudflare Functions](https://remix.run/docs/en/main/future/vite#migrating-cloudflare-functions).

- Vite: Remove undocumented backwards compatibility layer for Vite v4 ([#8581](https://github.com/remix-run/remix/pull/8581))

- Vite: rely on Vite plugin ordering ([#8627](https://github.com/remix-run/remix/pull/8627))

**This is a breaking change for projects using the unstable Vite plugin.**
Expand Down Expand Up @@ -99,6 +81,7 @@
The official [Vite React SWC plugin](https://github.com/vitejs/vite-plugin-react-swc/blob/main/src/index.ts#L97-L116) also relies on plugin ordering for MDX.

- Vite: Add `presets` option to ease integration with different platforms and tools. ([#8514](https://github.com/remix-run/remix/pull/8514))

- Vite: Remove interop with `<LiveReload />`, rely on `<Scripts />` instead ([#8636](https://github.com/remix-run/remix/pull/8636))

**This is a breaking change for projects using the unstable Vite plugin.**
Expand Down Expand Up @@ -136,7 +119,11 @@
```

- Vite: Add `buildEnd` hook ([#8620](https://github.com/remix-run/remix/pull/8620))

- Vite: add dev load context option to Cloudflare preset ([#8649](https://github.com/remix-run/remix/pull/8649))

- Vite: Add `mode` field into generated server build ([#8539](https://github.com/remix-run/remix/pull/8539))

- Vite: Only write Vite manifest files if `build.manifest` is enabled within the Vite config ([#8599](https://github.com/remix-run/remix/pull/8599))

**This is a breaking change for consumers of Vite's `manifest.json` files.**
Expand All @@ -151,6 +138,7 @@
```

- Vite: reduce network calls for route modules during HMR ([#8591](https://github.com/remix-run/remix/pull/8591))

- Vite: Add new `buildDirectory` option with a default value of `"build"`. This replaces the old `assetsBuildDirectory` and `serverBuildDirectory` options which defaulted to `"build/client"` and `"build/server"` respectively. ([#8575](https://github.com/remix-run/remix/pull/8575))

**This is a breaking change for consumers of the Vite plugin that were using the `assetsBuildDirectory` and `serverBuildDirectory` options.**
Expand All @@ -173,16 +161,16 @@
```

- Vite: Remove `unstable` prefix from `serverBundles` option. ([#8596](https://github.com/remix-run/remix/pull/8596))

- Vite: Write Vite manifest files to `build/.vite` directory rather than being nested within `build/client` and `build/server` directories. ([#8599](https://github.com/remix-run/remix/pull/8599))

**This is a breaking change for consumers of Vite's `manifest.json` files.**

Vite manifest files are now written to the Remix build directory. Since all Vite manifests are now in the same directory, they're no longer named `manifest.json`. Instead, they're named `build/.vite/client-manifest.json` and `build/.vite/server-manifest.json`, or `build/.vite/server-{BUNDLE_ID}-manifest.json` when using server bundles.

- Updated dependencies:
- `@remix-run/server-runtime@2.6.0-pre.0`
- `@remix-run/node@2.6.0-pre.0`
- `@remix-run/serve@2.6.0-pre.0`
- `@remix-run/server-runtime@2.6.0`
- `@remix-run/node@2.6.0`

## 2.5.1

Expand Down
10 changes: 5 additions & 5 deletions packages/remix-dev/package.json
@@ -1,6 +1,6 @@
{
"name": "@remix-run/dev",
"version": "2.6.0-pre.3",
"version": "2.6.0",
"description": "Dev tools and CLI for Remix",
"homepage": "https://remix.run",
"bugs": {
Expand Down Expand Up @@ -28,9 +28,9 @@
"@babel/types": "^7.22.5",
"@mdx-js/mdx": "^2.3.0",
"@npmcli/package-json": "^4.0.1",
"@remix-run/node": "2.6.0-pre.3",
"@remix-run/node": "2.6.0",
"@remix-run/router": "1.15.0",
"@remix-run/server-runtime": "2.6.0-pre.3",
"@remix-run/server-runtime": "2.6.0",
"@types/mdx": "^2.0.5",
"@vanilla-extract/integration": "^6.2.0",
"arg": "^5.0.1",
Expand Down Expand Up @@ -73,7 +73,7 @@
"ws": "^7.4.5"
},
"devDependencies": {
"@remix-run/serve": "2.6.0-pre.3",
"@remix-run/serve": "2.6.0",
"@types/cacache": "^17.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/gunzip-maybe": "^1.4.0",
Expand All @@ -95,7 +95,7 @@
"wrangler": "^3.24.0"
},
"peerDependencies": {
"@remix-run/serve": "^2.6.0-pre.3",
"@remix-run/serve": "^2.6.0",
"typescript": "^5.1.0",
"vite": "^5.0.0",
"wrangler": "^3.24.0"
Expand Down
25 changes: 2 additions & 23 deletions packages/remix-express/CHANGELOG.md
@@ -1,32 +1,11 @@
# `@remix-run/express`

## 2.6.0-pre.3
## 2.6.0

### Patch Changes

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

## 2.6.0-pre.2

### Patch Changes

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

## 2.6.0-pre.1

### Patch Changes

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

## 2.6.0-pre.0

### Patch Changes

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

## 2.5.1

Expand Down
4 changes: 2 additions & 2 deletions packages/remix-express/package.json
@@ -1,6 +1,6 @@
{
"name": "@remix-run/express",
"version": "2.6.0-pre.3",
"version": "2.6.0",
"description": "Express server request handler for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
Expand All @@ -14,7 +14,7 @@
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"@remix-run/node": "2.6.0-pre.3"
"@remix-run/node": "2.6.0"
},
"devDependencies": {
"@types/express": "^4.17.9",
Expand Down
25 changes: 2 additions & 23 deletions packages/remix-node/CHANGELOG.md
@@ -1,32 +1,11 @@
# `@remix-run/node`

## 2.6.0-pre.3
## 2.6.0

### Patch Changes

- Updated dependencies:
- `@remix-run/server-runtime@2.6.0-pre.3`

## 2.6.0-pre.2

### Patch Changes

- Updated dependencies:
- `@remix-run/server-runtime@2.6.0-pre.2`

## 2.6.0-pre.1

### Patch Changes

- Updated dependencies:
- `@remix-run/server-runtime@2.6.0-pre.1`

## 2.6.0-pre.0

### Patch Changes

- Updated dependencies:
- `@remix-run/server-runtime@2.6.0-pre.0`
- `@remix-run/server-runtime@2.6.0`

## 2.5.1

Expand Down
4 changes: 2 additions & 2 deletions packages/remix-node/package.json
@@ -1,6 +1,6 @@
{
"name": "@remix-run/node",
"version": "2.6.0-pre.3",
"version": "2.6.0",
"description": "Node.js platform abstractions for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
Expand All @@ -17,7 +17,7 @@
"./install.js"
],
"dependencies": {
"@remix-run/server-runtime": "2.6.0-pre.3",
"@remix-run/server-runtime": "2.6.0",
"@remix-run/web-fetch": "^4.4.2",
"@remix-run/web-file": "^3.1.0",
"@remix-run/web-stream": "^1.1.0",
Expand Down
30 changes: 3 additions & 27 deletions packages/remix-serve/CHANGELOG.md
@@ -1,36 +1,12 @@
# `@remix-run/serve`

## 2.6.0-pre.3
## 2.6.0

### Patch Changes

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

## 2.6.0-pre.2

### Patch Changes

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

## 2.6.0-pre.1

### Patch Changes

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

## 2.6.0-pre.0

### Patch Changes

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

## 2.5.1

Expand Down
6 changes: 3 additions & 3 deletions packages/remix-serve/package.json
@@ -1,6 +1,6 @@
{
"name": "@remix-run/serve",
"version": "2.6.0-pre.3",
"version": "2.6.0",
"description": "Production application server for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
Expand All @@ -15,8 +15,8 @@
"remix-serve": "dist/cli.js"
},
"dependencies": {
"@remix-run/express": "2.6.0-pre.3",
"@remix-run/node": "2.6.0-pre.3",
"@remix-run/express": "2.6.0",
"@remix-run/node": "2.6.0",
"chokidar": "^3.5.3",
"compression": "^1.7.4",
"express": "^4.17.1",
Expand Down
12 changes: 3 additions & 9 deletions packages/remix-server-runtime/CHANGELOG.md
@@ -1,12 +1,6 @@
# `@remix-run/server-runtime`

## 2.6.0-pre.3

## 2.6.0-pre.2

## 2.6.0-pre.1

## 2.6.0-pre.0
## 2.6.0

### Minor Changes

Expand All @@ -16,7 +10,7 @@

- Vite: Cloudflare Pages support ([#8531](https://github.com/remix-run/remix/pull/8531))

To get started with Cloudflare, you can use the [`unstable-vite-cloudflare`][template-vite-cloudflare] template:
To get started with Cloudflare, you can use the \[`unstable-vite-cloudflare`]\[template-vite-cloudflare] template:

```shellscript nonumber
npx create-remix@latest --template remix-run/remix/templates/unstable-vite-cloudflare
Expand All @@ -25,7 +19,7 @@
Or read the new docs at [Future > Vite > Cloudflare](https://remix.run/docs/en/main/future/vite#cloudflare) and
[Future > Vite > Migrating > Migrating Cloudflare Functions](https://remix.run/docs/en/main/future/vite#migrating-cloudflare-functions).

- Unwrap thrown `Response`'s from `entry.server` into `ErrorResponse`s and preserve the status code ([#8577](https://github.com/remix-run/remix/pull/8577))
- Unwrap thrown `Response`'s from `entry.server` into `ErrorResponse`'s and preserve the status code ([#8577](https://github.com/remix-run/remix/pull/8577))

## 2.5.1

Expand Down
2 changes: 1 addition & 1 deletion packages/remix-server-runtime/package.json
@@ -1,6 +1,6 @@
{
"name": "@remix-run/server-runtime",
"version": "2.6.0-pre.3",
"version": "2.6.0",
"description": "Server runtime for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
Expand Down

0 comments on commit c85c9be

Please sign in to comment.