Skip to content

Releases: saleor/app-sdk

v0.50.3

11 Sep 10:05
882b8b7
Compare
Choose a tag to compare

Patch Changes

  • ac4e4a2: Now, the fixed body size limit was removed, this means there is no restriction for size of the webhook payload, sent by Saleor.

v0.50.2

03 Sep 11:14
b70eb57
Compare
Choose a tag to compare

Patch Changes

  • 0749a6e: Fixed duplicated span.end() called on CloudAPL. This was incorrect invocation - span can be ended just once.

v0.50.1

22 May 14:13
7161fae
Compare
Choose a tag to compare

Patch Changes

  • d24c734: Added additional debug logs for createManifestHandler utility. Now app with DEBUG env variable will print extra messagess helpful with broken app installations

v0.50.0

29 Feb 12:09
dda3f6e
Compare
Choose a tag to compare

Minor Changes

  • ef61335: Fix wrong logic introduced in 0.49.0: there is not header saleor-schema-version when app-sdk is processing saleor webhook. This header is only present on install request.

    Now app-sdk will try to parse version from version field on GraphQL subscription Event. If field is not present null will be returned.

v0.49.0

21 Feb 10:42
0477c11
Compare
Choose a tag to compare

Minor Changes

  • 53b8cdc: Parse the saleor-schema-version header and include the parsed version in the contexts of createHandler and webhookFactory. If the header is absent (Saleor version below 3.15), the version will default to null. This parsed version enables supporting multiple schemas in a single app, as outlined in the RFC.

v0.48.2

05 Jan 09:24
6527b0e
Compare
Choose a tag to compare

Patch Changes

  • 5a613ed: Removed HTTP_METHOD OTEL attributes. They broke displaying of resources when other attributes related to HTTP are not set.

v0.48.1

04 Jan 10:39
e1fd515
Compare
Choose a tag to compare

Patch Changes

  • 7529ab7: Added OTEL for VercelKV APL. This APL is still experimental, so the change is marked as patch

v0.48.0

03 Jan 15:32
2f24478
Compare
Choose a tag to compare

Minor Changes

  • 30485b7: Added pagination for CloudAPL. Previously if there were more than 100 results it would return only first 100. This change adds an option to configure the page size and automatically paginates through the responses until next property is set to null on the response

v0.47.2

12 Dec 11:54
d2f19da
Compare
Choose a tag to compare

Patch Changes

  • c707e10: Removed OTEL attribute http.method. It eventually caused bad mapping in Datadog -> overwriting span name
  • bd48ded: Removed JSON.parse from VercelKVAPL, used raw js objects to read and write them

v0.47.1

06 Dec 15:14
f11be4f
Compare
Choose a tag to compare

Patch Changes

  • d72d21b: Changed export path of VercelKv APL. Now its not exported from shared index file.