Skip to content

Commit

Permalink
2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Jan 9, 2016
1 parent d342739 commit 8a92178
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.0.2
* BUGFIX: Fixed bug where wrapped requestAnimationFrame didn't return callback ID. See: https://github.com/getsentry/raven-js/pull/460

## 2.0.1
* BUGFIX: Fixed bug where unwrapped errors might be suppressed. See: https://github.com/getsentry/raven-js/pull/447

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": "2.0.1",
"version": "2.0.2",
"dependencies": {},
"main": "dist/raven.js",
"ignore": [
Expand Down
4 changes: 2 additions & 2 deletions dist/raven.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function Raven() {
*/

Raven.prototype = {
VERSION: '2.0.1',
VERSION: '2.0.2',

debug: false,

Expand Down Expand Up @@ -591,7 +591,7 @@ Raven.prototype = {
if (window.requestAnimationFrame) {
fill(window, 'requestAnimationFrame', function (orig) {
return function (cb) {
orig(self.wrap(cb));
return orig(self.wrap(cb));
};
});
}
Expand Down
2 changes: 1 addition & 1 deletion 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.

12 changes: 6 additions & 6 deletions dist/sri.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"@dist/raven.js": {
"hashes": {
"sha256": "/XJ4xrwP6hg/PX2gUWZZvM3u+2FLDShmgoH+ewce35I=",
"sha512": "6Sp/nWYCwuYDISEN0rG5v3FNAguDeA92n3UvvXHapPK0f9X/YhjshY61oD6oLR7EG9Y7qnbanE2JwFUyOnE+4Q=="
"sha256": "9v4HvO8psg+OyYe+Bdd7IhtV+5aMX7ffTaavihv7o58=",
"sha512": "LySZeaFl/H7nO6lqDoxq4r1ujtx/j+jhZui7DnwC96ZZYfwRUN0dR+pGix+uLrM2oZPLOzLn1KvazNWjUE0uXw=="
},
"type": null,
"integrity": "sha256-/XJ4xrwP6hg/PX2gUWZZvM3u+2FLDShmgoH+ewce35I= sha512-6Sp/nWYCwuYDISEN0rG5v3FNAguDeA92n3UvvXHapPK0f9X/YhjshY61oD6oLR7EG9Y7qnbanE2JwFUyOnE+4Q==",
"integrity": "sha256-9v4HvO8psg+OyYe+Bdd7IhtV+5aMX7ffTaavihv7o58= sha512-LySZeaFl/H7nO6lqDoxq4r1ujtx/j+jhZui7DnwC96ZZYfwRUN0dR+pGix+uLrM2oZPLOzLn1KvazNWjUE0uXw==",
"path": "dist/raven.js"
},
"@dist/raven.min.js": {
"hashes": {
"sha256": "QmQ6HtHJ01xb3bgW9x8GZjUa/zKFAZ4ZRT3a7jiANJk=",
"sha512": "Lv+WcP23PSxipGvubG5Wo7ixBGSG6UpdMnAGaS3q9PzrhOrASLXzlNUne/2f7OpbVGJqUGMPD5NXWWISu2v0ag=="
"sha256": "uOugEF0qS+ijDm1q8KtCFs17bG/+pQ0bucSIpLuT9qo=",
"sha512": "336gL4V/AhVLvUOc2/8EUCCrEfIk5tSPlnYhh5N9nsl4N1BJxds7WIbyfMahpA4wbdrNkE+HdkJ/vIDz5xDaYw=="
},
"type": null,
"integrity": "sha256-QmQ6HtHJ01xb3bgW9x8GZjUa/zKFAZ4ZRT3a7jiANJk= sha512-Lv+WcP23PSxipGvubG5Wo7ixBGSG6UpdMnAGaS3q9PzrhOrASLXzlNUne/2f7OpbVGJqUGMPD5NXWWISu2v0ag==",
"integrity": "sha256-uOugEF0qS+ijDm1q8KtCFs17bG/+pQ0bucSIpLuT9qo= sha512-336gL4V/AhVLvUOc2/8EUCCrEfIk5tSPlnYhh5N9nsl4N1BJxds7WIbyfMahpA4wbdrNkE+HdkJ/vIDz5xDaYw==",
"path": "dist/raven.min.js"
}
}
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": "2.0.1",
"version": "2.0.2",
"license": "BSD-2-Clause",
"homepage": "https://getsentry.com",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/raven.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ describe('globals', function() {
extra: {'session:duration': 100},
});
assert.deepEqual(opts.auth, {
sentry_client: 'raven-js/2.0.1',
sentry_client: 'raven-js/2.0.2',
sentry_key: 'abc',
sentry_version: '7'
});
Expand Down

0 comments on commit 8a92178

Please sign in to comment.