Release apps (#885)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
7d574c70c9
commit
895004dd55
16 changed files with 54 additions and 26 deletions
|
@ -1,9 +0,0 @@
|
|||
---
|
||||
"saleor-app-search": minor
|
||||
---
|
||||
|
||||
Extended search model with two new fields:
|
||||
- `inStock`: returns true if stock is available. To keep this up to date, the application subscribes to `ProductVariantOutOfStock` and `ProductVariantBackInStock` events
|
||||
- `media`: array of objects containing URL and type of given file (video or image)
|
||||
|
||||
To enable those features, open App configuration page and click on the `Update webhooks` button. To update existing data start a data import.
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
"saleor-app-emails-and-messages": patch
|
||||
"saleor-app-products-feed": patch
|
||||
"saleor-app-invoices": patch
|
||||
"saleor-app-cms-v2": patch
|
||||
"saleor-app-taxes": patch
|
||||
"saleor-app-crm": patch
|
||||
---
|
||||
|
||||
Added error logging for exceptions thrown at tRPC routes.
|
|
@ -1,5 +1,11 @@
|
|||
# saleor-app-cms-v2
|
||||
|
||||
## 2.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3002354: Added error logging for exceptions thrown at tRPC routes.
|
||||
|
||||
## 2.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "saleor-app-cms-v2",
|
||||
"version": "2.2.0",
|
||||
"version": "2.2.1",
|
||||
"scripts": {
|
||||
"build": "pnpm generate && next build",
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# saleor-app-crm
|
||||
|
||||
## 1.7.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3002354: Added error logging for exceptions thrown at tRPC routes.
|
||||
|
||||
## 1.7.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "saleor-app-crm",
|
||||
"version": "1.7.3",
|
||||
"version": "1.7.4",
|
||||
"scripts": {
|
||||
"build": "pnpm generate && next build",
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# saleor-app-emails-and-messages
|
||||
|
||||
## 1.9.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3002354: Added error logging for exceptions thrown at tRPC routes.
|
||||
|
||||
## 1.9.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "saleor-app-emails-and-messages",
|
||||
"version": "1.9.5",
|
||||
"version": "1.9.6",
|
||||
"scripts": {
|
||||
"build": "pnpm generate && next build",
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# saleor-app-invoices
|
||||
|
||||
## 1.15.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3002354: Added error logging for exceptions thrown at tRPC routes.
|
||||
|
||||
## 1.15.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "saleor-app-invoices",
|
||||
"version": "1.15.3",
|
||||
"version": "1.15.4",
|
||||
"scripts": {
|
||||
"build": "pnpm generate && next build",
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# saleor-app-products-feed
|
||||
|
||||
## 1.11.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3002354: Added error logging for exceptions thrown at tRPC routes.
|
||||
|
||||
## 1.11.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "saleor-app-products-feed",
|
||||
"version": "1.11.1",
|
||||
"version": "1.11.2",
|
||||
"scripts": {
|
||||
"build": "pnpm generate && next build",
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
|
|
|
@ -1,5 +1,16 @@
|
|||
# saleor-app-search
|
||||
|
||||
## 1.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 69fe973: Extended search model with two new fields:
|
||||
|
||||
- `inStock`: returns true if stock is available. To keep this up to date, the application subscribes to `ProductVariantOutOfStock` and `ProductVariantBackInStock` events
|
||||
- `media`: array of objects containing URL and type of given file (video or image)
|
||||
|
||||
To enable those features, open App configuration page and click on the `Update webhooks` button. To update existing data start a data import.
|
||||
|
||||
## 1.12.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "saleor-app-search",
|
||||
"version": "1.12.1",
|
||||
"version": "1.13.0",
|
||||
"scripts": {
|
||||
"build": "pnpm generate && next build",
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# saleor-app-taxes
|
||||
|
||||
## 1.13.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3002354: Added error logging for exceptions thrown at tRPC routes.
|
||||
|
||||
## 1.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "saleor-app-taxes",
|
||||
"version": "1.13.0",
|
||||
"version": "1.13.1",
|
||||
"scripts": {
|
||||
"build": "pnpm generate && next build",
|
||||
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
|
||||
|
|
Loading…
Reference in a new issue