From 2ee380834981589369a9a67c8ed987e6109044aa Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 19 Aug 2016 17:51:49 +0100 Subject: [PATCH] Release 2.3.0 (#193) --- CHANGELOG.md | 18 ++++++++++++++++++ example/laravel/composer.json | 2 +- example/lumen/composer.json | 2 +- src/BugsnagServiceProvider.php | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de069c7a..02aa1c98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ Changelog ========= +## 2.3.0 (2016-08-19) + +## Enhancements + +* Record the queue context and job information + [Graham Campbell](https://github.com/GrahamCampbell) + [#183](https://github.com/bugsnag/bugsnag-laravel/pull/183) + +* Replaced event logging with query recording + [Graham Campbell](https://github.com/GrahamCampbell) + [#186](https://github.com/bugsnag/bugsnag-laravel/pull/186) + +## Bug Fixes + +* Fixed the deploy command option descriptions + [Andrew Brown](https://github.com/browner12) + [#178](https://github.com/bugsnag/bugsnag-laravel/pull/178) + ## 2.2.0 (2016-08-08) ## Enhancements diff --git a/example/laravel/composer.json b/example/laravel/composer.json index 612fa4f5..60a0b977 100755 --- a/example/laravel/composer.json +++ b/example/laravel/composer.json @@ -7,7 +7,7 @@ "require": { "php": ">=5.5.9", "laravel/framework": "5.2.*", - "bugsnag/bugsnag-laravel": "^2.0" + "bugsnag/bugsnag-laravel": "^2.3" }, "require-dev": { "fzaninotto/faker": "^1.6", diff --git a/example/lumen/composer.json b/example/lumen/composer.json index 7fa64773..6b57b77b 100755 --- a/example/lumen/composer.json +++ b/example/lumen/composer.json @@ -7,7 +7,7 @@ "require": { "php": ">=5.5.9", "laravel/lumen-framework": "5.2.*", - "bugsnag/bugsnag-laravel": "^2.0", + "bugsnag/bugsnag-laravel": "^2.3", "vlucas/phpdotenv": "^2.3" }, "require-dev": { diff --git a/src/BugsnagServiceProvider.php b/src/BugsnagServiceProvider.php index 7d9c2ffd..5444d80c 100644 --- a/src/BugsnagServiceProvider.php +++ b/src/BugsnagServiceProvider.php @@ -25,7 +25,7 @@ class BugsnagServiceProvider extends ServiceProvider * * @var string */ - const VERSION = '2.2.0'; + const VERSION = '2.3.0'; /** * Boot the service provider.