@sentry/integrations
Advanced tools
Comparing version 5.21.4 to 5.22.0
@@ -474,2 +474,8 @@ (function (__window) { | ||
this._angular = options.angular || getGlobalObject().angular; | ||
if (!this._angular) { | ||
logger.error('AngularIntegration is missing an Angular instance'); | ||
return; | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
this._module = this._angular.module(Angular.moduleName, []); | ||
} | ||
@@ -481,4 +487,3 @@ /** | ||
var _this = this; | ||
if (!this._angular) { | ||
logger.error('AngularIntegration is missing an Angular instance'); | ||
if (!this._module) { | ||
return; | ||
@@ -488,3 +493,3 @@ } | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
this._angular.module(Angular.moduleName, []).config([ | ||
this._module.config([ | ||
'$provide', | ||
@@ -491,0 +496,0 @@ // eslint-disable-next-line @typescript-eslint/no-explicit-any |
@@ -1,2 +0,2 @@ | ||
!function(n){var t={};Object.defineProperty(t,"__esModule",{value:!0});var e=function(n,t){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,t){n.__proto__=t}||function(n,t){for(var e in t)t.hasOwnProperty(e)&&(n[e]=t[e])})(n,t)};var r=function(){return(r=Object.assign||function(n){for(var t,e=1,r=arguments.length;e<r;e++)for(var o in t=arguments[e])Object.prototype.hasOwnProperty.call(t,o)&&(n[o]=t[o]);return n}).apply(this,arguments)},o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(n,t){return n.__proto__=t,n}:function(n,t){for(var e in t)n.hasOwnProperty(e)||(n[e]=t[e]);return n});!function(n){function t(t){var e=this.constructor,r=n.call(this,t)||this;return r.message=t,r.name=e.prototype.constructor.name,o(r,e.prototype),r}(function(n,t){function r(){this.constructor=n}e(n,t),n.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)})(t,n)}(Error);function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var a={};function c(){return i()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:a}function u(n){var t=c();if(!("console"in t))return n();var e=t.console,r={};["debug","info","warn","error","log","assert"].forEach(function(n){n in t.console&&e[n].__sentry_original__&&(r[n]=e[n],e[n]=e[n].__sentry_original__)});var o=n();return Object.keys(r).forEach(function(n){e[n]=r[n]}),o}var s=Date.now(),f=0,l={now:function(){var n=Date.now()-s;return n<f&&(n=f),f=n,n},timeOrigin:s},_=(function(){if(i())try{return(n=module,t="perf_hooks",n.require(t)).performance}catch(n){return l}var n,t,e=c().performance;e&&e.now&&(void 0===e.timeOrigin&&(e.timeOrigin=e.timing&&e.timing.navigationStart||s))}(),c()),p="Sentry Logger ",h=function(){function n(){this._enabled=!1}return n.prototype.disable=function(){this._enabled=!1},n.prototype.enable=function(){this._enabled=!0},n.prototype.log=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&u(function(){_.console.log(p+"[Log]: "+n.join(" "))})},n.prototype.warn=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&u(function(){_.console.warn(p+"[Warn]: "+n.join(" "))})},n.prototype.error=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&u(function(){_.console.error(p+"[Error]: "+n.join(" "))})},n}();_.__SENTRY__=_.__SENTRY__||{};var d,v=_.__SENTRY__.logger||(_.__SENTRY__.logger=new h);!function(n){n.PENDING="PENDING",n.RESOLVED="RESOLVED",n.REJECTED="REJECTED"}(d||(d={}));(function(){function n(n){var t=this;this._state=d.PENDING,this._handlers=[],this._resolve=function(n){t._setResult(d.RESOLVED,n)},this._reject=function(n){t._setResult(d.REJECTED,n)},this._setResult=function(n,e){var r;t._state===d.PENDING&&(r=e,Boolean(r&&r.then&&"function"==typeof r.then)?e.then(t._resolve,t._reject):(t._state=n,t._value=e,t._executeHandlers()))},this._attachHandler=function(n){t._handlers=t._handlers.concat(n),t._executeHandlers()},this._executeHandlers=function(){if(t._state!==d.PENDING){var n=t._handlers.slice();t._handlers=[],n.forEach(function(n){n.done||(t._state===d.RESOLVED&&n.onfulfilled&&n.onfulfilled(t._value),t._state===d.REJECTED&&n.onrejected&&n.onrejected(t._value),n.done=!0)})}};try{n(this._resolve,this._reject)}catch(n){this._reject(n)}}n.resolve=function(t){return new n(function(n){n(t)})},n.reject=function(t){return new n(function(n,e){e(t)})},n.all=function(t){return new n(function(e,r){if(Array.isArray(t))if(0!==t.length){var o=t.length,i=[];t.forEach(function(t,a){n.resolve(t).then(function(n){i[a]=n,0===(o-=1)&&e(i)}).then(null,r)})}else e([]);else r(new TypeError("Promise.all requires an array as input."))})},n.prototype.then=function(t,e){var r=this;return new n(function(n,o){r._attachHandler({done:!1,onfulfilled:function(e){if(t)try{return void n(t(e))}catch(n){return void o(n)}else n(e)},onrejected:function(t){if(e)try{return void n(e(t))}catch(n){return void o(n)}else o(t)}})})},n.prototype.catch=function(n){return this.then(function(n){return n},n)},n.prototype.finally=function(t){var e=this;return new n(function(n,r){var o,i;return e.then(function(n){i=!1,o=n,t&&t()},function(n){i=!0,o=n,t&&t()}).then(function(){i?r(o):n(o)})})},n.prototype.toString=function(){return"[object SyncPromise]"}})(),c();var y=/^\[((?:[$a-zA-Z0-9]+:)?(?:[$a-zA-Z0-9]+))\] (.*?)\n?(\S+)$/,g=function(){function n(t){void 0===t&&(t={}),this.name=n.id,this._angular=t.angular||c().angular}return n.prototype.setupOnce=function(t,e){var r=this;this._angular?(this._getCurrentHub=e,this._angular.module(n.moduleName,[]).config(["$provide",function(n){n.decorator("$exceptionHandler",["$delegate",r._$exceptionHandlerDecorator.bind(r)])}])):v.error("AngularIntegration is missing an Angular instance")},n.prototype._$exceptionHandlerDecorator=function(t){var e=this;return function(o,i){var a=e._getCurrentHub&&e._getCurrentHub();a&&a.getIntegration(n)&&a.withScope(function(n){i&&n.setExtra("cause",i),n.addEventProcessor(function(n){var t=n.exception&&n.exception.values&&n.exception.values[0];if(t){var e=y.exec(t.value||"");e&&(t.type=e[1],t.value=e[2],n.message=t.type+": "+t.value,n.extra=r(r({},n.extra),{angularDocs:e[3].substr(0,250)}))}return n}),a.captureException(o)}),t(o,i)}},n.id="AngularJS",n.moduleName="ngSentry",n}();for(var E in t.Angular=g,n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},t)Object.prototype.hasOwnProperty.call(t,E)&&(n.Sentry.Integrations[E]=t[E])}(window); | ||
!function(n){var t={};Object.defineProperty(t,"__esModule",{value:!0});var e=function(n,t){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,t){n.__proto__=t}||function(n,t){for(var e in t)t.hasOwnProperty(e)&&(n[e]=t[e])})(n,t)};var r=function(){return(r=Object.assign||function(n){for(var t,e=1,r=arguments.length;e<r;e++)for(var o in t=arguments[e])Object.prototype.hasOwnProperty.call(t,o)&&(n[o]=t[o]);return n}).apply(this,arguments)},o=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(n,t){return n.__proto__=t,n}:function(n,t){for(var e in t)n.hasOwnProperty(e)||(n[e]=t[e]);return n});!function(n){function t(t){var e=this.constructor,r=n.call(this,t)||this;return r.message=t,r.name=e.prototype.constructor.name,o(r,e.prototype),r}(function(n,t){function r(){this.constructor=n}e(n,t),n.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)})(t,n)}(Error);function i(){return"[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0)}var a={};function u(){return i()?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:a}function c(n){var t=u();if(!("console"in t))return n();var e=t.console,r={};["debug","info","warn","error","log","assert"].forEach(function(n){n in t.console&&e[n].__sentry_original__&&(r[n]=e[n],e[n]=e[n].__sentry_original__)});var o=n();return Object.keys(r).forEach(function(n){e[n]=r[n]}),o}var s=Date.now(),l=0,f={now:function(){var n=Date.now()-s;return n<l&&(n=l),l=n,n},timeOrigin:s},_=(function(){if(i())try{return(n=module,t="perf_hooks",n.require(t)).performance}catch(n){return f}var n,t,e=u().performance;e&&e.now&&(void 0===e.timeOrigin&&(e.timeOrigin=e.timing&&e.timing.navigationStart||s))}(),u()),p="Sentry Logger ",h=function(){function n(){this._enabled=!1}return n.prototype.disable=function(){this._enabled=!1},n.prototype.enable=function(){this._enabled=!0},n.prototype.log=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&c(function(){_.console.log(p+"[Log]: "+n.join(" "))})},n.prototype.warn=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&c(function(){_.console.warn(p+"[Warn]: "+n.join(" "))})},n.prototype.error=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];this._enabled&&c(function(){_.console.error(p+"[Error]: "+n.join(" "))})},n}();_.__SENTRY__=_.__SENTRY__||{};var d,v=_.__SENTRY__.logger||(_.__SENTRY__.logger=new h);!function(n){n.PENDING="PENDING",n.RESOLVED="RESOLVED",n.REJECTED="REJECTED"}(d||(d={}));(function(){function n(n){var t=this;this._state=d.PENDING,this._handlers=[],this._resolve=function(n){t._setResult(d.RESOLVED,n)},this._reject=function(n){t._setResult(d.REJECTED,n)},this._setResult=function(n,e){var r;t._state===d.PENDING&&(r=e,Boolean(r&&r.then&&"function"==typeof r.then)?e.then(t._resolve,t._reject):(t._state=n,t._value=e,t._executeHandlers()))},this._attachHandler=function(n){t._handlers=t._handlers.concat(n),t._executeHandlers()},this._executeHandlers=function(){if(t._state!==d.PENDING){var n=t._handlers.slice();t._handlers=[],n.forEach(function(n){n.done||(t._state===d.RESOLVED&&n.onfulfilled&&n.onfulfilled(t._value),t._state===d.REJECTED&&n.onrejected&&n.onrejected(t._value),n.done=!0)})}};try{n(this._resolve,this._reject)}catch(n){this._reject(n)}}n.resolve=function(t){return new n(function(n){n(t)})},n.reject=function(t){return new n(function(n,e){e(t)})},n.all=function(t){return new n(function(e,r){if(Array.isArray(t))if(0!==t.length){var o=t.length,i=[];t.forEach(function(t,a){n.resolve(t).then(function(n){i[a]=n,0===(o-=1)&&e(i)}).then(null,r)})}else e([]);else r(new TypeError("Promise.all requires an array as input."))})},n.prototype.then=function(t,e){var r=this;return new n(function(n,o){r._attachHandler({done:!1,onfulfilled:function(e){if(t)try{return void n(t(e))}catch(n){return void o(n)}else n(e)},onrejected:function(t){if(e)try{return void n(e(t))}catch(n){return void o(n)}else o(t)}})})},n.prototype.catch=function(n){return this.then(function(n){return n},n)},n.prototype.finally=function(t){var e=this;return new n(function(n,r){var o,i;return e.then(function(n){i=!1,o=n,t&&t()},function(n){i=!0,o=n,t&&t()}).then(function(){i?r(o):n(o)})})},n.prototype.toString=function(){return"[object SyncPromise]"}})(),u();var y=/^\[((?:[$a-zA-Z0-9]+:)?(?:[$a-zA-Z0-9]+))\] (.*?)\n?(\S+)$/,g=function(){function n(t){void 0===t&&(t={}),this.name=n.id,this._angular=t.angular||u().angular,this._angular?this._module=this._angular.module(n.moduleName,[]):v.error("AngularIntegration is missing an Angular instance")}return n.prototype.setupOnce=function(n,t){var e=this;this._module&&(this._getCurrentHub=t,this._module.config(["$provide",function(n){n.decorator("$exceptionHandler",["$delegate",e._$exceptionHandlerDecorator.bind(e)])}]))},n.prototype._$exceptionHandlerDecorator=function(t){var e=this;return function(o,i){var a=e._getCurrentHub&&e._getCurrentHub();a&&a.getIntegration(n)&&a.withScope(function(n){i&&n.setExtra("cause",i),n.addEventProcessor(function(n){var t=n.exception&&n.exception.values&&n.exception.values[0];if(t){var e=y.exec(t.value||"");e&&(t.type=e[1],t.value=e[2],n.message=t.type+": "+t.value,n.extra=r(r({},n.extra),{angularDocs:e[3].substr(0,250)}))}return n}),a.captureException(o)}),t(o,i)}},n.id="AngularJS",n.moduleName="ngSentry",n}();for(var E in t.Angular=g,n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},t)Object.prototype.hasOwnProperty.call(t,E)&&(n.Sentry.Integrations[E]=t[E])}(window); | ||
//# sourceMappingURL=angular.min.js.map |
@@ -498,3 +498,3 @@ (function (__window) { | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
var observer = new (getGlobalObject()).ReportingObserver(this.handler.bind(this), { | ||
var observer = new (getGlobalObject().ReportingObserver)(this.handler.bind(this), { | ||
buffered: true, | ||
@@ -501,0 +501,0 @@ types: this._options.types, |
@@ -25,2 +25,6 @@ import { EventProcessor, Hub, Integration } from '@sentry/types'; | ||
/** | ||
* ngSentry module instance | ||
*/ | ||
private readonly _module; | ||
/** | ||
* Returns current hub. | ||
@@ -27,0 +31,0 @@ */ |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Angular = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -25,2 +24,8 @@ var utils_1 = require("@sentry/utils"); | ||
this._angular = options.angular || utils_1.getGlobalObject().angular; | ||
if (!this._angular) { | ||
utils_1.logger.error('AngularIntegration is missing an Angular instance'); | ||
return; | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
this._module = this._angular.module(Angular.moduleName, []); | ||
} | ||
@@ -32,4 +37,3 @@ /** | ||
var _this = this; | ||
if (!this._angular) { | ||
utils_1.logger.error('AngularIntegration is missing an Angular instance'); | ||
if (!this._module) { | ||
return; | ||
@@ -39,3 +43,3 @@ } | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
this._angular.module(Angular.moduleName, []).config([ | ||
this._module.config([ | ||
'$provide', | ||
@@ -42,0 +46,0 @@ // eslint-disable-next-line @typescript-eslint/no-explicit-any |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.CaptureConsole = void 0; | ||
var types_1 = require("@sentry/types"); | ||
@@ -4,0 +3,0 @@ var utils_1 = require("@sentry/utils"); |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Debug = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +3,0 @@ var utils_1 = require("@sentry/utils"); |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Dedupe = void 0; | ||
/** Deduplication filter */ | ||
@@ -4,0 +3,0 @@ var Dedupe = /** @class */ (function () { |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Ember = void 0; | ||
var utils_1 = require("@sentry/utils"); | ||
@@ -4,0 +3,0 @@ /** JSDoc */ |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ExtraErrorData = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +3,0 @@ var utils_1 = require("@sentry/utils"); |
@@ -7,2 +7,3 @@ export { Angular } from './angular'; | ||
export { ExtraErrorData } from './extraerrordata'; | ||
export { Offline } from './offline'; | ||
export { ReportingObserver } from './reportingobserver'; | ||
@@ -9,0 +10,0 @@ export { RewriteFrames } from './rewriteframes'; |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var angular_1 = require("./angular"); | ||
Object.defineProperty(exports, "Angular", { enumerable: true, get: function () { return angular_1.Angular; } }); | ||
exports.Angular = angular_1.Angular; | ||
var captureconsole_1 = require("./captureconsole"); | ||
Object.defineProperty(exports, "CaptureConsole", { enumerable: true, get: function () { return captureconsole_1.CaptureConsole; } }); | ||
exports.CaptureConsole = captureconsole_1.CaptureConsole; | ||
var debug_1 = require("./debug"); | ||
Object.defineProperty(exports, "Debug", { enumerable: true, get: function () { return debug_1.Debug; } }); | ||
exports.Debug = debug_1.Debug; | ||
var dedupe_1 = require("./dedupe"); | ||
Object.defineProperty(exports, "Dedupe", { enumerable: true, get: function () { return dedupe_1.Dedupe; } }); | ||
exports.Dedupe = dedupe_1.Dedupe; | ||
var ember_1 = require("./ember"); | ||
Object.defineProperty(exports, "Ember", { enumerable: true, get: function () { return ember_1.Ember; } }); | ||
exports.Ember = ember_1.Ember; | ||
var extraerrordata_1 = require("./extraerrordata"); | ||
Object.defineProperty(exports, "ExtraErrorData", { enumerable: true, get: function () { return extraerrordata_1.ExtraErrorData; } }); | ||
exports.ExtraErrorData = extraerrordata_1.ExtraErrorData; | ||
var offline_1 = require("./offline"); | ||
exports.Offline = offline_1.Offline; | ||
var reportingobserver_1 = require("./reportingobserver"); | ||
Object.defineProperty(exports, "ReportingObserver", { enumerable: true, get: function () { return reportingobserver_1.ReportingObserver; } }); | ||
exports.ReportingObserver = reportingobserver_1.ReportingObserver; | ||
var rewriteframes_1 = require("./rewriteframes"); | ||
Object.defineProperty(exports, "RewriteFrames", { enumerable: true, get: function () { return rewriteframes_1.RewriteFrames; } }); | ||
exports.RewriteFrames = rewriteframes_1.RewriteFrames; | ||
var sessiontiming_1 = require("./sessiontiming"); | ||
Object.defineProperty(exports, "SessionTiming", { enumerable: true, get: function () { return sessiontiming_1.SessionTiming; } }); | ||
exports.SessionTiming = sessiontiming_1.SessionTiming; | ||
var transaction_1 = require("./transaction"); | ||
Object.defineProperty(exports, "Transaction", { enumerable: true, get: function () { return transaction_1.Transaction; } }); | ||
exports.Transaction = transaction_1.Transaction; | ||
var vue_1 = require("./vue"); | ||
Object.defineProperty(exports, "Vue", { enumerable: true, get: function () { return vue_1.Vue; } }); | ||
exports.Vue = vue_1.Vue; | ||
//# sourceMappingURL=index.js.map |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ReportingObserver = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -39,3 +38,3 @@ var utils_1 = require("@sentry/utils"); | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
var observer = new (utils_1.getGlobalObject()).ReportingObserver(this.handler.bind(this), { | ||
var observer = new (utils_1.getGlobalObject().ReportingObserver)(this.handler.bind(this), { | ||
buffered: true, | ||
@@ -42,0 +41,0 @@ types: this._options.types, |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.RewriteFrames = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +3,0 @@ var utils_1 = require("@sentry/utils"); |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SessionTiming = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +3,0 @@ /** This function adds duration since Sentry was initialized till the time event was sent */ |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Transaction = void 0; | ||
/** Add node transaction to the event */ | ||
@@ -4,0 +3,0 @@ var Transaction = /** @class */ (function () { |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.getActiveTransaction = exports.Vue = void 0; | ||
var tslib_1 = require("tslib"); | ||
@@ -4,0 +3,0 @@ var utils_1 = require("@sentry/utils"); |
@@ -25,2 +25,6 @@ import { EventProcessor, Hub, Integration } from '@sentry/types'; | ||
/** | ||
* ngSentry module instance | ||
*/ | ||
private readonly _module; | ||
/** | ||
* Returns current hub. | ||
@@ -27,0 +31,0 @@ */ |
@@ -23,2 +23,8 @@ import { __assign } from "tslib"; | ||
this._angular = options.angular || getGlobalObject().angular; | ||
if (!this._angular) { | ||
logger.error('AngularIntegration is missing an Angular instance'); | ||
return; | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
this._module = this._angular.module(Angular.moduleName, []); | ||
} | ||
@@ -30,4 +36,3 @@ /** | ||
var _this = this; | ||
if (!this._angular) { | ||
logger.error('AngularIntegration is missing an Angular instance'); | ||
if (!this._module) { | ||
return; | ||
@@ -37,3 +42,3 @@ } | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
this._angular.module(Angular.moduleName, []).config([ | ||
this._module.config([ | ||
'$provide', | ||
@@ -40,0 +45,0 @@ // eslint-disable-next-line @typescript-eslint/no-explicit-any |
@@ -7,2 +7,3 @@ export { Angular } from './angular'; | ||
export { ExtraErrorData } from './extraerrordata'; | ||
export { Offline } from './offline'; | ||
export { ReportingObserver } from './reportingobserver'; | ||
@@ -9,0 +10,0 @@ export { RewriteFrames } from './rewriteframes'; |
@@ -7,2 +7,3 @@ export { Angular } from './angular'; | ||
export { ExtraErrorData } from './extraerrordata'; | ||
export { Offline } from './offline'; | ||
export { ReportingObserver } from './reportingobserver'; | ||
@@ -9,0 +10,0 @@ export { RewriteFrames } from './rewriteframes'; |
@@ -37,3 +37,3 @@ import { __values } from "tslib"; | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
var observer = new (getGlobalObject()).ReportingObserver(this.handler.bind(this), { | ||
var observer = new (getGlobalObject().ReportingObserver)(this.handler.bind(this), { | ||
buffered: true, | ||
@@ -40,0 +40,0 @@ types: this._options.types, |
{ | ||
"name": "@sentry/integrations", | ||
"version": "5.21.4", | ||
"version": "5.22.0", | ||
"description": "Pluggable integrations that can be used to enhance JS SDKs", | ||
@@ -19,8 +19,9 @@ "repository": "git://github.com/getsentry/sentry-javascript.git", | ||
"dependencies": { | ||
"@sentry/types": "5.21.4", | ||
"@sentry/utils": "5.21.4", | ||
"@sentry/types": "5.22.0", | ||
"@sentry/utils": "5.22.0", | ||
"localforage": "^1.8.1", | ||
"tslib": "^1.9.3" | ||
}, | ||
"devDependencies": { | ||
"@sentry-internal/eslint-config-sdk": "5.21.4", | ||
"@sentry-internal/eslint-config-sdk": "5.22.0", | ||
"chai": "^4.1.2", | ||
@@ -30,3 +31,3 @@ "eslint": "7.6.0", | ||
"npm-run-all": "^4.1.2", | ||
"prettier": "1.17.0", | ||
"prettier": "1.19.0", | ||
"rimraf": "^2.6.3", | ||
@@ -38,3 +39,3 @@ "rollup": "^1.10.1", | ||
"rollup-plugin-typescript2": "^0.21.0", | ||
"typescript": "3.9.7" | ||
"typescript": "3.7.5" | ||
}, | ||
@@ -41,0 +42,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2244820
129
12596
4
4
+ Addedlocalforage@^1.8.1
+ Added@sentry/types@5.22.0(transitive)
+ Added@sentry/utils@5.22.0(transitive)
+ Addedimmediate@3.0.6(transitive)
+ Addedlie@3.1.1(transitive)
+ Addedlocalforage@1.10.0(transitive)
- Removed@sentry/types@5.21.4(transitive)
- Removed@sentry/utils@5.21.4(transitive)
Updated@sentry/types@5.22.0
Updated@sentry/utils@5.22.0