Skip to content

Commit 776caaa

Browse files
committed
3.0.1
1 parent 996e09a commit 776caaa

25 files changed

+136
-137
lines changed

CHANGELOG.md

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

3+
## 3.0.1
4+
5+
* BUGFIX: Fix broken CDN builds. See: https://github.com/getsentry/raven-js/pull/566
6+
37
## 3.0.0
48

59
* NEW: Raven.js now collects breadcrumbs from XMLHttpRequest objects, URL changes (pushState), console log calls, UI clicks, and errors.

bower.json

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

dist/plugins/angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.0.0 (6adaa62) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.0.1 (996e09a) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit

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

+46-32
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.0.0 (6adaa62) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.0.1 (996e09a) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
@@ -24,51 +24,65 @@
2424
*/
2525
'use strict';
2626

27+
var wrapConsoleMethod = _dereq_(2).wrapMethod;
28+
2729
function consolePlugin(Raven, console, pluginOptions) {
2830
console = console || window.console || {};
2931
pluginOptions = pluginOptions || {};
3032

31-
var originalConsole = console,
32-
logLevels = pluginOptions.levels || ['debug', 'info', 'warn', 'error'],
33+
var logLevels = pluginOptions.levels || ['debug', 'info', 'warn', 'error'],
3334
level = logLevels.pop();
3435

35-
var logForGivenLevel = function(l) {
36-
var originalConsoleLevel = console[l];
37-
38-
// warning level is the only level that doesn't map up
39-
// correctly with what Sentry expects.
40-
if (l === 'warn') l = 'warning';
41-
return function () {
42-
var args = [].slice.call(arguments);
43-
44-
var msg = '' + args.join(' ');
45-
var data = {level: l, logger: 'console', extra: { 'arguments': args }};
46-
if (pluginOptions.callback) {
47-
pluginOptions.callback(msg, data);
48-
} else {
49-
Raven.captureMessage(msg, data);
50-
}
51-
52-
// this fails for some browsers. :(
53-
if (originalConsoleLevel) {
54-
// IE9 doesn't allow calling apply on console functions directly
55-
// See: https://stackoverflow.com/questions/5472938/does-ie9-support-console-log-and-is-it-a-real-function#answer-5473193
56-
Function.prototype.apply.call(
57-
originalConsoleLevel,
58-
originalConsole,
59-
args
60-
);
61-
}
62-
};
36+
var callback = function (msg, data) {
37+
Raven.captureMessage(msg, data);
6338
};
6439

6540
while(level) {
66-
console[level] = logForGivenLevel(level);
41+
wrapConsoleMethod(console, level, callback);
6742
level = logLevels.pop();
6843
}
6944
}
7045

7146
module.exports = consolePlugin;
7247

48+
},{"2":2}],2:[function(_dereq_,module,exports){
49+
'use strict';
50+
51+
var wrapMethod = function(console, level, callback) {
52+
var originalConsoleLevel = console[level];
53+
var originalConsole = console;
54+
55+
if (!(level in console)) {
56+
return;
57+
}
58+
59+
var sentryLevel = level === 'warn'
60+
? 'warning'
61+
: level;
62+
63+
console[level] = function () {
64+
var args = [].slice.call(arguments);
65+
66+
var msg = '' + args.join(' ');
67+
var data = {level: sentryLevel, logger: 'console', extra: {'arguments': args}};
68+
callback && callback(msg, data);
69+
70+
// this fails for some browsers. :(
71+
if (originalConsoleLevel) {
72+
// IE9 doesn't allow calling apply on console functions directly
73+
// See: https://stackoverflow.com/questions/5472938/does-ie9-support-console-log-and-is-it-a-real-function#answer-5473193
74+
Function.prototype.apply.call(
75+
originalConsoleLevel,
76+
originalConsole,
77+
args
78+
);
79+
}
80+
};
81+
};
82+
83+
module.exports = {
84+
wrapMethod: wrapMethod
85+
};
86+
7387
},{}]},{},[1])(1)
7488
});

dist/plugins/console.min.js

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

dist/plugins/console.min.js.map

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

dist/plugins/ember.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.0.0 (6adaa62) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.0.1 (996e09a) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.0.0 (6adaa62) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.0.1 (996e09a) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit

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.

0 commit comments

Comments
 (0)