diff --git a/CHANGELOG.md b/CHANGELOG.md index 88abd9a3..376fb5aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # @shopify/shopify-app-template-remix +## 2025.01.31 +- [#952](https://github.com/Shopify/shopify-app-template-remix/pull/952) Update to Shopify App API v2025-01 + ## 2025.01.23 - [#923](https://github.com/Shopify/shopify-app-template-remix/pull/923) Update `@shopify/shopify-app-session-storage-prisma` to v6.0.0 @@ -11,7 +14,7 @@ ## 2024.12.19 - [#904](https://github.com/Shopify/shopify-app-template-remix/pull/904) bump `@shopify/app-bridge-react` to latest -- +- ## 2024.12.18 - [875](https://github.com/Shopify/shopify-app-template-remix/pull/875) Add Scopes Update Webhook diff --git a/app/shopify.server.ts b/app/shopify.server.ts index ec980711..a11bf9d1 100644 --- a/app/shopify.server.ts +++ b/app/shopify.server.ts @@ -10,7 +10,7 @@ import prisma from "./db.server"; const shopify = shopifyApp({ apiKey: process.env.SHOPIFY_API_KEY, apiSecretKey: process.env.SHOPIFY_API_SECRET || "", - apiVersion: ApiVersion.October24, + apiVersion: ApiVersion.January25, scopes: process.env.SCOPES?.split(","), appUrl: process.env.SHOPIFY_APP_URL || "", authPathPrefix: "/auth", @@ -26,7 +26,7 @@ const shopify = shopifyApp({ }); export default shopify; -export const apiVersion = ApiVersion.October24; +export const apiVersion = ApiVersion.January25; export const addDocumentResponseHeaders = shopify.addDocumentResponseHeaders; export const authenticate = shopify.authenticate; export const unauthenticated = shopify.unauthenticated; diff --git a/package.json b/package.json index 19a39355..3e898a70 100644 --- a/package.json +++ b/package.json @@ -24,15 +24,15 @@ }, "dependencies": { "@prisma/client": "^6.2.1", - "@remix-run/dev": "^2.7.1", + "@remix-run/dev": "^2.15.0", "@remix-run/fs-routes": "^2.15.0", - "@remix-run/node": "^2.7.1", - "@remix-run/react": "^2.7.1", - "@remix-run/serve": "^2.7.1", + "@remix-run/node": "^2.15.0", + "@remix-run/react": "^2.15.0", + "@remix-run/serve": "^2.15.0", "@shopify/app-bridge-react": "^4.1.6", "@shopify/cli": "^3.63.1", "@shopify/polaris": "^12.0.0", - "@shopify/shopify-app-remix": "^3.4.0", + "@shopify/shopify-app-remix": "^3.7.0", "@shopify/shopify-app-session-storage-prisma": "^6.0.0", "isbot": "^5.1.0", "prisma": "^6.2.1", @@ -41,7 +41,7 @@ "vite-tsconfig-paths": "^5.0.1" }, "devDependencies": { - "@remix-run/eslint-config": "^2.7.1", + "@remix-run/eslint-config": "^2.15.0", "@remix-run/route-config": "^2.15.0", "@shopify/api-codegen-preset": "^1.1.1", "@types/eslint": "^9.6.1",