Upgrade Guide
Upgrade guide
This guide describes fictional upgrade steps between RelayKit versions.
From 1.x to 2.x
RelayKit 2.x renames WebhookJob to ProcessWebhookDelivery.
If you referenced the old job class directly, update your imports.
use RelayKit\Jobs\ProcessWebhookDelivery;
Configuration changes
The signature_tolerance option has been renamed to timestamp_tolerance.
Before:
'signature_tolerance' => 300,
After:
'timestamp_tolerance' => 300,
Database changes
Run the latest migrations after upgrading.
php artisan migrate