Socket
Socket
Sign inDemoInstall

digdug

Package Overview
Dependencies
137
Maintainers
3
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.6.3 to 1.6.4

2

package.json
{
"name": "digdug",
"version": "1.6.3",
"version": "1.6.4",
"description": "Dig Dug. A simple abstraction library for downloading and launching WebDriver service tunnels.",

@@ -5,0 +5,0 @@ "repository": {

@@ -24,3 +24,3 @@ /**

constructor: ChromeConfig,
version: '2.28',
version: '2.29',
baseUrl: 'https://chromedriver.storage.googleapis.com',

@@ -60,3 +60,3 @@ platform: process.platform,

constructor: IeConfig,
version: '3.3.0',
version: '3.4.0',
baseUrl: 'https://selenium-release.storage.googleapis.com',

@@ -86,3 +86,3 @@ arch: process.arch,

constructor: FirefoxConfig,
version: '0.15.0',
version: '0.16.1',
baseUrl: 'https://github.com/mozilla/geckodriver/releases/download',

@@ -195,5 +195,5 @@ arch: process.arch,

* @type {string}
* @default 3.3.1
* @default 3.4.0
*/
version: '3.3.1',
version: '3.4.0',

@@ -314,3 +314,3 @@ /**

if (this.verbose) {
args.push('-debug');
args.push('-debug', 'true');
console.log('starting with arguments: ', args.join(' '));

@@ -345,8 +345,11 @@ }

}
if (self.verbose) {
process.stderr.write(data);
}
});
var removeHandle = handle.remove.bind(handle);
if (self.verbose) {
util.on(child.stderr, 'data', function (data) {
process.stderr.write(data);
});
}
dfd.promise.then(removeHandle, removeHandle);

@@ -353,0 +356,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc