Skip to content

Commit 4512216

Browse files
committed
1.1.21
1 parent 377bc03 commit 4512216

File tree

8 files changed

+15
-11
lines changed

8 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.1.21
4+
5+
* Fix a bug where calling `captureException` before calling `Raven.config()` would trigger it's own exception. See: https://github.com/getsentry/raven-js/issues/377
6+
37
## 1.1.20
48

59
* Wrap jquery's deferred[ resolveWith | rejectWith | notifyWith ] See: https://github.com/getsentry/raven-js/pull/268

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.20",
3+
"version": "1.1.21",
44
"dependencies": {},
55
"main": "dist/raven.js",
66
"ignore": [

dist/raven.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 1.1.20 (f4760ed) | github.com/getsentry/raven-js */
1+
/*! Raven.js 1.1.21 (8995c6d) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
@@ -1119,7 +1119,7 @@ for (var method in originalConsole) {
11191119
* @this {Raven}
11201120
*/
11211121
var Raven = {
1122-
VERSION: '1.1.20',
1122+
VERSION: '1.1.21',
11231123

11241124
debug: true,
11251125

@@ -1641,7 +1641,7 @@ function normalizeFrame(frame) {
16411641

16421642
normalized.in_app = !( // determine if an exception came from outside of our app
16431643
// first we check the global includePaths list.
1644-
!globalOptions.includePaths.test(normalized.filename) ||
1644+
(!!globalOptions.includePaths.test && !globalOptions.includePaths.test(normalized.filename)) ||
16451645
// Now we check for fun, if the function name is Raven or TraceKit
16461646
/(Raven|TraceKit)\./.test(normalized['function']) ||
16471647
// finally, we do a last ditch effort and check for raven.min.js

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
Large diffs are not rendered by default.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ you can use our CDN:
2727

2828
.. sourcecode:: html
2929

30-
<script src="//cdn.ravenjs.com/1.1.20/raven.min.js"></script>
30+
<script src="//cdn.ravenjs.com/1.1.21/raven.min.js"></script>
3131

3232
Configuring the Project
3333
-----------------------

docs/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ So for example:
99
.. sourcecode:: html
1010

1111
<script src="jquery.js"></script>
12-
<script src="//cdn.ravenjs.com/1.1.20/jquery,native/raven.min.js"></script>
12+
<script src="//cdn.ravenjs.com/1.1.21/jquery,native/raven.min.js"></script>
1313
<script>Raven.config('___PUBLIC_DSN___').install();</script>
1414
<script src="app.js"></script>
1515

@@ -28,7 +28,7 @@ Our CDN distributes builds with and without :doc:`plugins <plugins>`.
2828

2929
.. sourcecode:: html
3030

31-
<script src="//cdn.ravenjs.com/1.1.20/raven.min.js"></script>
31+
<script src="//cdn.ravenjs.com/1.1.21/raven.min.js"></script>
3232

3333
**We highly recommend trying out a plugin or two since it'll greatly
3434
improve the chances that we can collect good information.**

package.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.20",
3+
"version": "1.1.21",
44
"license": "BSD-2-Clause",
55
"homepage": "https://getsentry.com",
66
"scripts": {

0 commit comments

Comments
 (0)