Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changeset/nine-chefs-stare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"saleor-app-klaviyo": minor
"saleor-app-avatax": minor
"saleor-app-search": minor
"saleor-app-smtp": minor
"saleor-app-cms": minor
Comment thread
lkostrowski marked this conversation as resolved.
---

Minimum Saleor version required is now 3.21 (Saleor 3.20 is EOL)
2 changes: 1 addition & 1 deletion apps/avatax/src/app/api/manifest/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const handler = createManifestHandler({
id: env.MANIFEST_APP_ID,
name: "AvaTax",
permissions: ["HANDLE_TAXES", "MANAGE_ORDERS"],
requiredSaleorVersion: ">=3.20 <4",
requiredSaleorVersion: ">=3.21 <4",
supportUrl: "https://github.com/saleor/apps/discussions",
tokenTargetUrl: `${apiBaseURL}/api/register`,
version: packageJson.version,
Expand Down
2 changes: 1 addition & 1 deletion apps/cms/src/pages/api/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const handler = createManifestHandler({
id: "saleor.app.cms2",
name: "CMS",
permissions: ["MANAGE_PRODUCTS"],
requiredSaleorVersion: ">=3.20 <4",
requiredSaleorVersion: ">=3.21 <4",
supportUrl: "https://github.com/saleor/apps/discussions",
tokenTargetUrl: `${apiBaseURL}/api/register`,
version: packageJson.version,
Expand Down
4 changes: 2 additions & 2 deletions apps/klaviyo/src/pages/api/manifest.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createManifestHandler } from "@saleor/app-sdk/handlers/next";
import { AppManifest } from "@saleor/app-sdk/types";
import { type AppManifest } from "@saleor/app-sdk/types";
import { wrapWithLoggerContext } from "@saleor/apps-logger/node";
import { withSpanAttributes } from "@saleor/apps-otel/src/with-span-attributes";

Expand Down Expand Up @@ -27,7 +27,7 @@ const handler = wrapWithLoggerContext(
default: `${apiBaseURL}/logo.png`,
},
},
requiredSaleorVersion: ">=3.20 <4",
requiredSaleorVersion: ">=3.21 <4",
dataPrivacyUrl: "https://saleor.io/legal/privacy/",
homepageUrl: "https://github.com/saleor/apps",
id: "saleor.app.klaviyo",
Expand Down
2 changes: 1 addition & 1 deletion apps/search/src/pages/api/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default wrapWithLoggerContext(
version: packageJson.version,
webhooks: appWebhooks.map((w) => w.getWebhookManifest(apiBaseURL)),
author: "Saleor Commerce",
requiredSaleorVersion: ">=3.20 <4",
requiredSaleorVersion: ">=3.21 <4",
};

return manifest;
Expand Down
2 changes: 1 addition & 1 deletion apps/smtp/src/pages/api/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default withSpanAttributes(
id: env.MANIFEST_APP_ID,
name: "SMTP",
permissions: ["MANAGE_ORDERS", "MANAGE_USERS", "MANAGE_GIFT_CARD"],
requiredSaleorVersion: ">=3.20 <4",
requiredSaleorVersion: ">=3.21 <4",
Comment thread
lkostrowski marked this conversation as resolved.
supportUrl: "https://github.com/saleor/apps/discussions",
tokenTargetUrl: `${apiBaseURL}/api/register`,
version: packageJson.version,
Expand Down
Loading