Skip to content

Commit 42df94c

Browse files
committed
Bumping the min supported version of node from 0.8.x to 0.10.x
1 parent c10e3f5 commit 42df94c

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

javascript/node/selenium-webdriver/CHANGES.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
## v2.45.0-dev
22

3+
### Important Policy Change
4+
5+
Starting with the 2.45.0 release, selenium-webdriver will support the last
6+
two stable minor releases for Node. For 2.45.0, this means Selenium will
7+
support Node 0.10.x and 0.12.x. Support for the intermediate, un-stable release
8+
(0.11.x) is "best-effort". This policy will be re-evaluated once Node has a
9+
major version release (i.e. 1.0.0).
10+
11+
### Change Summary
12+
13+
* With the release of [Node 0.12.0](http://blog.nodejs.org/2015/02/06/node-v0-12-0-stable/)
14+
(finally!), the minimum supported version of Node is now `0.10.x`.
315
* The `promise` module is now [Promises/A+](https://promisesaplus.com/)
416
compliant. The biggest compliance change is that promise callbacks are now
517
invoked in a future turn of the JS event loop. For example:
@@ -36,7 +48,7 @@
3648
}, 2000, 'element not found');
3749
});
3850

39-
This code will fail an error like:
51+
This code will fail an error like:
4052

4153
Error: element not found
4254
Wait timed out after 2002ms
@@ -87,7 +99,7 @@
8799
however, since it is a required field in WebDriver's wire protocol.
88100
* FIXED: 7994: The `stacktrace` module will not modify stack traces if the
89101
initial parse fails (e.g. the user defined `Error.prepareStackTrace`)
90-
* FIXED: 5855: Added a module (`until`) that defines several common conditions
102+
* FIXED: 5855: Added a module (`until`) that defines several common conditions
91103
for use with explicit waits. See updated examples for usage.
92104

93105
## v2.43.5

javascript/node/selenium-webdriver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"url": "https://code.google.com/p/selenium/"
2020
},
2121
"engines": {
22-
"node": ">= 0.8.x"
22+
"node": ">= 0.10.x"
2323
},
2424
"dependencies": {
2525
"adm-zip": "0.4.4",

0 commit comments

Comments
 (0)