Release to npm (#216)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
5744aa4ffd
commit
f4e6bd6d18
7 changed files with 14 additions and 26 deletions
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"@saleor/app-sdk": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add EnvAPL which is a read-only single-tenant APL implementation. It can print AuthData from registration process, but the developer is responsible to configure ENV and pass data to the constructor.
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"@saleor/app-sdk": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Added useAuthenticatedFetch hook with can construct decorated window.fetch with pre-defined headers with required AppBridge state. Can be used with createProtectedHandler
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"@saleor/app-sdk": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
"domain" field in AuthData is no longer required. It will be set by registerHandler, but if missing, domain can be resolved from saleorApiUrl
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"@saleor/app-sdk": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
JWKS field in AuthData is no longer required. registerHandler will try to set it for cache purposes, but not every time it is possible. If JWKS is not found, registerHandler will fetch it
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"@saleor/app-sdk": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Remove MANAGE_APPS from possible permissions, because App should not have it. Mutations that requires MANAGE_APPS will not work with App Token even if permission is set
|
|
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,18 @@
|
||||||
# @saleor/app-sdk
|
# @saleor/app-sdk
|
||||||
|
|
||||||
|
## 0.35.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- dfd632b: Add EnvAPL which is a read-only single-tenant APL implementation. It can print AuthData from registration process, but the developer is responsible to configure ENV and pass data to the constructor.
|
||||||
|
- f7d38dc: Added useAuthenticatedFetch hook with can construct decorated window.fetch with pre-defined headers with required AppBridge state. Can be used with createProtectedHandler
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- dfd632b: "domain" field in AuthData is no longer required. It will be set by registerHandler, but if missing, domain can be resolved from saleorApiUrl
|
||||||
|
- dfd632b: JWKS field in AuthData is no longer required. registerHandler will try to set it for cache purposes, but not every time it is possible. If JWKS is not found, registerHandler will fetch it
|
||||||
|
- f7d38dc: Remove MANAGE_APPS from possible permissions, because App should not have it. Mutations that requires MANAGE_APPS will not work with App Token even if permission is set
|
||||||
|
|
||||||
## 0.34.2
|
## 0.34.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@saleor/app-sdk",
|
"name": "@saleor/app-sdk",
|
||||||
"version": "0.34.2",
|
"version": "0.35.0",
|
||||||
"description": "SDK for building great Saleor Apps",
|
"description": "SDK for building great Saleor Apps",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
|
Loading…
Reference in a new issue