Skip to content

Commit 0dd3675

Browse files
authored
Merge pull request #842 from getsentry/release-3.10.0
3.10.0
2 parents d7e787e + dbe3768 commit 0dd3675

20 files changed

+107
-32
lines changed

CHANGELOG.md

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

3+
## 3.10.0
4+
5+
* NEW: Raven.js will exponentially back off if server returns a 400-level error (e.g. 429 too many requests). See: https://github.com/getsentry/raven-js/pull/839
6+
* CHANGE: Raven.js will not set lastEventId if transmission failed because Raven is not configured. See: https://github.com/getsentry/raven-js/pull/839
7+
* BUGFIX: Raven.js now properly handles Firefox resource:// URLs (extensions). See: https://github.com/getsentry/raven-js/pull/837
8+
39
## 3.9.2
410
* BUGFIX: Use json-stringify-safe in React Native plugin to avoid circular refs. See: https://github.com/getsentry/raven-js/pull/829
511
* BUGFIX: Avoid document.location access in React Native plugin. See: https://github.com/getsentry/raven-js/issues/800

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.2",
3+
"version": "3.10.0",
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.9.2 (5286373) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.10.0 (d7e787e) | 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

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

33
/*
44
* Includes TraceKit

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.9.2 (5286373) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.10.0 (d7e787e) | 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.9.2 (5286373) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.10.0 (d7e787e) | 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.

dist/plugins/vue.js

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

33
/*
44
* Includes TraceKit

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

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

33
/*
44
* Includes TraceKit
@@ -155,6 +155,7 @@ function Raven() {
155155
this._keypressTimeout;
156156
this._location = _window.location;
157157
this._lastHref = this._location && this._location.href;
158+
this._resetBackoff();
158159

159160
for (var method in this._originalConsole) { // eslint-disable-line guard-for-in
160161
this._originalConsoleMethods[method] = this._originalConsole[method];
@@ -172,7 +173,7 @@ Raven.prototype = {
172173
// webpack (using a build step causes webpack #1617). Grunt verifies that
173174
// this value matches package.json during build.
174175
// See: https://github.com/getsentry/raven-js/issues/465
175-
VERSION: '3.9.2',
176+
VERSION: '3.10.0',
176177

177178
debug: false,
178179

@@ -291,6 +292,10 @@ Raven.prototype = {
291292

292293
self._globalEndpoint = self._globalServer +
293294
'/' + path + 'api/' + self._globalProject + '/store/';
295+
296+
// Reset backoff state since we may be pointing at a
297+
// new project/server
298+
this._resetBackoff();
294299
},
295300

296301
/*
@@ -1414,6 +1419,48 @@ Raven.prototype = {
14141419
return httpData;
14151420
},
14161421

1422+
_resetBackoff: function() {
1423+
this._backoffDuration = 0;
1424+
this._backoffStart = null;
1425+
},
1426+
1427+
_shouldBackoff: function() {
1428+
return this._backoffDuration && now() - this._backoffStart < this._backoffDuration;
1429+
},
1430+
1431+
_setBackoffState: function(request) {
1432+
// If we are already in a backoff state, don't change anything
1433+
if (this._shouldBackoff()) {
1434+
return;
1435+
}
1436+
1437+
var status = request.status;
1438+
1439+
// 400 - project_id doesn't exist or some other fatal
1440+
// 401 - invalid/revoked dsn
1441+
// 429 - too many requests
1442+
if (!(status === 400 || status === 401 || status === 429))
1443+
return;
1444+
1445+
var retry;
1446+
try {
1447+
// If Retry-After is not in Access-Control-Expose-Headers, most
1448+
// browsers will throw an exception trying to access it
1449+
retry = request.getResponseHeader('Retry-After');
1450+
retry = parseInt(retry, 10);
1451+
} catch (e) {
1452+
/* eslint no-empty:0 */
1453+
}
1454+
1455+
1456+
this._backoffDuration = retry
1457+
// If Sentry server returned a Retry-After value, use it
1458+
? retry
1459+
// Otherwise, double the last backoff duration (starts at 1 sec)
1460+
: this._backoffDuration * 2 || 1000;
1461+
1462+
this._backoffStart = now();
1463+
},
14171464

