Skip to content

Commit f9803bd

Browse files
committed
1.1.14
1 parent 737cda4 commit f9803bd

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raven-js",
3-
"version": "1.1.13",
3+
"version": "1.1.14",
44
"dependencies": {},
55
"main": "dist/raven.js"
66
}

dist/raven.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 1.1.13 (1e2864f) | github.com/getsentry/raven-js */
1+
/*! Raven.js 1.1.14 (737cda4) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
@@ -1116,7 +1116,7 @@ var _Raven = window.Raven,
11161116
* @this {Raven}
11171117
*/
11181118
var Raven = {
1119-
VERSION: '1.1.13',
1119+
VERSION: '1.1.14',
11201120

11211121
/*
11221122
* Allow multiple versions of Raven to be installed.
@@ -1594,7 +1594,7 @@ function processException(type, message, fileurl, lineno, frames, options) {
15941594
// This can only mean that the message was falsey since this value
15951595
// is hardcoded into Sentry itself.
15961596
// At this point, if the message is falsey, we bail since it's useless
1597-
if (!message) return;
1597+
if (type === 'Error' && !message) return;
15981598

15991599
if (globalOptions.ignoreErrors.test(message)) return;
16001600

@@ -1608,7 +1608,8 @@ function processException(type, message, fileurl, lineno, frames, options) {
16081608
stacktrace = {
16091609
frames: [{
16101610
filename: fileurl,
1611-
lineno: lineno
1611+
lineno: lineno,
1612+
in_app: true
16121613
}]
16131614
};
16141615
}

dist/raven.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/raven.min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/changelog/index.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
1.1.14
5+
~~~~~~
6+
* Only filter normal Error objects without a message, not all of them. Turns out, people throw errors like this. Ahem, Underscore.js. See: https://github.com/jashkenas/underscore/pull/1589/files
7+
48
1.1.13
59
~~~~~~
610
* Fixed a unicode issue in the previous release.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raven",
3-
"version": "1.1.13",
3+
"version": "1.1.14",
44
"scripts": {
55
"test": "./node_modules/.bin/grunt test"
66
},

0 commit comments

Comments
 (0)