Skip to content

Commit cab6f02

Browse files
authored
Merge pull request #952 from Shopify/sle-c/update-deps
[chore] Update shopify-api package and use the January25 api version by default
2 parents acc6e66 + eb5f63c commit cab6f02

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# @shopify/shopify-app-template-remix
22

3+
## 2025.01.31
4+
- [#952](https://github.com/Shopify/shopify-app-template-remix/pull/952) Update to Shopify App API v2025-01
5+
36
## 2025.01.23
47

58
- [#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 @@
1114
## 2024.12.19
1215

1316
- [#904](https://github.com/Shopify/shopify-app-template-remix/pull/904) bump `@shopify/app-bridge-react` to latest
14-
-
17+
-
1518
## 2024.12.18
1619

1720
- [875](https://github.com/Shopify/shopify-app-template-remix/pull/875) Add Scopes Update Webhook

app/shopify.server.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import prisma from "./db.server";
1010
const shopify = shopifyApp({
1111
apiKey: process.env.SHOPIFY_API_KEY,
1212
apiSecretKey: process.env.SHOPIFY_API_SECRET || "",
13-
apiVersion: ApiVersion.October24,
13+
apiVersion: ApiVersion.January25,
1414
scopes: process.env.SCOPES?.split(","),
1515
appUrl: process.env.SHOPIFY_APP_URL || "",
1616
authPathPrefix: "/auth",
@@ -26,7 +26,7 @@ const shopify = shopifyApp({
2626
});
2727

2828
export default shopify;
29-
export const apiVersion = ApiVersion.October24;
29+
export const apiVersion = ApiVersion.January25;
3030
export const addDocumentResponseHeaders = shopify.addDocumentResponseHeaders;
3131
export const authenticate = shopify.authenticate;
3232
export const unauthenticated = shopify.unauthenticated;

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
},
2525
"dependencies": {
2626
"@prisma/client": "^6.2.1",
27-
"@remix-run/dev": "^2.7.1",
27+
"@remix-run/dev": "^2.15.0",
2828
"@remix-run/fs-routes": "^2.15.0",
29-
"@remix-run/node": "^2.7.1",
30-
"@remix-run/react": "^2.7.1",
31-
"@remix-run/serve": "^2.7.1",
29+
"@remix-run/node": "^2.15.0",
30+
"@remix-run/react": "^2.15.0",
31+
"@remix-run/serve": "^2.15.0",
3232
"@shopify/app-bridge-react": "^4.1.6",
3333
"@shopify/cli": "^3.63.1",
3434
"@shopify/polaris": "^12.0.0",
35-
"@shopify/shopify-app-remix": "^3.4.0",
35+
"@shopify/shopify-app-remix": "^3.7.0",
3636
"@shopify/shopify-app-session-storage-prisma": "^6.0.0",
3737
"isbot": "^5.1.0",
3838
"prisma": "^6.2.1",
@@ -41,7 +41,7 @@
4141
"vite-tsconfig-paths": "^5.0.1"
4242
},
4343
"devDependencies": {
44-
"@remix-run/eslint-config": "^2.7.1",
44+
"@remix-run/eslint-config": "^2.15.0",
4545
"@remix-run/route-config": "^2.15.0",
4646
"@shopify/api-codegen-preset": "^1.1.1",
4747
"@types/eslint": "^9.6.1",

0 commit comments

Comments
 (0)