Skip to content

Commit

Permalink
Update API version and shopify-app-remix version (#863)
Browse files Browse the repository at this point in the history
* api version and remix package version

* changelog

* update pr link

* Update CHANGELOG.md
  • Loading branch information
andy-liuu authored Oct 2, 2024
1 parent ccea6a8 commit 8b74e29
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @shopify/shopify-app-template-remix

## 2024.10.02

- [863](https://github.com/Shopify/shopify-app-template-remix/pull/863) Update to Shopify App API v2024-10 and shopify-app-remix v3.3.2

## 2024.09.18

- [850](https://github.com/Shopify/shopify-app-template-remix/pull/850) Removed "~" import alias
Expand Down
4 changes: 2 additions & 2 deletions app/shopify.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import prisma from "./db.server";
const shopify = shopifyApp({
apiKey: process.env.SHOPIFY_API_KEY,
apiSecretKey: process.env.SHOPIFY_API_SECRET || "",
apiVersion: ApiVersion.July24,
apiVersion: ApiVersion.October24,
scopes: process.env.SCOPES?.split(","),
appUrl: process.env.SHOPIFY_APP_URL || "",
authPathPrefix: "/auth",
Expand All @@ -27,7 +27,7 @@ const shopify = shopifyApp({
});

export default shopify;
export const apiVersion = ApiVersion.July24;
export const apiVersion = ApiVersion.October24;
export const addDocumentResponseHeaders = shopify.addDocumentResponseHeaders;
export const authenticate = shopify.authenticate;
export const unauthenticated = shopify.unauthenticated;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@shopify/app-bridge-react": "^4.1.2",
"@shopify/cli": "^3.63.1",
"@shopify/polaris": "^12.0.0",
"@shopify/shopify-app-remix": "^3.0.2",
"@shopify/shopify-app-remix": "^3.3.2",
"@shopify/shopify-app-session-storage-prisma": "^5.0.2",
"isbot": "^5.1.0",
"prisma": "^5.11.0",
Expand Down

0 comments on commit 8b74e29

Please sign in to comment.