Skip to content

Commit d7a01a7

Browse files
authoredOct 19, 2022
Drop support for node 12 (#109)
1 parent d72433a commit d7a01a7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
 

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
node: [12, 14]
16+
node: [14, 16]
1717
os: [ubuntu-latest, windows-latest]
1818

1919
steps:

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ Use `GECKODRIVER_SKIP_DOWNLOAD` to skip the download of the geckodriver file.
8585
## Versions
8686

8787
* [npm module version] - [geckodriver version]
88+
* 4.0.0 - geckodriver 0.32.0.
8889
* 3.2.0 - geckodriver 0.32.0, arm64 support.
8990
* 3.1.0 - geckodriver 0.31.0
9091
* 3.0.x - geckodriver 0.30.0, refactored logic, dependency updates.
@@ -114,6 +115,7 @@ Use `GECKODRIVER_SKIP_DOWNLOAD` to skip the download of the geckodriver file.
114115

115116
## Changelog
116117

118+
* 4.0.0 - requires node 14+, drops support for node 12.
117119
* 3.2.0 - geckodriver 0.32.0, arm64 support for Mac, Linux and Windows, added `GECKODRIVER_ARCH` for custom arch downloads.
118120
* 3.1.0 - geckodriver 0.31.0
119121
* 2.0.1 - fixed proxy download behaviour.

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "geckodriver",
3-
"version": "3.2.0",
3+
"version": "4.0.0",
44
"description": "Downloader for https://github.com/mozilla/geckodriver/releases",
55
"scripts": {
66
"test": "ava",
@@ -16,7 +16,7 @@
1616
"url": "http://vf.io"
1717
},
1818
"engines": {
19-
"node": ">=12.0.0"
19+
"node": ">=14.0.0"
2020
},
2121
"main": "lib/geckodriver",
2222
"bin": {

0 commit comments

Comments
 (0)
Please sign in to comment.