Skip to content

Commit cd17e11

Browse files
Merge pull request #79 from Shopify/oct-25-api-version
use the latest API version
2 parents 77a188f + 566b982 commit cd17e11

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

.graphqlrc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function getConfig() {
88
projects: {
99
default: shopifyApiProject({
1010
apiType: ApiType.Admin,
11-
apiVersion: ApiVersion.July25,
11+
apiVersion: ApiVersion.October25,
1212
documents: ["./app/**/*.{js,ts,jsx,tsx}", "./app/.server/**/*.{js,ts,jsx,tsx}"],
1313
outputDir: "./app/types",
1414
}),

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 2025.10.01
44

5+
- [#79](https://github.com/Shopify/shopify-app-template-react-router/pull/78) Update API version to 2025-10.
56
- [#77](https://github.com/Shopify/shopify-app-template-react-router/pull/77) Update `@shopify/shopify-app-react-router` to V1.
67
- [#73](https://github.com/Shopify/shopify-app-template-react-router/pull/73/files) Rename @shopify/app-bridge-ui-types to @shopify/polaris-types
78

app/shopify.server.ts

Lines changed: 2 additions & 2 deletions
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.July25,
13+
apiVersion: ApiVersion.October25,
1414
scopes: process.env.SCOPES?.split(","),
1515
appUrl: process.env.SHOPIFY_APP_URL || "",
1616
authPathPrefix: "/auth",
@@ -22,7 +22,7 @@ const shopify = shopifyApp({
2222
});
2323

2424
export default shopify;
25-
export const apiVersion = ApiVersion.July25;
25+
export const apiVersion = ApiVersion.October25;
2626
export const addDocumentResponseHeaders = shopify.addDocumentResponseHeaders;
2727
export const authenticate = shopify.authenticate;
2828
export const unauthenticated = shopify.unauthenticated;

shopify.app.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
scopes = "write_products"
44

55
[webhooks]
6-
api_version = "2025-07"
6+
api_version = "2025-10"
77

88
# Handled by: /app/routes/webhooks.app.uninstalled.tsx
99
[[webhooks.subscriptions]]

0 commit comments

Comments
 (0)