node-notifier
Advanced tools
Comparing version 8.0.0 to 8.0.1
# Changelog | ||
### `v8.0.1` | ||
- fixes possible injection issue for notify-send | ||
### `v8.0.0` | ||
@@ -4,0 +8,0 @@ |
@@ -316,3 +316,5 @@ var shellwords = require('shellwords'); | ||
initial.forEach(function (val) { | ||
args.push(escapeFn(val)); | ||
if (typeof val === 'string') { | ||
args.push(escapeFn(val)); | ||
} | ||
}); | ||
@@ -319,0 +321,0 @@ for (var key in options) { |
{ | ||
"name": "node-notifier", | ||
"version": "8.0.0", | ||
"version": "8.0.1", | ||
"description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
5687726
1058