Skip to content

Commit 4b831fd

Browse files
committed
2.0.5
1 parent 123430e commit 4b831fd

File tree

9 files changed

+21
-13
lines changed

9 files changed

+21
-13
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+
## 2.0.5
4+
* BUGFIX: Fixed exception thrown by React Native plugin. See: https://github.com/getsentry/raven-js/issues/468
5+
* BUGFIX: Fixed "pre-built JavaScript" warning when loading Raven.js via Webpack: https://github.com/getsentry/raven-js/issues/465
6+
37
## 2.0.4
48
* BUGFIX: Fixed bug where Raven.VERSION was not set when required as a CommonJS module.
59

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

dist/raven.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ function Raven() {
8181
*/
8282

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

8690
debug: false,
8791

dist/raven.min.js

Lines changed: 1 addition & 1 deletion
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
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sri.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"@dist/raven.js": {
33
"hashes": {
4-
"sha256": "UotT5VJFZkWqahsXDipV6o2ZXS86FnCl5v3iqRfagrQ=",
5-
"sha512": "7oBxZlNAzL/OPJVBsT7Hss/vFhuqPWyMwlOjYRHmTS3kA0YEfAfW4tctiq1aoZcilRTdQTEo03SpQK59Lcil0w=="
4+
"sha256": "VoWG5FjRcWv0Zpefd2xHF3HfVviDN+c9iGJsNDDUPDs=",
5+
"sha512": "kVByPWaa0uYOKn/v797k7YGPrEAKmqH0nsMCMv5ssiE1e+AmrjCzDcMWEUER/53sYoGqynGj+ReRzGd+kWlCHQ=="
66
},
77
"type": null,
8-
"integrity": "sha256-UotT5VJFZkWqahsXDipV6o2ZXS86FnCl5v3iqRfagrQ= sha512-7oBxZlNAzL/OPJVBsT7Hss/vFhuqPWyMwlOjYRHmTS3kA0YEfAfW4tctiq1aoZcilRTdQTEo03SpQK59Lcil0w==",
8+
"integrity": "sha256-VoWG5FjRcWv0Zpefd2xHF3HfVviDN+c9iGJsNDDUPDs= sha512-kVByPWaa0uYOKn/v797k7YGPrEAKmqH0nsMCMv5ssiE1e+AmrjCzDcMWEUER/53sYoGqynGj+ReRzGd+kWlCHQ==",
99
"path": "dist/raven.js"
1010
},
1111
"@dist/raven.min.js": {
1212
"hashes": {
13-
"sha256": "5eY6itXKwz59z+UzE8/RkvFttSb0hKtAhOJqRcgMgXE=",
14-
"sha512": "dPleFvik6z/jNuPmqXU1OhvMMAVSbqCRtwFaSDhB9Ach6zrSLxxCYzAJGuCqNEzkbHlOAK44SqQDkVZlLTUD6A=="
13+
"sha256": "DBVw7D0VtUxKOHCgay6isJm54nkEVL5v36xp7RVg06c=",
14+
"sha512": "EDIenuweiUZDMoQRxmw8huGReOChxTiTTBwZd0T6Mb/uh9fc4o8BdeF77BOZidawGJGtRPc28sP4zgk8SHhFbw=="
1515
},
1616
"type": null,
17-
"integrity": "sha256-5eY6itXKwz59z+UzE8/RkvFttSb0hKtAhOJqRcgMgXE= sha512-dPleFvik6z/jNuPmqXU1OhvMMAVSbqCRtwFaSDhB9Ach6zrSLxxCYzAJGuCqNEzkbHlOAK44SqQDkVZlLTUD6A==",
17+
"integrity": "sha256-DBVw7D0VtUxKOHCgay6isJm54nkEVL5v36xp7RVg06c= sha512-EDIenuweiUZDMoQRxmw8huGReOChxTiTTBwZd0T6Mb/uh9fc4o8BdeF77BOZidawGJGtRPc28sP4zgk8SHhFbw==",
1818
"path": "dist/raven.min.js"
1919
}
2020
}

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

src/raven.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Raven.prototype = {
7272
// webpack (using a build step causes webpack #1617). Grunt verifies that
7373
// this value matches package.json during build.
7474
// See: https://github.com/getsentry/raven-js/issues/465
75-
VERSION: '2.0.0',
75+
VERSION: '2.0.5',
7676

7777
debug: false,
7878

test/raven.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ describe('globals', function() {
10371037
extra: {'session:duration': 100},
10381038
});
10391039
assert.deepEqual(opts.auth, {
1040-
sentry_client: 'raven-js/2.0.4',
1040+
sentry_client: 'raven-js/2.0.5',
10411041
sentry_key: 'abc',
10421042
sentry_version: '7'
10431043
});

0 commit comments

Comments
 (0)