Skip to content

Commit 2de41aa

Browse files
committed
3.9.2
1 parent 5286373 commit 2de41aa

20 files changed

+38
-34
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 3.9.2
4+
* BUGFIX: Use json-stringify-safe in React Native plugin to avoid circular refs. See: https://github.com/getsentry/raven-js/pull/829
5+
* BUGFIX: Avoid document.location access in React Native plugin. See: https://github.com/getsentry/raven-js/issues/800
6+
37
## 3.9.1
48
* BUGFIX: Fix TypeError triggered by some event listeners. See: https://github.com/getsentry/raven-js/issues/793
59
* BUGFIX: Fix bad `window` access in web worker environments. See: https://github.com/getsentry/raven-js/pull/792

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raven-js",
3-
"version": "3.9.1",
3+
"version": "3.9.2",
44
"dependencies": {},
55
"main": "dist/raven.js",
66
"ignore": [

dist/plugins/angular.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*! Raven.js 3.9.1 (7bbae7d) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.9.2 (5286373) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
55
* https://github.com/getsentry/TraceKit
66
*
7-
* Copyright 2016 Matt Robenolt and other contributors
7+
* Copyright 2017 Matt Robenolt and other contributors
88
* Released under the BSD license
99
* https://github.com/getsentry/raven-js/blob/master/LICENSE
1010
*

dist/plugins/angular.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugins/console.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*! Raven.js 3.9.1 (7bbae7d) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.9.2 (5286373) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
55
* https://github.com/getsentry/TraceKit
66
*
7-
* Copyright 2016 Matt Robenolt and other contributors
7+
* Copyright 2017 Matt Robenolt and other contributors
88
* Released under the BSD license
99
* https://github.com/getsentry/raven-js/blob/master/LICENSE
1010
*

dist/plugins/console.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugins/ember.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*! Raven.js 3.9.1 (7bbae7d) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.9.2 (5286373) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
55
* https://github.com/getsentry/TraceKit
66
*
7-
* Copyright 2016 Matt Robenolt and other contributors
7+
* Copyright 2017 Matt Robenolt and other contributors
88
* Released under the BSD license
99
* https://github.com/getsentry/raven-js/blob/master/LICENSE
1010
*

dist/plugins/ember.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugins/require.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*! Raven.js 3.9.1 (7bbae7d) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.9.2 (5286373) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
55
* https://github.com/getsentry/TraceKit
66
*
7-
* Copyright 2016 Matt Robenolt and other contributors
7+
* Copyright 2017 Matt Robenolt and other contributors
88
* Released under the BSD license
99
* https://github.com/getsentry/raven-js/blob/master/LICENSE
1010
*

dist/plugins/require.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugins/vue.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*! Raven.js 3.9.1 (7bbae7d) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.9.2 (5286373) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
55
* https://github.com/getsentry/TraceKit
66
*
7-
* Copyright 2016 Matt Robenolt and other contributors
7+
* Copyright 2017 Matt Robenolt and other contributors
88
* Released under the BSD license
99
* https://github.com/getsentry/raven-js/blob/master/LICENSE
1010
*

dist/plugins/vue.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/raven.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*! Raven.js 3.9.1 (7bbae7d) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.9.2 (5286373) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
55
* https://github.com/getsentry/TraceKit
66
*
7-
* Copyright 2016 Matt Robenolt and other contributors
7+
* Copyright 2017 Matt Robenolt and other contributors
88
* Released under the BSD license
99
* https://github.com/getsentry/raven-js/blob/master/LICENSE
1010
*
@@ -172,7 +172,7 @@ Raven.prototype = {
172172
// webpack (using a build step causes webpack #1617). Grunt verifies that
173173
// this value matches package.json during build.
174174
// See: https://github.com/getsentry/raven-js/issues/465
175-
VERSION: '3.9.1',
175+
VERSION: '3.9.2',
176176

177177
debug: false,
178178

@@ -1960,7 +1960,7 @@ var UNKNOWN_FUNCTION = '?';
19601960
var ERROR_TYPES_RE = /^(?:Uncaught (?:exception: )?)?((?:Eval|Internal|Range|Reference|Syntax|Type|URI)Error): ?(.*)$/;
19611961

19621962
function getLocationHref() {
1963-
if (typeof document === 'undefined')
1963+
if (typeof document === 'undefined' || typeof document.location === 'undefined')
19641964
return '';
19651965

19661966
return document.location.href;

dist/raven.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/raven.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sri.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"@dist/raven.js": {
33
"hashes": {
4-
"sha256": "ihdEI9/hV9q/+yUm+WxgLgncmbFnuK9tr/lRnRgr60k=",
5-
"sha512": "4WMClk7qzYHXT5/xR3X9RkpNs8dg/FIfbJ7RTythr9rXMRAVIDimD2X6NLEUdID+c7sJ3b6oOvsmf6oB0ORhwg=="
4+
"sha256": "LJk9mpSaLNe5OiPeVilljWT/19pH0m8BVTv5beKC3iM=",
5+
"sha512": "hjC0XVht94rSQP/cvndw3Z0NB5UsDgojmYAZ5Dk5j44OQGgW4jfVjFjvecNrhPXjec4dtFaFdP9PyCqW/CIX6w=="
66
},
77
"type": null,
8-
"integrity": "sha256-ihdEI9/hV9q/+yUm+WxgLgncmbFnuK9tr/lRnRgr60k= sha512-4WMClk7qzYHXT5/xR3X9RkpNs8dg/FIfbJ7RTythr9rXMRAVIDimD2X6NLEUdID+c7sJ3b6oOvsmf6oB0ORhwg==",
8+
"integrity": "sha256-LJk9mpSaLNe5OiPeVilljWT/19pH0m8BVTv5beKC3iM= sha512-hjC0XVht94rSQP/cvndw3Z0NB5UsDgojmYAZ5Dk5j44OQGgW4jfVjFjvecNrhPXjec4dtFaFdP9PyCqW/CIX6w==",
99
"path": "dist/raven.js"
1010
},
1111
"@dist/raven.min.js": {
1212
"hashes": {
13-
"sha256": "Iwsp4zEtQhPhOFbMNyTevyNpy7XTm8qUPteSJyopHDM=",
14-
"sha512": "lL3X3M9f+DKT/mcKDJWixbXdXhVlYGWxy5DuPYyV6LrD8KNWQJ6ahpvTK3IyosXEAj3x+PWQ1DnFbKyGbIGdBw=="
13+
"sha256": "RQ2cvD7tXgOG7hgiNUknpPGVg3Eu7UI5sO4lmb2Mloo=",
14+
"sha512": "FPpKmmpnrw6sYdChKdgzuUeAOHIVtug53GBhmanL57JKgVvU+1kngVPZuTcZU8cwptB0P0cE/ImnmIEgdF1avg=="
1515
},
1616
"type": null,
17-
"integrity": "sha256-Iwsp4zEtQhPhOFbMNyTevyNpy7XTm8qUPteSJyopHDM= sha512-lL3X3M9f+DKT/mcKDJWixbXdXhVlYGWxy5DuPYyV6LrD8KNWQJ6ahpvTK3IyosXEAj3x+PWQ1DnFbKyGbIGdBw==",
17+
"integrity": "sha256-RQ2cvD7tXgOG7hgiNUknpPGVg3Eu7UI5sO4lmb2Mloo= sha512-FPpKmmpnrw6sYdChKdgzuUeAOHIVtug53GBhmanL57JKgVvU+1kngVPZuTcZU8cwptB0P0cE/ImnmIEgdF1avg==",
1818
"path": "dist/raven.min.js"
1919
}
2020
}

docs/sentry-doc-config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@
6666
}
6767
},
6868
"vars": {
69-
"RAVEN_VERSION": "3.9.1"
69+
"RAVEN_VERSION": "3.9.2"
7070
}
7171
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raven-js",
3-
"version": "3.9.1",
3+
"version": "3.9.2",
44
"license": "BSD-2-Clause",
55
"homepage": "https://github.com/getsentry/raven-js",
66
"scripts": {

src/raven.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Raven.prototype = {
7878
// webpack (using a build step causes webpack #1617). Grunt verifies that
7979
// this value matches package.json during build.
8080
// See: https://github.com/getsentry/raven-js/issues/465
81-
VERSION: '3.9.1',
81+
VERSION: '3.9.2',
8282

8383
debug: false,
8484

test/raven.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ describe('globals', function() {
10041004
extra: {'session:duration': 100},
10051005
});
10061006
assert.deepEqual(opts.auth, {
1007-
sentry_client: 'raven-js/3.9.1',
1007+
sentry_client: 'raven-js/3.9.2',
10081008
sentry_key: 'abc',
10091009
sentry_version: '7'
10101010
});
@@ -1051,7 +1051,7 @@ describe('globals', function() {
10511051
extra: {'session:duration': 100},
10521052
});
10531053
assert.deepEqual(opts.auth, {
1054-
sentry_client: 'raven-js/3.9.1',
1054+
sentry_client: 'raven-js/3.9.2',
10551055
sentry_key: 'abc',
10561056
sentry_secret: 'def',
10571057
sentry_version: '7'

0 commit comments

Comments
 (0)