HTTP Hooks Temporarily Disabled #
HTTP hooks defined in your configuration will no longer execute. Instead, they return immediately with a "HTTP hooks are not yet supported" message.
Impact:
- If you have configured HTTP hooks (using
type: "http"in your hooks configuration), they will not execute in this version - The hook will be skipped rather than failing the operation—your workflow will continue without the HTTP call
- Bash hooks (
type: "bash") continue to work normally
Example log output when an HTTP hook is encountered:
Hooks: skipping HTTP hook https://example.com/hook — HTTP hooks are not yet supported
Workaround: If you rely on HTTP hooks, you can convert them to bash hooks that use curl to make the HTTP request:
{
"type": "bash",
"command": "curl -X POST -H 'Content-Type: application/json' -d '$HOOK_PAYLOAD' https://example.com/hook"
}
Hook execution skips HTTP hooks with message (search for "HTTP hooks are not yet supported")