New
- Refactors error callback parameters [#12]
- When returning a
x-error
callback, the URL contains botherrorCode
anderrorMessage
parameters. See documentation for examples.
- When returning a
Changes
- Drops support for Obsidian <v1.0
- Changes spaces in callback URLs from plus-sign- to percent-encoding [#11]
- Basically changes
key=some+value
tokey=some%20value
in return callbacks. Both are technically fine, but the former has a higher risk of not correctly being decoded by a number of 3rd party libraries.
- Basically changes
- Replaces all occurrences of
global.app
[#14]
Removals
- Removes support for
call-id
parameter [#7]- If you need to pair the callbacks coming from Actions URI to your outgoing requests, just add a parameter to your
x-success
orx-error
URLs. See documentation for examples.
- If you need to pair the callbacks coming from Actions URI to your outgoing requests, just add a parameter to your