Skip to content

Commit 1e32405

Browse files
upgrade dependencies
1 parent 69f50ec commit 1e32405

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Module.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ protected function setupExceptionLogging(MvcEvent $event)
217217
protected function setupJavascriptLogging(MvcEvent $event)
218218
{
219219
$viewHelper = $event->getApplication()->getServiceManager()->get('ViewHelperManager')->get('headscript');
220-
$viewHelper->offsetSetFile(0, '//cdn.ravenjs.com/3.8.0/raven.min.js');
220+
$viewHelper->offsetSetFile(0, '//cdn.ravenjs.com/3.17.0/raven.min.js');
221221
$publicApiKey = $this->convertKeyToPublic($this->config['zend-sentry']['sentry-api-key']);
222222
$viewHelper->offsetSetScript(1, sprintf("Raven.config('%s').install()", $publicApiKey));
223223
}
@@ -238,4 +238,6 @@ private function convertKeyToPublic($key)
238238

239239
return $publicKey;
240240
}
241+
242+
241243
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
A Zend Framework 2 module that lets you log exceptions, errors or whatever you wish to the Sentry service.
1+
A Zend Framework module that lets you log exceptions, errors or whatever you wish to the Sentry service.
22

33
Scrutizier analysis: [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/cloud-solutions/zend-sentry/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/cloud-solutions/zend-sentry/?branch=master) [![Build Status](https://scrutinizer-ci.com/g/cloud-solutions/zend-sentry/badges/build.png?b=master)](https://scrutinizer-ci.com/g/cloud-solutions/zend-sentry/build-status/master)
44

55
ZendSentry is released under the New BSD License.
66

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.
7+
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.
88

99
#Latest Changes
1010
- possibility to add extra context to the log event
@@ -50,7 +50,7 @@ In your project's `composer.json` use:
5050

5151
{
5252
"require": {
53-
"cloud-solutions/zend-sentry": "3.1.1"
53+
"cloud-solutions/zend-sentry": "3.2.0"
5454
}
5555

5656
Run `php composer.phar update` to download it into your vendor folder and setup autoloading.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "cloud-solutions/zend-sentry",
3-
"description": "A Zend Framework 2 module that lets you log to the Sentry service.",
3+
"description": "A Zend Framework module that lets you log to the Sentry service.",
44
"keywords": ["log", "logging", "sentry", "raven", "zend-framework"],
55
"homepage": "https://github.com/cloud-solutions/zend-sentry",
66
"type": "library",
7-
"version": "3.1.1",
7+
"version": "3.2.0",
88
"license": "New BSD License",
99
"authors": [
1010
{
@@ -14,7 +14,7 @@
1414
],
1515
"require": {
1616
"php": "^5.5 || ^7.0",
17-
"sentry/sentry": "1.5.0"
17+
"sentry/sentry": "^1.7.0"
1818
},
1919
"conflict": {
2020
"zendframework/zendframework": "<3.0.0"

0 commit comments

Comments
 (0)