Skip to content

Commit 8b025a8

Browse files
dmlemeshkovladikoff
authored andcommitted
update geckodriver to 0.26 (#68)
* update geckodriver * bump module version
1 parent c9a7049 commit 8b025a8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (skipDownload === 'true') {
2222
var baseCDNURL = process.env.GECKODRIVER_CDNURL || process.env.npm_config_geckodriver_cdnurl || 'https://github.com/mozilla/geckodriver/releases/download';
2323
var CACHED_ARCHIVE = process.env.GECKODRIVER_FILEPATH ? path.resolve(process.env.GECKODRIVER_FILEPATH) : undefined;
2424

25-
var version = process.env.GECKODRIVER_VERSION || '0.25.0';
25+
var version = process.env.GECKODRIVER_VERSION || '0.26.0';
2626

2727
// Remove trailing slash if included
2828
baseCDNURL = baseCDNURL.replace(/\/+$/, '');

lib/geckodriver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ process.env.PATH += path.delimiter + path.join(__dirname, '..');
77
exports.path = process.platform === 'win32' ? path.join(__dirname, '..', 'geckodriver.exe') : path.join(__dirname, '..', 'geckodriver');
88

99
// specify the version of geckodriver
10-
exports.version = process.env.GECKODRIVER_VERSION || '0.25.0';
10+
exports.version = process.env.GECKODRIVER_VERSION || '0.26.0';
1111

1212
exports.start = function(args) {
1313
exports.defaultInstance = require('child_process').execFile(exports.path, args);

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "geckodriver",
3-
"version": "1.18.0",
3+
"version": "1.19.0",
44
"description": "Downloader for https://github.com/mozilla/geckodriver/releases",
55
"scripts": {
66
"test": "ava",

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ test.cb('properly extracts', t => {
1414

1515
test('programmatic usage', t => {
1616
var driver = require('../lib/geckodriver')
17-
t.is(driver.version, '0.25.0')
17+
t.is(driver.version, '0.26.0')
1818
});

0 commit comments

Comments
 (0)