Comparing version 1.1.1 to 2.0.2
@@ -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 @@ |
{ | ||
"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>.*)$') |
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
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
90242
4
736
+ Addedcross-spawn@7.0.6(transitive)
+ Addedpath-key@3.1.1(transitive)
+ Addedshebang-command@2.0.0(transitive)
+ Addedshebang-regex@3.0.0(transitive)
+ Addedwhich@2.0.2(transitive)
- Removedregexp-polyfill@^1.0.1
- Removedcross-spawn@6.0.6(transitive)
- Removednice-try@1.0.5(transitive)
- Removedpath-key@2.0.1(transitive)
- Removedregexp-polyfill@1.0.1(transitive)
- Removedsemver@5.7.2(transitive)
- Removedshebang-command@1.2.0(transitive)
- Removedshebang-regex@1.0.0(transitive)
- Removedwhich@1.3.1(transitive)
Updatedcross-spawn@^7.0.1