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

backtrace-node

Package Overview
Dependencies
Maintainers
4
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backtrace-node - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

3

CHANGELOG.md
# Backtrace Node Release Notes
## Version 1.0.5 28.08.2019
* Fixed invalid source code line number
## Version 1.0.4 26.08.2019

@@ -4,0 +7,0 @@ * Added attachments checks,

4

lib/model/backtraceStackTrace.js

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

parameter = {
startLine: Math.max(minLine - this.contextLineCount, 0),
startLine: Math.max(minLine - this.contextLineCount + 1, 0),
endLine: maxLine + this.contextLineCount,

@@ -212,3 +212,3 @@ filePath: key,

path: parameter.filePath,
startLine: parameter.startLine,
startLine: parameter.startLine + 1,
startColumn: 1,

@@ -215,0 +215,0 @@ text: buff.toString('utf8'),

{
"name": "backtrace-node",
"version": "1.0.4",
"version": "1.0.5",
"description": "Backtrace error reporting tool",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -140,3 +140,3 @@ import * as fs from 'fs';

const parameter = {
startLine: Math.max(minLine - this.contextLineCount, 0),
startLine: Math.max(minLine - this.contextLineCount + 1, 0),
endLine: maxLine + this.contextLineCount,

@@ -160,3 +160,3 @@ filePath: key,

path: parameter.filePath,
startLine: parameter.startLine,
startLine: parameter.startLine + 1,
startColumn: 1,

@@ -163,0 +163,0 @@ text: buff.toString('utf8'),

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