Releases: mpociot/captainhook
Releases · mpociot/captainhook
Log ALL the requests!
Since Guzzle's asynchronous requests don't mean that the request is executed in the background, we switched to synchronous requests for all webhooks.
This also means that webhook logging can be used even with the sync
queue driver.
Added Webhook Logging
Upgrade Captain Hook from version 1.* to 2.*
Breaking changes
- Custom event listeners are no longered declared in an extended Service Provider. Place your custom events in the
config/captain_hook.php
instead. - There's no longer the need to extend the Service Provider.
New features
- Event listeners can be defined in the config file
- Event data transformer can be defined in the config file
- Support for Webhook response logging
Asynchronous Webhooks
1.0.4 Updated Guzzle dependency and made sure that webhook calls are sent a…