Skip to content

Commit 0eeea21

Browse files
committed
Merge branch 'release-next' into dev
2 parents e775fd0 + ed69fc1 commit 0eeea21

File tree

35 files changed

+131
-38
lines changed

35 files changed

+131
-38
lines changed

.changeset/cold-suns-notice.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,14 @@ Date: YYYY-MM-DD
146146
147147
-->
148148

149+
## 2.7.2
150+
151+
Date: 2024-02-21
152+
153+
### Patch Changes
154+
155+
- Vite: Fix error when building projects with `.css?url` imports ([#8829](https://github.com/remix-run/remix/pull/8829))
156+
149157
## 2.7.1
150158

151159
Date: 2024-02-20

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
- bmac
7575
- bmarvinb
7676
- bmontalvo
77+
- bobziroll
7778
- bogas04
7879
- BogdanDevBst
7980
- bolchowka

docs/guides/client-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ These new exports are a bit of a sharp knife and are not recommended as your _pr
1414
- **Client Cache:** Cache server loader data in the client and avoid some server calls
1515
- **Migration:** Ease your migration from React Router -> Remix SPA -> Remix SSR (once Remix supports [SPA Mode][rfc-spa])
1616

17-
Please use these new exports with caution! If you're not careful - it's easy to get your UI out of sync. Remix out of the box tries _very_ hard to ensure that this doesn't happen - but once you take control over your own client-side cache, and potentially prevent Remix from performing it's normal server `fetch` calls - then Remix can no longer guarantee your UI remains in sync.
17+
Please use these new exports with caution! If you're not careful - it's easy to get your UI out of sync. Remix out of the box tries _very_ hard to ensure that this doesn't happen - but once you take control over your own client-side cache, and potentially prevent Remix from performing its normal server `fetch` calls - then Remix can no longer guarantee your UI remains in sync.
1818

1919
## Skip the Hop
2020

packages/create-remix/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `create-remix`
22

3+
## 2.7.2
4+
35
## 2.7.1
46

57
## 2.7.0

packages/create-remix/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-remix",
3-
"version": "2.7.1",
3+
"version": "2.7.2",
44
"description": "Create a new Remix app",
55
"homepage": "https://remix.run",
66
"bugs": {

packages/remix-architect/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `@remix-run/architect`
22

3+
## 2.7.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@remix-run/[email protected]`
9+
310
## 2.7.1
411

512
### Patch Changes

packages/remix-architect/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/architect",
3-
"version": "2.7.1",
3+
"version": "2.7.2",
44
"description": "Architect server request handler for Remix",
55
"bugs": {
66
"url": "https://github.com/remix-run/remix/issues"
@@ -15,7 +15,7 @@
1515
"typings": "dist/index.d.ts",
1616
"dependencies": {
1717
"@architect/functions": "^5.2.0",
18-
"@remix-run/node": "2.7.1",
18+
"@remix-run/node": "2.7.2",
1919
"@types/aws-lambda": "^8.10.82"
2020
},
2121
"devDependencies": {

packages/remix-cloudflare-pages/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `@remix-run/cloudflare-pages`
22

3+
## 2.7.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@remix-run/[email protected]`
9+
310
## 2.7.1
411

512
### Patch Changes

packages/remix-cloudflare-pages/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/cloudflare-pages",
3-
"version": "2.7.1",
3+
"version": "2.7.2",
44
"description": "Cloudflare Pages request handler for Remix",
55
"bugs": {
66
"url": "https://github.com/remix-run/remix/issues"
@@ -15,7 +15,7 @@
1515
"typings": "dist/index.d.ts",
1616
"module": "dist/esm/index.js",
1717
"dependencies": {
18-
"@remix-run/cloudflare": "2.7.1"
18+
"@remix-run/cloudflare": "2.7.2"
1919
},
2020
"devDependencies": {
2121
"@cloudflare/workers-types": "^4.20230518.0",

0 commit comments

Comments
 (0)