Releases: saleor/app-sdk
Releases · saleor/app-sdk
v0.50.3
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
Patch Changes
- 0749a6e: Fixed duplicated span.end() called on CloudAPL. This was incorrect invocation - span can be ended just once.
v0.50.1
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
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
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
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
Patch Changes
- 7529ab7: Added OTEL for VercelKV APL. This APL is still experimental, so the change is marked as patch
v0.48.0
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
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
Patch Changes
- d72d21b: Changed export path of VercelKv APL. Now its not exported from shared index file.