14181465
_send: function(data) {
14191466
var globalOptions = this._globalOptions;
@@ -1479,6 +1526,13 @@ Raven.prototype = {
14791526
return;
14801527
}
14811528

1529+
// Backoff state: Sentry server previously responded w/ an error (e.g. 429 - too many requests),
1530+
// so drop requests until "cool-off" period has elapsed.
1531+
if (this._shouldBackoff()) {
1532+
this._logDebug('warn', 'Raven dropped error due to backoff: ', data);
1533+
return;
1534+
}
1535+
14821536
this._sendProcessedPayload(data);
14831537
},
14841538

@@ -1490,6 +1544,8 @@ Raven.prototype = {
14901544
var self = this;
14911545
var globalOptions = this._globalOptions;
14921546

1547+
if (!this.isSetup()) return;
1548+
14931549
// Send along an event_id if not explicitly passed.
14941550
// This event_id can be used to reference the error within Sentry itself.
14951551
// Set lastEventId after we know the error should actually be sent
@@ -1500,8 +1556,6 @@ Raven.prototype = {
15001556

15011557
this._logDebug('debug', 'Raven about to send:', data);
15021558

1503-
if (!this.isSetup()) return;
1504-
15051559
var auth = {
15061560
sentry_version: '7',
15071561
sentry_client: 'raven-js/' + this.VERSION,
@@ -1528,13 +1582,21 @@ Raven.prototype = {
15281582
data: data,
15291583
options: globalOptions,
15301584
onSuccess: function success() {
1585+
self._resetBackoff();
1586+
15311587
self._triggerEvent('success', {
15321588
data: data,
15331589
src: url
15341590
});
15351591
callback && callback();
15361592
},
15371593
onError: function failure(error) {
1594+
self._logDebug('error', 'Raven transport failed to send: ', error);
1595+
1596+
if (error.request) {
1597+
self._setBackoffState(error.request);
1598+
}
1599+
15381600
self._triggerEvent('failure', {
15391601
data: data,
15401602
src: url
@@ -1562,7 +1624,9 @@ Raven.prototype = {
15621624
opts.onSuccess();
15631625
}
15641626
} else if (opts.onError) {
1565-
opts.onError(new Error('Sentry error code: ' + request.status));
1627+
var err = new Error('Sentry error code: ' + request.status);
1628+
err.request = request;
1629+
opts.onError(err);
15661630
}
15671631
}
15681632

@@ -1937,7 +2001,12 @@ module.exports = Raven;
19372001
'use strict';
19382002

19392003
/*
1940-
TraceKit - Cross brower stack traces - github.com/occ/TraceKit
2004+
TraceKit - Cross brower stack traces
2005+
2006+
This was originally forked from github.com/occ/TraceKit, but has since been
2007+
largely re-written and is now maintained as part of raven-js. Tests for
2008+
this are in test/vendor.
2009+
19412010
MIT license
19422011
*/
19432012

@@ -2317,7 +2386,7 @@ TraceKit.computeStackTrace = (function computeStackTraceWrapper() {
23172386
if (typeof ex.stack === 'undefined' || !ex.stack) return;
23182387

23192388
var chrome = /^\s*at (.*?) ?\(((?:file|https?|blob|chrome-extension|native|eval|<anonymous>).*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,
2320-
gecko = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|\[native).*?)(?::(\d+))?(?::(\d+))?\s*$/i,
2389+
gecko = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|resource|\[native).*?)(?::(\d+))?(?::(\d+))?\s*$/i,
23212390
winjs = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:file|ms-appx|https?|blob):.*?):(\d+)(?::(\d+))?\)?\s*$/i,
23222391
lines = ex.stack.split('\n'),
23232392
stack = [],

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": "LJk9mpSaLNe5OiPeVilljWT/19pH0m8BVTv5beKC3iM=",
5-
"sha512": "hjC0XVht94rSQP/cvndw3Z0NB5UsDgojmYAZ5Dk5j44OQGgW4jfVjFjvecNrhPXjec4dtFaFdP9PyCqW/CIX6w=="
4+
"sha256": "Ys1HQR6AleMV2krlqqcgwN3c5N4pmvshjql3Gqh4lAs=",
5+
"sha512": "Bxo/PvUYWXEydrDuy7Rt9tC6b1s345htx2826JIQ6WBrr4WW0aiUDVPJz3G99con//Y58kpqZirX7YfMgKiiZg=="
66
},
77
"type": null,
8-
"integrity": "sha256-LJk9mpSaLNe5OiPeVilljWT/19pH0m8BVTv5beKC3iM= sha512-hjC0XVht94rSQP/cvndw3Z0NB5UsDgojmYAZ5Dk5j44OQGgW4jfVjFjvecNrhPXjec4dtFaFdP9PyCqW/CIX6w==",
8+
"integrity": "sha256-Ys1HQR6AleMV2krlqqcgwN3c5N4pmvshjql3Gqh4lAs= sha512-Bxo/PvUYWXEydrDuy7Rt9tC6b1s345htx2826JIQ6WBrr4WW0aiUDVPJz3G99con//Y58kpqZirX7YfMgKiiZg==",
99
"path": "dist/raven.js"
1010
},
1111
"@dist/raven.min.js": {
1212
"hashes": {
13-
"sha256": "RQ2cvD7tXgOG7hgiNUknpPGVg3Eu7UI5sO4lmb2Mloo=",
14-
"sha512": "FPpKmmpnrw6sYdChKdgzuUeAOHIVtug53GBhmanL57JKgVvU+1kngVPZuTcZU8cwptB0P0cE/ImnmIEgdF1avg=="
13+
"sha256": "FUlyzCCcGC0KyC/Kz5SHya4DjzFZy5Qiqu1Lwn85Rw4=",
14+
"sha512": "Lui8cCX+5QtuqtW38Jhdyn1I04lzqjY7bMJkqSKXTkq0piu1OlQDSRVArtZoiONZYNA2dFoDfZxlMGI/fkJQWQ=="
1515
},
1616
"type": null,
17-
"integrity": "sha256-RQ2cvD7tXgOG7hgiNUknpPGVg3Eu7UI5sO4lmb2Mloo= sha512-FPpKmmpnrw6sYdChKdgzuUeAOHIVtug53GBhmanL57JKgVvU+1kngVPZuTcZU8cwptB0P0cE/ImnmIEgdF1avg==",
17+
"integrity": "sha256-FUlyzCCcGC0KyC/Kz5SHya4DjzFZy5Qiqu1Lwn85Rw4= sha512-Lui8cCX+5QtuqtW38Jhdyn1I04lzqjY7bMJkqSKXTkq0piu1OlQDSRVArtZoiONZYNA2dFoDfZxlMGI/fkJQWQ==",
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.2"
69+
"RAVEN_VERSION": "3.10.0"
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.2",
3+
"version": "3.10.0",
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
@@ -79,7 +79,7 @@ Raven.prototype = {
7979
// webpack (using a build step causes webpack #1617). Grunt verifies that
8080
// this value matches package.json during build.
8181
// See: https://github.com/getsentry/raven-js/issues/465
82-
VERSION: '3.9.2',
82+
VERSION: '3.10.0',
8383

8484
debug: false,
8585

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.2',
1007+
sentry_client: 'raven-js/3.10.0',
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.2',
1054+
sentry_client: 'raven-js/3.10.0',
10551055
sentry_key: 'abc',
10561056
sentry_secret: 'def',
10571057
sentry_version: '7'

0 commit comments

Comments
 (0)