Skip to content

Commit

Permalink
Release to npm (#313)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 6, 2023
1 parent f49c63f commit ee07e79
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 39 deletions.
5 changes: 0 additions & 5 deletions .changeset/angry-balloons-applaud.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-mugs-cheer.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/four-carpets-watch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-wolves-join.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/nine-hotels-rule.md

This file was deleted.

26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @saleor/app-sdk

## 0.47.0

### Minor Changes

- 09b9185: Added optional, experimental `cacheManager` property to CloudAPL constructor. By default it doesn't change any behavior
and it's meant to be used for internal testing.
- f49c63f: Added VercelKvApl. It will use [Vercel KV Storage](https://vercel.com/docs/storage/vercel-kv) (using Upstash Redis under the hood).

APL requires following env variables:

`KV_URL`,`KV_REST_API_URL`,`KV_REST_API_TOKEN`,`KV_REST_API_READ_ONLY_TOKEN` - KV variables that are automatically linked by Vercel when KV is attached to the project.

`KV_STORAGE_NAMESPACE` - a string identifier that should be unique per app. If more than one app writes with the same `KV_STORAGE_NAMESPACE`, Auth Data will be overwritten and apps can stop working.

For now experimental - can be imported with:

```
import { _experimental_VercelKvApl } from "@saleor/app-sdk/apl";
```

### Patch Changes

- 9a5c858: Added missing HTTP.METHOD attribute to APL calls
- 6ddb7f4: Fixed bug where FileAPL.GET failed to read data when optional fields were not set (jwks, domain).
- 828490b: Improved JSDoc for AppManifest.brand.logo, now it explains format and size of the image

## 0.46.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@saleor/app-sdk",
"version": "0.46.0",
"version": "0.47.0",
"description": "SDK for building great Saleor Apps",
"scripts": {
"prepublishOnly": "pnpm build",
Expand Down

0 comments on commit ee07e79

Please sign in to comment.