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

node-7z

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-7z - npm Package Compare versions

Comparing version 1.1.1 to 2.0.2

15

CHANGELOG.md

@@ -0,1 +1,16 @@

## 2.0.1 (2019-10-27)
* test: Fix clerical error ([5b1e8a6](https://github.com/quentinrossetti/node-7z/commit/5b1e8a6))
## 2.0.0 (2019-10-27)
*BREAKING CHANGES : Drop support for Node.JS 8*
* fix: Add debug statement for Windows ([ddfc4b9](https://github.com/quentinrossetti/node-7z/commit/ddfc4b9))
* fix: Add plateform condition in test case ([f9c080a](https://github.com/quentinrossetti/node-7z/commit/f9c080a))
* fix: no longer depend on regexp polyfill, as polyfills dangerously modify the environment ([b923e9d](https://github.com/quentinrossetti/node-7z/commit/b923e9d))
* chore: Update dependencies ([708a5fd](https://github.com/quentinrossetti/node-7z/commit/708a5fd))
* test: Add compress from stdin ([6a337ad](https://github.com/quentinrossetti/node-7z/commit/6a337ad))
* style: make an exception to eslint rule no-new for regexp named groups test ([b710b82](https://github.com/quentinrossetti/node-7z/commit/b710b82))
## 1.1.1 (2019-07-17)

@@ -2,0 +17,0 @@

15

package.json
{
"name": "node-7z",
"version": "1.1.1",
"version": "2.0.2",
"description": "A Node.js wrapper for 7-Zip with platform binaries",

@@ -36,7 +36,6 @@ "main": "./src/main.js",

"dependencies": {
"cross-spawn": "^6.0.4",
"cross-spawn": "^7.0.1",
"debug": "^4.1.1",
"lodash": "^4.17.12",
"normalize-path": "^3.0.0",
"regexp-polyfill": "^1.0.1"
"normalize-path": "^3.0.0"
},

@@ -46,10 +45,10 @@ "optionalDependencies": {},

"chai": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard": "^14.1.0",
"esm": "^3.2.4",
"fs-readdir-recursive": "^1.1.0",
"is-child-process": "^1.0.2",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"rimraf": "^2.6.3"
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rimraf": "^3.0.0"
}
}

@@ -1,12 +0,1 @@

// @COMPAT Named capture groups aren't available before Node.js 10. This
// compatibility checks the running Node.js version and apply a polyfill
// if needed.
// Support until Jan 2020 (https://github.com/nodejs/Release)
const semver = /v(\d+)\.(\d+)\.(\d+)/
const nodeVersionResults = process.version.match(semver)
const nodeVersionMajor = parseInt(nodeVersionResults[1])
if (nodeVersionMajor < 10) {
require('regexp-polyfill')
}
const LINE_SPLIT = new RegExp('\n|\r\n|\x08+|\r +\r')

@@ -13,0 +2,0 @@ const BODY_PROGRESS = new RegExp('^ *(?<percent>\\d+)% ?(?<fileCount>\\d+)? ?(?<file>.*)$')

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