Release apps (#934)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Lukasz Ostrowski 2023-08-30 10:43:22 +02:00 committed by GitHub
parent 0f84985c98
commit 056209486c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 185 additions and 93 deletions

View file

@ -1,5 +0,0 @@
---
"saleor-app-search": minor
---
Added new field to products document: descriptionPlaintext. It contains the product description converted to plaintext format which can be used to full text search.

View file

@ -1,5 +0,0 @@
---
"saleor-app-search": minor
---
Added Algolia index configuration helper, which sets up recommended settings: distinct results based on Product ID, faceting filters and searchable attributes.

View file

@ -1,6 +0,0 @@
---
"saleor-app-products-feed": patch
"@saleor/apps-shared": patch
---
Plaintext EditorJS renderer has been moved to the shared package.

View file

@ -1,5 +0,0 @@
---
"saleor-app-search": patch
---
Added script responsible for webhook migration.

View file

@ -1,18 +0,0 @@
---
"@saleor/react-hook-form-macaw": patch
"saleor-app-emails-and-messages": patch
"saleor-app-data-importer": patch
"saleor-app-products-feed": patch
"@saleor/apps-shared": patch
"saleor-app-invoices": patch
"saleor-app-klaviyo": patch
"saleor-app-segment": patch
"saleor-app-cms-v2": patch
"saleor-app-search": patch
"@saleor/apps-ui": patch
"saleor-app-slack": patch
"saleor-app-taxes": patch
"saleor-app-crm": patch
---
Updated Macaw to pre-127

View file

@ -1,5 +0,0 @@
---
"saleor-app-search": patch
---
Fixed issue with stale product variants after product deletion or channel visibility settings change.

View file

@ -1,5 +0,0 @@
---
"saleor-app-cms-v2": patch
---
Fixed background color of the modal. Previously white background was missing and only blur was applied. Now it is blurred and white with an opacity (in the dark mode it is fixed with dark grey)

View file

@ -1,18 +0,0 @@
---
"@saleor/react-hook-form-macaw": patch
"saleor-app-emails-and-messages": patch
"saleor-app-data-importer": patch
"saleor-app-products-feed": patch
"@saleor/apps-shared": patch
"saleor-app-invoices": patch
"saleor-app-klaviyo": patch
"saleor-app-segment": patch
"saleor-app-cms-v2": patch
"saleor-app-search": patch
"@saleor/apps-ui": patch
"saleor-app-slack": patch
"saleor-app-taxes": patch
"saleor-app-crm": patch
---
Remove clsx package from the projects no longer using it.

View file

@ -1,7 +0,0 @@
---
"saleor-app-search": patch
---
Refactor: Introduced tRPC and re-implemented /api/configuration endpoint to the tRPC controller.
_This does not affect the end-user functionality_

View file

@ -1,5 +0,0 @@
---
"saleor-app-segment": patch
---
Fix typo in the UI ("configration" -> "configuration").

View file

@ -1,5 +1,19 @@
# saleor-app-cms-v2 # saleor-app-cms-v2
## 2.3.1
### Patch Changes
- a81f061: Updated Macaw to pre-127
- d9d0f64: Fixed background color of the modal. Previously white background was missing and only blur was applied. Now it is blurred and white with an opacity (in the dark mode it is fixed with dark grey)
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
- @saleor/react-hook-form-macaw@0.2.5
- @saleor/apps-ui@1.1.8
## 2.3.0 ## 2.3.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-cms-v2", "name": "saleor-app-cms-v2",
"version": "2.3.0", "version": "2.3.1",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,16 @@
# saleor-app-crm # saleor-app-crm
## 1.7.6
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
## 1.7.5 ## 1.7.5
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-crm", "name": "saleor-app-crm",
"version": "1.7.5", "version": "1.7.6",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,16 @@
# saleor-app-data-importer # saleor-app-data-importer
## 1.9.5
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
## 1.9.4 ## 1.9.4
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-data-importer", "name": "saleor-app-data-importer",
"version": "1.9.4", "version": "1.9.5",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,18 @@
# saleor-app-emails-and-messages # saleor-app-emails-and-messages
## 1.9.8
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
- @saleor/react-hook-form-macaw@0.2.5
- @saleor/apps-ui@1.1.8
## 1.9.7 ## 1.9.7
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-emails-and-messages", "name": "saleor-app-emails-and-messages",
"version": "1.9.7", "version": "1.9.8",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,16 @@
# saleor-app-invoices # saleor-app-invoices
## 1.15.6
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
## 1.15.5 ## 1.15.5
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-invoices", "name": "saleor-app-invoices",
"version": "1.15.5", "version": "1.15.6",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,16 @@
# saleor-app-klaviyo # saleor-app-klaviyo
## 1.8.5
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
## 1.8.4 ## 1.8.4
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-klaviyo", "name": "saleor-app-klaviyo",
"version": "1.8.4", "version": "1.8.5",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,19 @@
# saleor-app-products-feed # saleor-app-products-feed
## 1.11.4
### Patch Changes
- 2a1385b: Plaintext EditorJS renderer has been moved to the shared package.
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
- @saleor/react-hook-form-macaw@0.2.5
- @saleor/apps-ui@1.1.8
## 1.11.3 ## 1.11.3
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-products-feed", "name": "saleor-app-products-feed",
"version": "1.11.3", "version": "1.11.4",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,29 @@
# saleor-app-search # saleor-app-search
## 1.14.0
### Minor Changes
- 2a1385b: Added new field to products document: descriptionPlaintext. It contains the product description converted to plaintext format which can be used to full text search.
- 2a1385b: Added Algolia index configuration helper, which sets up recommended settings: distinct results based on Product ID, faceting filters and searchable attributes.
### Patch Changes
- 2a1385b: Added script responsible for webhook migration.
- a81f061: Updated Macaw to pre-127
- 2a1385b: Fixed issue with stale product variants after product deletion or channel visibility settings change.
- fcc37e7: Remove clsx package from the projects no longer using it.
- 0f84985: Refactor: Introduced tRPC and re-implemented /api/configuration endpoint to the tRPC controller.
_This does not affect the end-user functionality_
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
- @saleor/react-hook-form-macaw@0.2.5
- @saleor/apps-ui@1.1.8
## 1.13.1 ## 1.13.1
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-search", "name": "saleor-app-search",
"version": "1.13.1", "version": "1.14.0",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,19 @@
# saleor-app-segment # saleor-app-segment
## 1.0.1
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- 254cd4c: Fix typo in the UI ("configration" -> "configuration").
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
- @saleor/react-hook-form-macaw@0.2.5
- @saleor/apps-ui@1.1.8
## 1.0.0 ## 1.0.0
### Major Changes ### Major Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-segment", "name": "saleor-app-segment",
"version": "1.0.0", "version": "1.0.1",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,18 @@
# saleor-app-slack # saleor-app-slack
## 1.8.5
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
- @saleor/react-hook-form-macaw@0.2.5
- @saleor/apps-ui@1.1.8
## 1.8.4 ## 1.8.4
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-slack", "name": "saleor-app-slack",
"version": "1.8.4", "version": "1.8.5",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,18 @@
# saleor-app-taxes # saleor-app-taxes
## 1.15.1
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
- Updated dependencies [2a1385b]
- Updated dependencies [a81f061]
- Updated dependencies [fcc37e7]
- @saleor/apps-shared@1.8.1
- @saleor/react-hook-form-macaw@0.2.5
- @saleor/apps-ui@1.1.8
## 1.15.0 ## 1.15.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "saleor-app-taxes", "name": "saleor-app-taxes",
"version": "1.15.0", "version": "1.15.1",
"scripts": { "scripts": {
"build": "pnpm generate && next build", "build": "pnpm generate && next build",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",

View file

@ -1,5 +1,12 @@
# @saleor/react-hook-form-macaw # @saleor/react-hook-form-macaw
## 0.2.5
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
## 0.2.4 ## 0.2.4
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@saleor/react-hook-form-macaw", "name": "@saleor/react-hook-form-macaw",
"version": "0.2.4", "version": "0.2.5",
"scripts": { "scripts": {
"build-storybook": "storybook build", "build-storybook": "storybook build",
"lint:fix": "eslint --fix .", "lint:fix": "eslint --fix .",

View file

@ -1,5 +1,13 @@
# @saleor/apps-shared # @saleor/apps-shared
## 1.8.1
### Patch Changes
- 2a1385b: Plaintext EditorJS renderer has been moved to the shared package.
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
## 1.8.0 ## 1.8.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@saleor/apps-shared", "name": "@saleor/apps-shared",
"version": "1.8.0", "version": "1.8.1",
"scripts": { "scripts": {
"lint:fix": "eslint --fix ." "lint:fix": "eslint --fix ."
}, },

View file

@ -1,5 +1,12 @@
# @saleor/apps-ui # @saleor/apps-ui
## 1.1.8
### Patch Changes
- a81f061: Updated Macaw to pre-127
- fcc37e7: Remove clsx package from the projects no longer using it.
## 1.1.7 ## 1.1.7
### Patch Changes ### Patch Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@saleor/apps-ui", "name": "@saleor/apps-ui",
"version": "1.1.7", "version": "1.1.8",
"scripts": { "scripts": {
"lint:fix": "eslint --fix ." "lint:fix": "eslint --fix ."
}, },