Skip to content

Releases: itsgoingd/clockwork

2.0.1

29 Sep 21:43
Compare
Choose a tag to compare
  • fixed Web UI not working in Firefox

2.0

29 Sep 20:21
Compare
Choose a tag to compare
2.0
  • added Web UI
  • added new Laravel cache data source
  • added new Laravel events data source
  • added new more robust metadata storage API
  • added automatic metadata cleanup (defaults to 1 week)
  • added better metadata serialization including class names for objects
  • added PostgreSQL compatibility for the SQL storage (thanks oldskool73)
  • added Slim 3 middleware (thanks sperrichon)
  • added PSR message data source (thanks sperrichon)
  • added Doctrine DBAL data source (thanks sperrichon)
  • changed Clockwork request ids now use dashes instead of dots (thanks Tibbelit)
  • changed Laravel and Lumen integrations to no longer log data for console commands
  • changed simplified the clock Laravel helper (thanks Jergus Lejko)
  • fixed wrong version data logged in SQL storage
  • removed PHP 5.3 support, code style changes
  • removed CodeIgniter support
  • removed ability to register additional data sources via Clockwork config

UPGRADING

  • update the required Clockwork version to ^2.0 in your composer.json
  • PHP 5.3 - no longer supported, you can continue using the latest 1.x version
  • CodeIgniter - no longer supported, you can continue using the lastest 1.x version
  • Slim 2 - update the imported namespace from Clockwork\Support\Slim to Clockwork\Support\Slim\Legacy
  • ability to register additional data sources via Clockwork config was removed, please call app('clockwork')->addDataSource(...) in your own service provider

1.14.5

29 Sep 17:33
Compare
Choose a tag to compare
  • fixed incompatibility with Laravel 4.1 an 4.2 (introduced in 1.14.3)

1.14.4

29 Sep 17:33
Compare
Choose a tag to compare
  • added support for Lumen 5.5 (thanks nebez)

1.14.3

29 Sep 17:33
Compare
Choose a tag to compare
  • added support for Laravel 5.5 package auto-discovery (thanks Omranic)
  • added automatic registration of the Laravel middleware (no need to edit your Http/Kernel.php anymore, existing installations don't need to be changed)
  • updated Laravel artisan clockwork:clean command for Laravel 5.5 (thanks rosswilson252)
  • fixed crash when retrieving all requests from Sql storage (thanks pies)

1.14.2

29 Sep 17:32
Compare
Choose a tag to compare
  • fixed collecting Eloquent queries when using PDO_ODBC driver for real (thanks abhimanyu003)
  • fixed missing imports in Doctrine data source (thanks jenssegers)

1.14

05 May 22:55
Compare
Choose a tag to compare
  • added support for Server-Timing headers (thanks Garbee)
  • fixed compatibility with Lumen 5.4 (thanks Dimasdanz)
  • fixed collecting Eloquent queries with bindings containing backslashes (thanks fitztrev)
  • fixed collecting Eloquent queries when using PDO_ODBC driver (thanks abhimanyu003)
  • fixed collecting Doctrine queries with array bindings (thanks RolfJanssen)
  • replaced Doctrine bindings preparation code with more complete version from laravel-doctrine
  • fixed PHP 5.3 compatibility

1.13.1

28 Apr 15:55
Compare
Choose a tag to compare
  • fixed compatibility with Lumen 5.4 (thanks meanevo)

1.13

28 Apr 15:55
Compare
Choose a tag to compare
  • added support for Laravel 5.4 (thanks KKSzymanowski)
  • improved Laravel "clock" helper function now takes multiple arguments to be logged at once (eg. clock($foo, $bar, $baz))

1.12

28 Apr 15:54
Compare
Choose a tag to compare
  • added collecting of caller file name and line number for queries and model name (Laravel 4.2+) for ORM queries to the Eloquent data source (thanks OmarMakled and fitztrev for the idea)
  • added collecting of context, caller file name and line number to the logger (thanks crissi for the idea)
  • fixed crash in Lumen data source when running unit tests with simulated requests on Lumen
  • fixed compatibility with Laravel 4.0