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.2.0`. 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.3.0`. It supports Zend Framework >= 3.0. For other versions see tags in the 1.* series as well as 2.* series.
8
8
9
9
# Important Changes
10
+
- 3.3.0: Add possibility to pass config options to ravenjs
10
11
- 3.2.0: Upgrade dependencies to `sentry/sentry` 1.7.0 and `ravenjs` 3.17.0
11
12
- 3.0.1: ViewHelper fix
12
13
- 3.0.0: First ZF2 release with latest sentry SDK dependencies and ZF3 compatibility fixes
@@ -37,6 +38,7 @@ Current features:
37
38
* log actions return the Sentry event_id
38
39
* Raven is registered as a Service
39
40
* override Raven config defaults
41
+
* pass config options to ravenjs
40
42
41
43
# Installation
42
44
@@ -45,7 +47,7 @@ In your project's `composer.json` use:
45
47
46
48
{
47
49
"require": {
48
-
"cloud-solutions/zend-sentry": "3.2.0"
50
+
"cloud-solutions/zend-sentry": "3.3.0"
49
51
}
50
52
51
53
Run `php composer.phar update` to download it into your vendor folder and setup autoloading.
@@ -220,6 +222,11 @@ Just for the record, a copy of the actual global configuration options:
220
222
*/
221
223
'raven-config' => array(),
222
224
225
+
/**
226
+
* Set ravenjs config options here, will be passed along with json_encode
227
+
*/
228
+
'ravenjs-config' => array(),
229
+
223
230
# Try it
224
231
A few ideas how to try the different features from a Controller or View:
0 commit comments