Skip to content

Commit

Permalink
chore: Update version for release (#8809)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 20, 2024
1 parent b651d8d commit 70b1b7c
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 200 deletions.
72 changes: 27 additions & 45 deletions packages/remix-dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,11 @@
# `@remix-run/dev`

## 2.7.0-pre.4

### Patch Changes

- Vite: reliably detect non-root routes in Windows ([#8806](/~https://github.com/remix-run/remix/pull/8806))

Sometimes route `file` will be unnormalized Windows path with `\` instead of `/`.

- Always ignore route files starting with `.` ([#8801](/~https://github.com/remix-run/remix/pull/8801))
- Updated dependencies:
- `@remix-run/node@2.7.0-pre.4`
- `@remix-run/server-runtime@2.7.0-pre.4`

## 2.7.0-pre.3

### Patch Changes

- Vite: Pass `remixUserConfig` to preset `remixConfig` hook ([#8797](/~https://github.com/remix-run/remix/pull/8797))
- Updated dependencies:
- `@remix-run/node@2.7.0-pre.3`
- `@remix-run/server-runtime@2.7.0-pre.3`

## 2.7.0-pre.2

### Patch Changes

- Vite: fix server exports dead-code elimination for routes outside of app directory ([#8795](/~https://github.com/remix-run/remix/pull/8795))
- Vite: Ensure CSS file URLs that are only referenced in the server build are available on the client ([#8796](/~https://github.com/remix-run/remix/pull/8796))
- Updated dependencies:
- `@remix-run/node@2.7.0-pre.2`
- `@remix-run/server-runtime@2.7.0-pre.2`

## 2.7.0-pre.1

### Patch Changes

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

## 2.7.0-pre.0
## 2.7.0

### Minor Changes

- Allow an optional `Layout` export from the root route ([#8709](/~https://github.com/remix-run/remix/pull/8709))

- Vite: Cloudflare Proxy as a Vite plugin ([#8749](/~https://github.com/remix-run/remix/pull/8749))

**This is a breaking change for projects relying on Cloudflare support from the unstable Vite plugin**
Expand Down Expand Up @@ -90,18 +51,37 @@
While this is a breaking change for existing Remix Vite plugin consumers, now that the plugin has stabilized, there will no longer be any breaking changes outside of a major release. Thank you to all of our early adopters and community contributors for helping us get here! 🙏

- Vite: Stabilize "SPA Mode" by renaming the Remix vite plugin config from `unstable_ssr -> ssr` ([#8692](/~https://github.com/remix-run/remix/pull/8692))

- Vite: Add a new `basename` option to the Vite plugin, allowing users to set the internal React Router [`basename`](https://reactrouter.com/en/main/routers/create-browser-router#basename) in order to to serve their applications underneath a subpath ([#8145](/~https://github.com/remix-run/remix/pull/8145))
- Vite: Fix issue where client route file requests fail if search params have been parsed and serialized before reaching the Remix Vite plugin ([#8740](/~https://github.com/remix-run/remix/pull/8740))

### Patch Changes

- Vite: fix server exports dead-code elimination for routes outside of app directory ([#8795](/~https://github.com/remix-run/remix/pull/8795))

- Always prepend DOCTYPE in SPA mode entry.server.tsx, can opt out via remix reveal ([#8725](/~https://github.com/remix-run/remix/pull/8725))

- Fix build issue in SPA mode when using a `basename` ([#8720](/~https://github.com/remix-run/remix/pull/8720))

- Vite: Validate that the MDX Rollup plugin, if present, is placed before Remix in Vite config ([#8690](/~https://github.com/remix-run/remix/pull/8690))

- Vite: reliably detect non-root routes in Windows ([#8806](/~https://github.com/remix-run/remix/pull/8806))

Sometimes route `file` will be unnormalized Windows path with `\` instead of `/`.

- Vite: Pass `remixUserConfig` to preset `remixConfig` hook ([#8797](/~https://github.com/remix-run/remix/pull/8797))

- Vite: Fix issue resolving critical CSS during development when the current working directory differs from the project root ([#8752](/~https://github.com/remix-run/remix/pull/8752))

- Vite: Ensure CSS file URLs that are only referenced in the server build are available on the client ([#8796](/~https://github.com/remix-run/remix/pull/8796))

- Vite: Require version 5.1.0 to support `.css?url` imports ([#8723](/~https://github.com/remix-run/remix/pull/8723))

- Fix type error in Remix config for synchronous `routes` function ([#8745](/~https://github.com/remix-run/remix/pull/8745))

- Vite: Support Vite v5.1.0's `.css?url` imports ([#8684](/~https://github.com/remix-run/remix/pull/8684))

- Always ignore route files starting with `.` ([#8801](/~https://github.com/remix-run/remix/pull/8801))

- Vite: Enable use of [`vite preview`](https://main.vitejs.dev/guide/static-deploy.html#deploying-a-static-site) to preview Remix SPA applications ([#8624](/~https://github.com/remix-run/remix/pull/8624))

- In the SPA template, `npm run start` has been renamed to `npm run preview` which uses `vite preview` instead of a standalone HTTP server such as `http-server` or `serv-cli`
Expand All @@ -111,11 +91,13 @@
- ⚠️ **This is a breaking change for projects using the unstable Vite plugin with a `publicPath`**
- This is already handled in Vite via the [`base`](https://vitejs.dev/guide/build.html#public-base-path) config so we now set the Remix `publicPath` from the Vite `base` config

- Vite: Fix issue where client route file requests fail if search params have been parsed and serialized before reaching the Remix Vite plugin ([#8740](/~https://github.com/remix-run/remix/pull/8740))

- Vite: Enable HMR for .md and .mdx files ([#8711](/~https://github.com/remix-run/remix/pull/8711))

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

## 2.6.0

Expand Down
10 changes: 5 additions & 5 deletions packages/remix-dev/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/dev",
"version": "2.7.0-pre.4",
"version": "2.7.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.7.0-pre.4",
"@remix-run/node": "2.7.0",
"@remix-run/router": "1.15.1",
"@remix-run/server-runtime": "2.7.0-pre.4",
"@remix-run/server-runtime": "2.7.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.7.0-pre.4",
"@remix-run/serve": "2.7.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.28.2"
},
"peerDependencies": {
"@remix-run/serve": "^2.7.0-pre.4",
"@remix-run/serve": "^2.7.0",
"typescript": "^5.1.0",
"vite": "^5.1.0",
"wrangler": "^3.28.2"
Expand Down
32 changes: 2 additions & 30 deletions packages/remix-express/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,6 @@
# `@remix-run/express`

## 2.7.0-pre.4

### Patch Changes

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

## 2.7.0-pre.3

### Patch Changes

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

## 2.7.0-pre.2

### Patch Changes

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

## 2.7.0-pre.1

### Patch Changes

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

## 2.7.0-pre.0
## 2.7.0

### Minor Changes

Expand All @@ -41,7 +13,7 @@
- Remix relies on the knowing the full URL to ensure that server and client code can function together, and does not support URL rewriting prior to the Remix handler

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

## 2.6.0

Expand Down
4 changes: 2 additions & 2 deletions packages/remix-express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/express",
"version": "2.7.0-pre.4",
"version": "2.7.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.7.0-pre.4"
"@remix-run/node": "2.7.0"
},
"devDependencies": {
"@types/express": "^4.17.9",
Expand Down
32 changes: 2 additions & 30 deletions packages/remix-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,11 @@
# `@remix-run/node`

## 2.7.0-pre.4
## 2.7.0

### Patch Changes

- Updated dependencies:
- `@remix-run/server-runtime@2.7.0-pre.4`

## 2.7.0-pre.3

### Patch Changes

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

## 2.7.0-pre.2

### Patch Changes

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

## 2.7.0-pre.1

### Patch Changes

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

## 2.7.0-pre.0

### Patch Changes

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

## 2.6.0

Expand Down
4 changes: 2 additions & 2 deletions packages/remix-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/node",
"version": "2.7.0-pre.4",
"version": "2.7.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.7.0-pre.4",
"@remix-run/server-runtime": "2.7.0",
"@remix-run/web-fetch": "^4.4.2",
"@remix-run/web-file": "^3.1.0",
"@remix-run/web-stream": "^1.1.0",
Expand Down
38 changes: 3 additions & 35 deletions packages/remix-serve/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,12 @@
# `@remix-run/serve`

## 2.7.0-pre.4
## 2.7.0

### Patch Changes

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

## 2.7.0-pre.3

### Patch Changes

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

## 2.7.0-pre.2

### Patch Changes

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

## 2.7.0-pre.1

### Patch Changes

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

## 2.7.0-pre.0

### Patch Changes

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

## 2.6.0

Expand Down
6 changes: 3 additions & 3 deletions packages/remix-serve/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/serve",
"version": "2.7.0-pre.4",
"version": "2.7.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.7.0-pre.4",
"@remix-run/node": "2.7.0-pre.4",
"@remix-run/express": "2.7.0",
"@remix-run/node": "2.7.0",
"chokidar": "^3.5.3",
"compression": "^1.7.4",
"express": "^4.17.1",
Expand Down
10 changes: 1 addition & 9 deletions packages/remix-server-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
# `@remix-run/server-runtime`

## 2.7.0-pre.4

## 2.7.0-pre.3

## 2.7.0-pre.2

## 2.7.0-pre.1

## 2.7.0-pre.0
## 2.7.0

### Minor Changes

Expand Down
2 changes: 1 addition & 1 deletion packages/remix-server-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/server-runtime",
"version": "2.7.0-pre.4",
"version": "2.7.0",
"description": "Server runtime for Remix",
"bugs": {
"url": "/~https://github.com/remix-run/remix/issues"
Expand Down
Loading

0 comments on commit 70b1b7c

Please sign in to comment.