Skip to content

Commit

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

## 2.0.5
* BUGFIX: Fixed exception thrown by React Native plugin. See: https://github.com/getsentry/raven-js/issues/468
* BUGFIX: Fixed "pre-built JavaScript" warning when loading Raven.js via Webpack: https://github.com/getsentry/raven-js/issues/465

## 2.0.4
* BUGFIX: Fixed bug where Raven.VERSION was not set when required as a CommonJS module.

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

Raven.prototype = {
VERSION: '2.0.4',
// Hardcode version string so that raven source can be loaded directly via
// webpack (using a build step causes webpack #1617). Grunt verifies that
// this value matches package.json during build.
// See: https://github.com/getsentry/raven-js/issues/465
VERSION: '2.0.5',

debug: false,

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": "UotT5VJFZkWqahsXDipV6o2ZXS86FnCl5v3iqRfagrQ=",
"sha512": "7oBxZlNAzL/OPJVBsT7Hss/vFhuqPWyMwlOjYRHmTS3kA0YEfAfW4tctiq1aoZcilRTdQTEo03SpQK59Lcil0w=="
"sha256": "VoWG5FjRcWv0Zpefd2xHF3HfVviDN+c9iGJsNDDUPDs=",
"sha512": "kVByPWaa0uYOKn/v797k7YGPrEAKmqH0nsMCMv5ssiE1e+AmrjCzDcMWEUER/53sYoGqynGj+ReRzGd+kWlCHQ=="
},
"type": null,
"integrity": "sha256-UotT5VJFZkWqahsXDipV6o2ZXS86FnCl5v3iqRfagrQ= sha512-7oBxZlNAzL/OPJVBsT7Hss/vFhuqPWyMwlOjYRHmTS3kA0YEfAfW4tctiq1aoZcilRTdQTEo03SpQK59Lcil0w==",
"integrity": "sha256-VoWG5FjRcWv0Zpefd2xHF3HfVviDN+c9iGJsNDDUPDs= sha512-kVByPWaa0uYOKn/v797k7YGPrEAKmqH0nsMCMv5ssiE1e+AmrjCzDcMWEUER/53sYoGqynGj+ReRzGd+kWlCHQ==",
"path": "dist/raven.js"
},
"@dist/raven.min.js": {
"hashes": {
"sha256": "5eY6itXKwz59z+UzE8/RkvFttSb0hKtAhOJqRcgMgXE=",
"sha512": "dPleFvik6z/jNuPmqXU1OhvMMAVSbqCRtwFaSDhB9Ach6zrSLxxCYzAJGuCqNEzkbHlOAK44SqQDkVZlLTUD6A=="
"sha256": "DBVw7D0VtUxKOHCgay6isJm54nkEVL5v36xp7RVg06c=",
"sha512": "EDIenuweiUZDMoQRxmw8huGReOChxTiTTBwZd0T6Mb/uh9fc4o8BdeF77BOZidawGJGtRPc28sP4zgk8SHhFbw=="
},
"type": null,
"integrity": "sha256-5eY6itXKwz59z+UzE8/RkvFttSb0hKtAhOJqRcgMgXE= sha512-dPleFvik6z/jNuPmqXU1OhvMMAVSbqCRtwFaSDhB9Ach6zrSLxxCYzAJGuCqNEzkbHlOAK44SqQDkVZlLTUD6A==",
"integrity": "sha256-DBVw7D0VtUxKOHCgay6isJm54nkEVL5v36xp7RVg06c= sha512-EDIenuweiUZDMoQRxmw8huGReOChxTiTTBwZd0T6Mb/uh9fc4o8BdeF77BOZidawGJGtRPc28sP4zgk8SHhFbw==",
"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.4",
"version": "2.0.5",
"license": "BSD-2-Clause",
"homepage": "https://getsentry.com",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/raven.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Raven.prototype = {
// webpack (using a build step causes webpack #1617). Grunt verifies that
// this value matches package.json during build.
// See: https://github.com/getsentry/raven-js/issues/465
VERSION: '2.0.0',
VERSION: '2.0.5',

debug: false,

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.4',
sentry_client: 'raven-js/2.0.5',
sentry_key: 'abc',
sentry_version: '7'
});
Expand Down

0 comments on commit 4b831fd

Please sign in to comment.