Skip to content

Commit d5e44e2

Browse files
committed
3.25.2
1 parent 30b6d4e commit d5e44e2

File tree

113 files changed

+429
-301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+429
-301
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+
## 3.25.2
4+
5+
* REF: Emit transaction instead of culprit (#1330)
6+
37
## 3.25.1
48

59
* BUILD: fix missing plugins in dist directory and simplify grunt build (#1327)

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

dist/angular,console,ember,require,vue/raven.js

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
@@ -329,7 +329,11 @@ function now() {
329329
var _window =
330330
typeof window !== 'undefined'
331331
? window
332-
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
332+
: typeof global !== 'undefined'
333+
? global
334+
: typeof self !== 'undefined'
335+
? self
336+
: {};
333337
var _document = _window.document;
334338
var _navigator = _window.navigator;
335339

@@ -419,7 +423,7 @@ Raven.prototype = {
419423
// webpack (using a build step causes webpack #1617). Grunt verifies that
420424
// this value matches package.json during build.
421425
// See: https://github.com/getsentry/raven-js/issues/465
422-
VERSION: '3.25.1',
426+
VERSION: '3.25.2',
423427

424428
debug: false,
425429

@@ -1975,7 +1979,7 @@ Raven.prototype = {
19751979
}
19761980
]
19771981
},
1978-
culprit: fileurl
1982+
transaction: fileurl
19791983
},
19801984
options
19811985
);
@@ -2090,7 +2094,7 @@ Raven.prototype = {
20902094
if (
20912095
!last ||
20922096
current.message !== last.message || // defined for captureMessage
2093-
current.culprit !== last.culprit // defined for captureException/onerror
2097+
current.transaction !== last.transaction // defined for captureException/onerror
20942098
)
20952099
return false;
20962100

dist/angular,console,ember,require,vue/raven.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular,console,ember,require,vue/raven.min.js.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/angular,console,ember,require/raven.js

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
@@ -279,7 +279,11 @@ function now() {
279279
var _window =
280280
typeof window !== 'undefined'
281281
? window
282-
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
282+
: typeof global !== 'undefined'
283+
? global
284+
: typeof self !== 'undefined'
285+
? self
286+
: {};
283287
var _document = _window.document;
284288
var _navigator = _window.navigator;
285289

@@ -369,7 +373,7 @@ Raven.prototype = {
369373
// webpack (using a build step causes webpack #1617). Grunt verifies that
370374
// this value matches package.json during build.
371375
// See: https://github.com/getsentry/raven-js/issues/465
372-
VERSION: '3.25.1',
376+
VERSION: '3.25.2',
373377

374378
debug: false,
375379

@@ -1925,7 +1929,7 @@ Raven.prototype = {
19251929
}
19261930
]
19271931
},
1928-
culprit: fileurl
1932+
transaction: fileurl
19291933
},
19301934
options
19311935
);
@@ -2040,7 +2044,7 @@ Raven.prototype = {
20402044
if (
20412045
!last ||
20422046
current.message !== last.message || // defined for captureMessage
2043-
current.culprit !== last.culprit // defined for captureException/onerror
2047+
current.transaction !== last.transaction // defined for captureException/onerror
20442048
)
20452049
return false;
20462050

dist/angular,console,ember,require/raven.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular,console,ember,require/raven.min.js.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/angular,console,ember,vue/raven.js

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Raven.js 3.25.1 (b6f3c7a) | github.com/getsentry/raven-js */
1+
/*! Raven.js 3.25.2 (30b6d4e) | github.com/getsentry/raven-js */
22

33
/*
44
* Includes TraceKit
@@ -312,7 +312,11 @@ function now() {
312312
var _window =
313313
typeof window !== 'undefined'
314314
? window
315-
: typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
315+
: typeof global !== 'undefined'
316+
? global
317+
: typeof self !== 'undefined'
318+
? self
319+
: {};
316320
var _document = _window.document;
317321
var _navigator = _window.navigator;
318322

@@ -402,7 +406,7 @@ Raven.prototype = {
402406
// webpack (using a build step causes webpack #1617). Grunt verifies that
403407
// this value matches package.json during build.
404408
// See: https://github.com/getsentry/raven-js/issues/465
405-
VERSION: '3.25.1',
409+
VERSION: '3.25.2',
406410

407411
debug: false,
408412

@@ -1958,7 +1962,7 @@ Raven.prototype = {
19581962
}
19591963
]
19601964
},
1961-
culprit: fileurl
1965+
transaction: fileurl
19621966
},
19631967
options
19641968
);
@@ -2073,7 +2077,7 @@ Raven.prototype = {
20732077
if (
20742078
!last ||
20752079
current.message !== last.message || // defined for captureMessage
2076-
current.culprit !== last.culprit // defined for captureException/onerror
2080+
current.transaction !== last.transaction // defined for captureException/onerror
20772081
)
20782082
return false;
20792083

dist/angular,console,ember,vue/raven.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)