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.3.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.4.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.4.0: Add possibility to switch off usage of raven-js CDN
10
11
- 3.3.0: Add possibility to pass config options to ravenjs
11
12
- 3.2.0: Upgrade dependencies to `sentry/sentry` 1.7.0 and `ravenjs` 3.17.0
12
13
- 3.0.1: ViewHelper fix
@@ -47,7 +48,7 @@ In your project's `composer.json` use:
47
48
48
49
{
49
50
"require": {
50
-
"cloud-solutions/zend-sentry": "3.3.1"
51
+
"cloud-solutions/zend-sentry": "3.4.0"
51
52
}
52
53
53
54
Run `php composer.phar update` to download it into your vendor folder and setup autoloading.
@@ -217,13 +218,20 @@ Just for the record, a copy of the actual global configuration options:
217
218
'handle-javascript-errors' => true,
218
219
219
220
/**
220
-
* Set raven config options here.
221
+
* Should ZendSentry load raven-js via CDN?
222
+
* If you set this to false you'll need to make sure to load raven-js some other way.
223
+
*/
224
+
'use-ravenjs-cdn' => true,
225
+
226
+
/**
227
+
* Set raven config options for the getsentry/sentry-php package here.
221
228
* Raven has sensible defaults set in Raven_Client, if you need to override them, this is where you can do it.
222
229
*/
223
230
'raven-config' => array(),
224
-
231
+
225
232
/**
226
-
* Set ravenjs config options here, will be passed along with json_encode
233
+
* Set ravenjs config options for the getsentry/raven-js package here.
234
+
* This will be json encoded and passed to raven-js when doing Raven.install().
0 commit comments