Skip to content

Commit

Permalink
🚀 Release apps (#865)
Browse files Browse the repository at this point in the history
* Release apps

* Update CHANGELOG.md

* Update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Adrian Pilarczyk <admin@peelar.dev>
  • Loading branch information
3 people committed Aug 10, 2023
1 parent 416c92f commit 7b19ab4
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 54 deletions.
5 changes: 0 additions & 5 deletions .changeset/cold-toes-heal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/forty-shirts-battle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorgeous-crews-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-lobsters-design.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/odd-bananas-visit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-meals-wait.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/soft-steaks-know.md

This file was deleted.

6 changes: 6 additions & 0 deletions apps/cms-v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# saleor-app-cms-v2

## 2.2.0

### Minor Changes

- fe767a4: Changed public (manifest) name app to be "CMS" (previously it was "CMS 2", since two apps existed at the same time)

## 2.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/cms-v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saleor-app-cms-v2",
"version": "2.1.2",
"version": "2.2.0",
"scripts": {
"build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
Expand Down
6 changes: 6 additions & 0 deletions apps/emails-and-messages/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# saleor-app-emails-and-messages

## 1.9.5

### Patch Changes

- b8c5283: Changed capitalization of the name SendGrid in the UI.

## 1.9.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/emails-and-messages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saleor-app-emails-and-messages",
"version": "1.9.4",
"version": "1.9.5",
"scripts": {
"build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
Expand Down
28 changes: 28 additions & 0 deletions apps/taxes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# saleor-app-taxes

## 1.13.0

### Minor Changes

- 416c92f: Changed `externalId` order metadata field to `avataxId`. It is now only responsible for storing the id of Avatax transaction.
- 416c92f: Added support for reading document code from metadata field `avataxDocumentCode`. The default value is the order id from Saleor. The value for the document code is sliced to be under 20 characters. The requirement comes from Avatax API.
- 416c92f: Added support for reading the tax calculation date from metadata field `avataxTaxCalculationDate`. The value has to be valid UTC datetime string (e.g. "2021-08-31T13:00:00.000Z").
- 416c92f: Added `ORDER_CANCELLED` webhook handler with an implementation for Avatax. The transactions for corresponding orders in Saleor will be voided in the Avatax dashboard.
- 416c92f: Started the migration from `OrderCreated` to `OrderConfirmed` webhook event. In the new flow, the provider transactions will be created based on the order confirmation (either automatic or manual) event. The value of the `commit` field will be set based on the "isAutocommit" setting in the provider configuration.

The `OrderCreated` and `OrderFulfilled` handlers are deprecated. They will be removed on August 24, along with their corresponding webhooks. For now, both flows (`OrderCreated` -> `OrderFulfilled` and `OrderConfirmed`) are supported.

**Actions needed**:

The only scenario where you, as the user, may need to do something regarding this release is the following:

1. You created an order that still needs to be fulfilled (therefore, the corresponding AvaTax transaction is not committed).
2. You are planning to fulfill the order after August 23 (which is the date when we will complete the migration).

In that case, **remember you will not be able to commit the transaction by fulfilling the order in Saleor**. In the new flow, the transactions are committed in AvaTax while confirming the Saleor order, based on the "isAutocommit" flag. What you have to do is the following:

1. Make sure "isAutocommit" is set to true.
2. Trigger the `OrderConfirmed` event (either by [`orderConfirm` mutation](https://docs.saleor.io/docs/3.x/api-reference/orders/mutations/order-confirm) or in the Dashboard).

The AvaTax transaction created on the `OrderCreated` event should be updated with `commit: true`.

You can read more about the webhook flow in the Taxes App and the migration itself in [our documentation](https://saleor-docs-git-taxes-order-created-to-confirmed-saleorcommerce.vercel.app/docs/3.x/developer/app-store/apps/taxes/architecture#migration).

## 1.12.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/taxes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saleor-app-taxes",
"version": "1.12.1",
"version": "1.13.0",
"scripts": {
"build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
Expand Down

1 comment on commit 7b19ab4

@vercel
Copy link

@vercel vercel bot commented on 7b19ab4 Aug 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

saleor-app-taxes – ./apps/taxes

saleor-app-taxes-git-main-saleorcommerce.vercel.app
saleor-app-taxes-saleorcommerce.vercel.app
taxes.saleor.app

Please sign in to comment.