You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of ZendSentry for ZF3 is `3.0.1`. It supports Zend Framework >= 3.0. For other versions see tags in the 1.* series as well as 2.* series.
7
+
The current version of ZendSentry for ZF3 is `3.1.1`. It supports Zend Framework >= 3.0. For other versions see tags in the 1.* series as well as 2.* series.
8
8
9
9
#Latest Changes
10
+
- possibility to add extra context to the log event
10
11
- Switch Raven dependency to new official sentry/sentry repository
11
-
- Update ravenjs to latest version
12
12
- Fix problem introduced by ZF BC break in ZF version 2.5.3 and branch of legacy branch
13
13
14
14
#Important Changes
@@ -50,7 +50,7 @@ In your project's `composer.json` use:
50
50
51
51
{
52
52
"require": {
53
-
"cloud-solutions/zend-sentry": "3.0.1"
53
+
"cloud-solutions/zend-sentry": "3.1.1"
54
54
}
55
55
56
56
Run `php composer.phar update` to download it into your vendor folder and setup autoloading.
@@ -115,6 +115,7 @@ When using the `log` event, you can optionally pass tags like this:
115
115
'priority' => \Zend\Log\Logger::INFO,
116
116
'message' => 'I am a message with a language tag',
117
117
'tags' => array('language' => 'en'),
118
+
'extra' => array('email' => 'test@test.com'),
118
119
));
119
120
120
121
If using the `logException` event manually, you can also pass along tags:
0 commit comments