Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sentry/node

Package Overview
Dependencies
Maintainers
8
Versions
532
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/node - npm Package Compare versions

Comparing version 4.2.3 to 4.2.4

2

dist/handlers.js

@@ -111,3 +111,3 @@ "use strict";

// express, koa: req.query
var query = req.query || url.parse(originalUrl || '', true).query;
var query = url.parse(originalUrl || '', false).query;
// cookies:

@@ -114,0 +114,0 @@ // node, express, koa: req.headers.cookie

export { Breadcrumb, Request, SdkInfo, SentryEvent, SentryException, SentryResponse, Severity, StackFrame, Stacktrace, Status, Thread, User, } from '@sentry/types';
export { addBreadcrumb, captureException, captureEvent, captureMessage, configureScope, getCurrentHub, getHubFromCarrier, Hub, Scope, withScope, } from '@sentry/core';
export { addGlobalEventProcessor, addBreadcrumb, captureException, captureEvent, captureMessage, configureScope, getCurrentHub, getHubFromCarrier, Hub, Scope, withScope, } from '@sentry/core';
export { NodeBackend, NodeOptions } from './backend';

@@ -4,0 +4,0 @@ export { NodeClient } from './client';

@@ -18,2 +18,3 @@ "use strict";

var core_1 = require("@sentry/core");
exports.addGlobalEventProcessor = core_1.addGlobalEventProcessor;
exports.addBreadcrumb = core_1.addBreadcrumb;

@@ -20,0 +21,0 @@ exports.captureException = core_1.captureException;

@@ -107,3 +107,3 @@ "use strict";

linkedErrors = _a.sent();
event.exception.values = __spread(event.exception.values, linkedErrors);
event.exception.values = __spread(linkedErrors, event.exception.values);
return [2 /*return*/, event];

@@ -124,3 +124,3 @@ }

case 0:
if (!(error[key] instanceof Error) || stack.length >= this.limit) {
if (!(error[key] instanceof Error) || stack.length + 1 >= this.limit) {
return [2 /*return*/, stack];

@@ -131,3 +131,3 @@ }

exception = _a.sent();
return [2 /*return*/, this.walkErrorTree(error[key], key, __spread(stack, [exception]))];
return [2 /*return*/, this.walkErrorTree(error[key], key, __spread([exception], stack))];
}

@@ -134,0 +134,0 @@ });

export declare const SDK_NAME = "sentry.javascript.node";
export declare const SDK_VERSION = "4.2.3";
export declare const SDK_VERSION = "4.2.4";
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SDK_NAME = 'sentry.javascript.node';
exports.SDK_VERSION = '4.2.3';
exports.SDK_VERSION = '4.2.4';
//# sourceMappingURL=version.js.map
{
"name": "@sentry/node",
"version": "4.2.3",
"version": "4.2.4",
"description": "Offical Sentry SDK for Node.js",

@@ -18,6 +18,6 @@ "repository": "git://github.com/getsentry/raven-js.git",

"dependencies": {
"@sentry/core": "4.2.3",
"@sentry/hub": "4.2.3",
"@sentry/types": "4.2.3",
"@sentry/utils": "4.2.3",
"@sentry/core": "4.2.4",
"@sentry/hub": "4.2.4",
"@sentry/types": "4.2.4",
"@sentry/utils": "4.2.4",
"cookie": "0.3.1",

@@ -24,0 +24,0 @@ "lsmod": "1.0.0",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc