Skip to content

Commit

Permalink
Merge pull request #952 from Shopify/sle-c/update-deps
Browse files Browse the repository at this point in the history
[chore] Update shopify-api package and use the January25 api version by default
  • Loading branch information
sle-c authored Jan 31, 2025
2 parents acc6e66 + eb5f63c commit cab6f02
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions app/shopify.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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;
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit cab6f02

Please sign in to comment.