From 2cad6c75dc2b96cbfd48c0511bb035a4e328c17f Mon Sep 17 00:00:00 2001 From: its Date: Sun, 14 Aug 2022 23:23:22 +0200 Subject: [PATCH] Bumped version to 5.1.7, updated changelog. --- CHANGELOG.md | 10 ++++++++++ Clockwork/Clockwork.php | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d3c906..fa7d5296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +5.1.7 + +- added support for authentiaction in the Vanilla integration +- added support for compressed Xdebug profiles +- improved collecting of Laravel Artisan commands to support abbreviated commands (implemented by mike-peters90, thanks!) +- fixed doubled backslashes in collected Laravel database query bindings (reported by pys1992, thanks!) +- fixed compatibility with PostgreSQL in SQL storage (implemented by screw, thanks!) +- fixed possible crash during file storage cleanup when used with Laravel Octane (reported by flexchar, thanks!) +- fixed infinite loop when collecting queries in Doctrine 3.x (reported by N-M, thanks!) + 5.1.6 - added Monolog 2.x compatible handler (idea by mahagr, thanks!) diff --git a/Clockwork/Clockwork.php b/Clockwork/Clockwork.php index 5902bdad..3f281199 100644 --- a/Clockwork/Clockwork.php +++ b/Clockwork/Clockwork.php @@ -15,7 +15,7 @@ class Clockwork { // Clockwork library version - const VERSION = '5.1.6'; + const VERSION = '5.1.7'; // Array of data sources, these objects collect metadata for the current application run protected $dataSources = [];