Release 2023-05-15

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Lukasz Ostrowski 2023-05-15 17:32:04 +02:00 committed by GitHub
parent 72adeb3b13
commit 1fd0960562
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 93 additions and 57 deletions

View file

@ -1,5 +0,0 @@
---
"saleor-app-taxes": patch
---
Fix quantity not respected when calculating taxes.

View file

@ -1,11 +0,0 @@
---
"saleor-app-invoices": minor
---
Major update of the App UI and behavior:
- Replaced old Macaw/MUI with @saleor/macaw-ui/next (new UI, new look)
- Changed App behavior how settings are stored. Before - it cloned shop data and stored it per-channel in App settings (metadata). Now it uses Shop data by default + overrides per channel
App includes migration code, it should work seamlessly and update its settings/schema automatically.

View file

@ -1,5 +0,0 @@
---
"saleor-app-taxes": patch
---
Fix channels not showing in the channels list if there are too many of them.

View file

@ -1,15 +0,0 @@
---
"saleor-app-emails-and-messages": patch
"saleor-app-data-importer": patch
"saleor-app-products-feed": patch
"saleor-app-monitoring": patch
"saleor-app-invoices": patch
"saleor-app-klaviyo": patch
"saleor-app-search": patch
"saleor-app-slack": patch
"saleor-app-taxes": patch
"saleor-app-cms": patch
"saleor-app-crm": patch
---
Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable

View file

@ -1,5 +0,0 @@
---
"saleor-app-taxes": minor
---
Make companyCode optional in Avatax.

View file

@ -1,5 +0,0 @@
---
"saleor-app-invoices": patch
---
Fixed address form not loading if not data was set before

View file

@ -1,5 +1,11 @@
# saleor-app-cms # saleor-app-cms
## 1.4.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.4.0 ## 1.4.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-cms", "name": "saleor-app-cms",
"version": "1.4.0", "version": "1.4.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-crm # saleor-app-crm
## 1.3.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.3.0 ## 1.3.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-crm", "name": "saleor-app-crm",
"version": "1.3.0", "version": "1.3.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-data-importer # saleor-app-data-importer
## 1.7.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.7.0 ## 1.7.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-data-importer", "name": "saleor-app-data-importer",
"version": "1.7.0", "version": "1.7.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-emails-and-messages # saleor-app-emails-and-messages
## 1.5.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.5.0 ## 1.5.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-emails-and-messages", "name": "saleor-app-emails-and-messages",
"version": "1.5.0", "version": "1.5.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,21 @@
# saleor-app-invoices # saleor-app-invoices
## 1.13.0
### Minor Changes
- ccd8250: Major update of the App UI and behavior:
- Replaced old Macaw/MUI with @saleor/macaw-ui/next (new UI, new look)
- Changed App behavior how settings are stored. Before - it cloned shop data and stored it per-channel in App settings (metadata). Now it uses Shop data by default + overrides per channel
App includes migration code, it should work seamlessly and update its settings/schema automatically.
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
- ee1a4af: Fixed address form not loading if not data was set before
## 1.12.0 ## 1.12.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-invoices", "name": "saleor-app-invoices",
"version": "1.12.0", "version": "1.13.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-klaviyo # saleor-app-klaviyo
## 1.6.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.6.0 ## 1.6.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-klaviyo", "name": "saleor-app-klaviyo",
"version": "1.6.0", "version": "1.6.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-monitoring # saleor-app-monitoring
## 0.6.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 0.6.0 ## 0.6.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-monitoring", "name": "saleor-app-monitoring",
"version": "0.6.0", "version": "0.6.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-products-feed # saleor-app-products-feed
## 1.6.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.6.0 ## 1.6.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-products-feed", "name": "saleor-app-products-feed",
"version": "1.6.0", "version": "1.6.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-search # saleor-app-search
## 1.8.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.8.0 ## 1.8.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-search", "name": "saleor-app-search",
"version": "1.8.0", "version": "1.8.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,11 @@
# saleor-app-slack # saleor-app-slack
## 1.6.1
### Patch Changes
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.6.0 ## 1.6.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-slack", "name": "saleor-app-slack",
"version": "1.6.0", "version": "1.6.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,17 @@
# saleor-app-taxes # saleor-app-taxes
## 1.5.0
### Minor Changes
- 0c039f5: Make companyCode optional in Avatax.
### Patch Changes
- b4ddb02: Fix quantity not respected when calculating taxes.
- 9ecb629: Fix channels not showing in the channels list if there are too many of them.
- 8b22b1c: Restored Pino logger packages to each app, to fix failing logs in development. Also updated .env.example to contain up to date APP_LOG_LEVEL variable
## 1.4.0 ## 1.4.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-taxes", "name": "saleor-app-taxes",
"version": "1.4.0", "version": "1.5.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",