Skip to content

Commit

Permalink
3.25.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek committed May 17, 2018
1 parent 30b6d4e commit d5e44e2
Show file tree
Hide file tree
Showing 113 changed files with 429 additions and 301 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.25.2

* REF: Emit transaction instead of culprit (#1330)

## 3.25.1

* BUILD: fix missing plugins in dist directory and simplify grunt build (#1327)
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": "3.25.1",
"version": "3.25.2",
"dependencies": {},
"main": "dist/raven.js",
"ignore": [
Expand Down
14 changes: 9 additions & 5 deletions dist/angular,console,ember,require,vue/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -329,7 +329,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -419,7 +423,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1975,7 +1979,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -2090,7 +2094,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
4 changes: 2 additions & 2 deletions dist/angular,console,ember,require,vue/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console,ember,require,vue/raven.min.js.map

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions dist/angular,console,ember,require/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -279,7 +279,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -369,7 +373,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1925,7 +1929,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -2040,7 +2044,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
6 changes: 3 additions & 3 deletions dist/angular,console,ember,require/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console,ember,require/raven.min.js.map

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions dist/angular,console,ember,vue/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -312,7 +312,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -402,7 +406,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1958,7 +1962,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -2073,7 +2077,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
6 changes: 3 additions & 3 deletions dist/angular,console,ember,vue/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console,ember,vue/raven.min.js.map

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions dist/angular,console,ember/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -262,7 +262,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -352,7 +356,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1908,7 +1912,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -2023,7 +2027,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
4 changes: 2 additions & 2 deletions dist/angular,console,ember/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console,ember/raven.min.js.map

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions dist/angular,console,require,vue/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -296,7 +296,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -386,7 +390,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1942,7 +1946,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -2057,7 +2061,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
4 changes: 2 additions & 2 deletions dist/angular,console,require,vue/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console,require,vue/raven.min.js.map

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions dist/angular,console,require/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -246,7 +246,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -336,7 +340,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1892,7 +1896,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -2007,7 +2011,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
6 changes: 3 additions & 3 deletions dist/angular,console,require/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console,require/raven.min.js.map

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions dist/angular,console,vue/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -279,7 +279,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -369,7 +373,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1925,7 +1929,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -2040,7 +2044,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
6 changes: 3 additions & 3 deletions dist/angular,console,vue/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console,vue/raven.min.js.map

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions dist/angular,console/raven.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */

/*
* Includes TraceKit
Expand Down Expand Up @@ -229,7 +229,11 @@ function now() {
var _window =
typeof window !== 'undefined'
? window
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
: typeof global !== 'undefined'
? global
: typeof self !== 'undefined'
? self
: {};
var _document = _window.document;
var _navigator = _window.navigator;

Expand Down Expand Up @@ -319,7 +323,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: '3.25.1',
VERSION: '3.25.2',

debug: false,

Expand Down Expand Up @@ -1875,7 +1879,7 @@ Raven.prototype = {
}
]
},
culprit: fileurl
transaction: fileurl
},
options
);
Expand Down Expand Up @@ -1990,7 +1994,7 @@ Raven.prototype = {
if (
!last ||
current.message !== last.message || // defined for captureMessage
current.culprit !== last.culprit // defined for captureException/onerror
current.transaction !== last.transaction // defined for captureException/onerror
)
return false;

Expand Down
4 changes: 2 additions & 2 deletions dist/angular,console/raven.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular,console/raven.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit d5e44e2

Please sign in to comment.