Socket
Socket
Sign inDemoInstall

@sentry/node

Package Overview
Dependencies
Maintainers
8
Versions
514
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.3.0 to 4.3.1

1

dist/backend.js

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

event_id: hint && hint.event_id,
fingerprint: [message],
level: level,

@@ -125,0 +124,0 @@ message: message,

3

dist/index.d.ts

@@ -10,2 +10,3 @@ export { Breadcrumb, Request, SdkInfo, SentryEvent, SentryException, SentryResponse, Severity, StackFrame, Stacktrace, Status, Thread, User, } from '@sentry/types';

import * as NodeIntegrations from './integrations';
import * as Parsers from './parsers';
import * as Transports from './transports';

@@ -27,2 +28,2 @@ declare const INTEGRATIONS: {

};
export { INTEGRATIONS as Integrations, Transports, Handlers };
export { INTEGRATIONS as Integrations, Transports, Parsers, Handlers };

@@ -43,2 +43,4 @@ "use strict";

var NodeIntegrations = require("./integrations");
var Parsers = require("./parsers");
exports.Parsers = Parsers;
var Transports = require("./transports");

@@ -45,0 +47,0 @@ exports.Transports = Transports;

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

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

"dependencies": {
"@sentry/core": "4.3.0",
"@sentry/hub": "4.3.0",
"@sentry/types": "4.3.0",
"@sentry/utils": "4.3.0",
"@sentry/core": "4.3.1",
"@sentry/hub": "4.3.1",
"@sentry/types": "4.3.1",
"@sentry/utils": "4.3.1",
"cookie": "0.3.1",

@@ -46,7 +46,7 @@ "lsmod": "1.0.0",

"lint": "run-s lint:prettier lint:tslint",
"lint:prettier": "prettier-check '{src,test}/**/*.ts'",
"lint:prettier": "prettier-check \"{src,test}/**/*.ts\"",
"lint:tslint": "tslint -t stylish -p .",
"lint:tslint:json": "tslint --format json -p . | tee lint-results.json",
"fix": "run-s fix:tslint fix:prettier",
"fix:prettier": "prettier --write '{src,test}/**/*.ts'",
"fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
"fix:tslint": "tslint --fix -t stylish -p .",

@@ -53,0 +53,0 @@ "test": "run-s test:jest test:express",

@@ -26,3 +26,6 @@ <p align="center">

```javascript
// ES5 Syntax
const Sentry = require('@sentry/node');
// ES6 Syntax
import * as Sentry from '@sentry/node';

@@ -29,0 +32,0 @@ Sentry.init({

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