Skip to content

Commit

Permalink
1.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrobenolt committed Sep 13, 2015
1 parent 377bc03 commit 4512216
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.21

* 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

## 1.1.20

* Wrap jquery's deferred[ resolveWith | rejectWith | notifyWith ] See: https://github.com/getsentry/raven-js/pull/268
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raven-js",
"version": "1.1.20",
"version": "1.1.21",
"dependencies": {},
"main": "dist/raven.js",
"ignore": [
Expand Down
6 changes: 3 additions & 3 deletions dist/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 1.1.20 (f4760ed) | github.com/getsentry/raven-js */
/*! Raven.js 1.1.21 (8995c6d) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -1119,7 +1119,7 @@ for (var method in originalConsole) {
* @this {Raven}
*/
var Raven = {
VERSION: '1.1.20',
VERSION: '1.1.21',

debug: true,

Expand Down Expand Up @@ -1641,7 +1641,7 @@ function normalizeFrame(frame) {

normalized.in_app = !( // determine if an exception came from outside of our app
// first we check the global includePaths list.
!globalOptions.includePaths.test(normalized.filename) ||
(!!globalOptions.includePaths.test && !globalOptions.includePaths.test(normalized.filename)) ||
// Now we check for fun, if the function name is Raven or TraceKit
/(Raven|TraceKit)\./.test(normalized['function']) ||
// finally, we do a last ditch effort and check for raven.min.js
Expand Down
4 changes: 2 additions & 2 deletions dist/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/raven.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ you can use our CDN:

.. sourcecode:: html

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

Configuring the Project
-----------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ So for example:
.. sourcecode:: html

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

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

.. sourcecode:: html

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

**We highly recommend trying out a plugin or two since it'll greatly
improve the chances that we can collect good information.**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raven-js",
"version": "1.1.20",
"version": "1.1.21",
"license": "BSD-2-Clause",
"homepage": "https://getsentry.com",
"scripts": {
Expand Down

0 comments on commit 4512216

Please sign in to comment.