Releases: laravel/vapor-core
Releases · laravel/vapor-core
v2.43.3
- [2.0] Catch PDOException when MySQL server has gone away during SET SESSION wait_timeout reset by @rizalpahlevii in #200
v2.43.2
- Laravel 13.x Compatibility by @laravel-shift in #199
v2.43.1
- fix:
curl_close()is deprecated by @mortenhauberg in #198
v2.43.0
v2.42.0
- Expose AWS Lambda execution context for Vapor logging by @sahil7194 in #196
v2.41.0
- fix: Allow custom Lambda events from SQS by @mathiasgrimm in #194
v2.40.0
fix: Avoid Filtering Failed Jobs Timestamp in Memory (#193) * fix: Avoid Filtering Failed Jobs Timestamp in Memory To display queue metrics, Vapor loads all `failed_jobs` and filters the period (1m, 5m, 10m, 30m, 1h, 24h, 7d, 30d) in memory. When the failed_jobs table has a large number of rows, usually as a result of not pruning failed_jobs on a regular-basis, it would cause Queue Metrics to fail with HTTP status 502. `getTable` was made public via https://github.com/laravel/framework/pull/56384 Note: In another PR, we could also filter all the other filter options (id, queue, query) * Update VaporQueueListFailedCommand.php --------- Co-authored-by: Taylor Otwell <taylorotwell@gmail.com>
v2.39.0
- Add API Gateway request timestamp to server variables by @mortenhauberg in #192