From 17925f21155b27965a3b10cb7905e408a89adc3f Mon Sep 17 00:00:00 2001 From: Lukasz Ostrowski Date: Mon, 28 Aug 2023 08:19:32 +0200 Subject: [PATCH] Release apps (#917) Co-authored-by: github-actions[bot] --- .changeset/fifty-radios-beam.md | 5 ----- .changeset/hungry-clocks-move.md | 5 ----- .changeset/light-bobcats-prove.md | 5 ----- .changeset/nice-jobs-ring.md | 5 ----- .changeset/strong-pugs-cover.md | 5 ----- .changeset/unlucky-tips-smash.md | 5 ----- apps/cms-v2/CHANGELOG.md | 11 +++++++++++ apps/cms-v2/package.json | 2 +- apps/taxes/CHANGELOG.md | 11 +++++++++++ apps/taxes/package.json | 2 +- 10 files changed, 24 insertions(+), 32 deletions(-) delete mode 100644 .changeset/fifty-radios-beam.md delete mode 100644 .changeset/hungry-clocks-move.md delete mode 100644 .changeset/light-bobcats-prove.md delete mode 100644 .changeset/nice-jobs-ring.md delete mode 100644 .changeset/strong-pugs-cover.md delete mode 100644 .changeset/unlucky-tips-smash.md diff --git a/.changeset/fifty-radios-beam.md b/.changeset/fifty-radios-beam.md deleted file mode 100644 index 365e786..0000000 --- a/.changeset/fifty-radios-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-taxes": patch ---- - -Fixed the issue when user id was not available during tax calculation. Now, to identify the user during tax calculation, we use the user email. diff --git a/.changeset/hungry-clocks-move.md b/.changeset/hungry-clocks-move.md deleted file mode 100644 index e7d259d..0000000 --- a/.changeset/hungry-clocks-move.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-cms-v2": patch ---- - -Fix PayloadCMS form where two inputs were stuck together without a margin. Now, they are placed in two columns diff --git a/.changeset/light-bobcats-prove.md b/.changeset/light-bobcats-prove.md deleted file mode 100644 index c37dbb2..0000000 --- a/.changeset/light-bobcats-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-cms-v2": patch ---- - -Fix styling of modal in the dark mode diff --git a/.changeset/nice-jobs-ring.md b/.changeset/nice-jobs-ring.md deleted file mode 100644 index 42316e6..0000000 --- a/.changeset/nice-jobs-ring.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-taxes": minor ---- - -Removed all the code related to the deprecated OrderCreated & OrderFulfilled flow. The migration process began in version 1.13.0. All the cloud environments had been migrated automatically. diff --git a/.changeset/strong-pugs-cover.md b/.changeset/strong-pugs-cover.md deleted file mode 100644 index 8309515..0000000 --- a/.changeset/strong-pugs-cover.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-cms-v2": minor ---- - -Added Payload CMS support. diff --git a/.changeset/unlucky-tips-smash.md b/.changeset/unlucky-tips-smash.md deleted file mode 100644 index 532c35a..0000000 --- a/.changeset/unlucky-tips-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-taxes": patch ---- - -Fixed the error when checkout couldn't calculate taxes when no customerCode was provided. In calculate taxes, the customerCode is now derived from issuingPrincipal's id. diff --git a/apps/cms-v2/CHANGELOG.md b/apps/cms-v2/CHANGELOG.md index c8bd016..383f820 100644 --- a/apps/cms-v2/CHANGELOG.md +++ b/apps/cms-v2/CHANGELOG.md @@ -1,5 +1,16 @@ # saleor-app-cms-v2 +## 2.3.0 + +### Minor Changes + +- 6f1c5c9: Added Payload CMS support. + +### Patch Changes + +- e9378e7: Fix PayloadCMS form where two inputs were stuck together without a margin. Now, they are placed in two columns +- 6f1c5c9: Fix styling of modal in the dark mode + ## 2.2.2 ### Patch Changes diff --git a/apps/cms-v2/package.json b/apps/cms-v2/package.json index 74ae114..b0b49e1 100644 --- a/apps/cms-v2/package.json +++ b/apps/cms-v2/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-cms-v2", - "version": "2.2.2", + "version": "2.3.0", "scripts": { "build": "pnpm generate && next build", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", diff --git a/apps/taxes/CHANGELOG.md b/apps/taxes/CHANGELOG.md index 8f9097d..27adff5 100644 --- a/apps/taxes/CHANGELOG.md +++ b/apps/taxes/CHANGELOG.md @@ -1,5 +1,16 @@ # saleor-app-taxes +## 1.15.0 + +### Minor Changes + +- 783bd5e: Removed all the code related to the deprecated OrderCreated & OrderFulfilled flow. The migration process began in version 1.13.0. All the cloud environments had been migrated automatically. + +### Patch Changes + +- 34efd39: Fixed the issue when user id was not available during tax calculation. Now, to identify the user during tax calculation, we use the user email. +- 45ed9fb: Fixed the error when checkout couldn't calculate taxes when no customerCode was provided. In calculate taxes, the customerCode is now derived from issuingPrincipal's id. + ## 1.14.0 ### Minor Changes diff --git a/apps/taxes/package.json b/apps/taxes/package.json index e3dcbac..b975ebc 100644 --- a/apps/taxes/package.json +++ b/apps/taxes/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-taxes", - "version": "1.14.0", + "version": "1.15.0", "scripts": { "build": "pnpm generate && next build", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",