Skip to content

Commit

Permalink
Upgrade to Remix 1.17.1 (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
frandiox committed Jun 15, 2023
1 parent 180d717 commit f29e178
Show file tree
Hide file tree
Showing 23 changed files with 4,909 additions and 1,793 deletions.
20 changes: 20 additions & 0 deletions .changeset/dull-months-sit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
'@shopify/remix-oxygen': patch
'demo-store': patch
'@shopify/hydrogen': patch
'@shopify/cli-hydrogen': patch
---

Update Remix to the latest version (`1.17.1`).

When updating your app, remember to also update your Remix dependencies to `1.17.1` in your `package.json` file:

```diff
-"@remix-run/react": "1.15.0",
+"@remix-run/react": "1.17.1",

-"@remix-run/dev": "1.15.0",
-"@remix-run/eslint-config": "1.15.0",
+"@remix-run/dev": "1.17.1",
+"@remix-run/eslint-config": "1.17.1",
```
12 changes: 6 additions & 6 deletions examples/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/css-bundle": "1.15.0",
"@remix-run/express": "1.15.0",
"@remix-run/node": "1.15.0",
"@remix-run/react": "1.15.0",
"@remix-run/css-bundle": "1.17.1",
"@remix-run/express": "1.17.1",
"@remix-run/node": "1.17.1",
"@remix-run/react": "1.17.1",
"@shopify/hydrogen": "^2023.4.4",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
Expand All @@ -25,8 +25,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "1.15.0",
"@remix-run/eslint-config": "1.15.0",
"@remix-run/dev": "1.17.1",
"@remix-run/eslint-config": "1.17.1",
"@shopify/cli": "^3.46.2",
"@shopify/cli-hydrogen": "^5.0.0",
"@types/compression": "^1.7.2",
Expand Down
5 changes: 3 additions & 2 deletions examples/express/remix.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ module.exports = {
// publicPath: "/build/",
serverModuleFormat: 'cjs',
future: {
v2_errorBoundary: true,
v2_meta: true,
v2_normalizeFormMethod: true,
v2_headers: true,
v2_errorBoundary: true,
v2_routeConvention: true,
v2_normalizeFormMethod: true,
},
};

0 comments on commit f29e178

Please sign in to comment.