Skip to content

Commit 165efac

Browse files
author
markushausammann
committed
lift version to 1.5.3
1 parent 725d433 commit 165efac

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@ Scrutizier analysis: [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/c
44

55
ZendSentry is released under the New BSD License.
66

7-
The current version of ZendSentry is `1.5.2`.
7+
The current version of ZendSentry is `1.5.3`.
88

99
#Latest Changes
10-
- [BnitoBzh](https://github.com/BnitoBzh) made screen and cli error messages configurable.
10+
- Fix: Error reporting level needs to be configurable through config and must not be null
1111

1212
#Important Changes
13+
- 1.5.2: Configurable error messages
1314
- 1.4.0: Raven configuration can now be overwritten through ZendSentry configuration if needed
14-
- 1.3.0: updated raven dependency to latest (0.10.0), important security relevant changes (curl), upgrade is strongly recommended
1515
- 1.2.0: supports tags, every logging action returns the Sentry event_id, Raven is registered as Service
16-
- 1.0.1: updated raven dependency to latest (0.7.1), important if you run pre 7.16.2 curl
1716
- 0.3.1: dedicated CLI ExceptionStrategy (credits to Mateusz Mirosławski)
1817

1918
#Introduction
@@ -44,7 +43,7 @@ In your project's `composer.json` use:
4443

4544
{
4645
"require": {
47-
"cloud-solutions/zend-sentry": "1.5.2"
46+
"cloud-solutions/zend-sentry": "1.5.3"
4847
}
4948

5049
Run `php composer.phar update` to download it into your vendor folder and setup autoloading.
@@ -185,6 +184,12 @@ Just for the record, a copy of the actual global configuration options:
185184
*/
186185
'call-existing-exception-handler' => true,
187186

187+
/**
188+
* Which errors should be reported to sentry (bitmask), e. g. E_ALL ^ E_DEPRECATED
189+
* Defaults to -1 to report all possible errors (equivalent to E_ALL in >= PHP 5.4)
190+
*/
191+
'error-reporting' => -1,
192+
188193
/**
189194
* Should exceptions be displayed on the screen?
190195
*/

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": ["log", "logging", "sentry", "raven", "zend-framework"],
55
"homepage": "https://github.com/cloud-solutions/zend-sentry",
66
"type": "library",
7-
"version": "1.5.2",
7+
"version": "1.5.3",
88
"license": "New BSD License",
99
"authors": [
1010
{

0 commit comments

Comments
 (0)