Security update to Drupal 8.4.6
[yaffs-website] / node_modules / phridge / CHANGELOG.md
1 Changelog
2 ---------
3
4 ### 2.0.0
5 - **Breaking:** Update `phantomjs-prebuilt@^2.1.3`
6 - **Breaking:** Replace [when.js](https://github.com/cujojs/when) promises with native `Promise`
7
8 ### 1.2.2
9 - Fix cannot read property 'stdin' of null in some cases [#41](https://github.com/peerigon/phridge/issues/41)
10
11 ### 1.2.1
12 - Fix compatibility issue with node 0.10 [#40](https://github.com/peerigon/phridge/pull/40)
13
14 ### 1.2.0
15 - `Phantom` now inherits from `EventEmitter`
16 - A `phantom` instance now emits an `unexpectedExit`-event when PhantomJS exited without a call to `phantom.dispose()` or one of its std streams emitted an `error` event. See [#35](https://github.com/peerigon/phridge/pull/35) for discussion.
17 - Refactored mechanisms to prevent orphaned PhantomJS child processes
18 - Handle disposed `phantom` instances more gracefully
19
20 ### 1.1.0
21 - Support CLI-style options [#31](https://github.com/peerigon/phridge/issues/31)
22
23 ### 1.0.8
24 - Fix an error where the destination streams were ended prematurely [#27](https://github.com/peerigon/phridge/issues/27)
25
26 ### 1.0.7
27 - Fix memory leak when disposing pages [#21](https://github.com/peerigon/phridge/pull/21)
28 - Fix confusing security warning when PhantomJS exits
29
30 ### 1.0.6
31 - Fix potential performance issues when PhantomJS' stdin was cluttered with messages
32
33 ### 1.0.5
34 - `phantom.childProcess.cleanStdout` now implements the regular Readable interface
35
36 ### 1.0.4
37 - Improve performance when running synchronous functions
38
39 ### 1.0.3
40 - Fix an error where new line characters where removed from `console.log()`-messages inside PhantomJS
41
42 ### 1.0.2
43 - Fix an error where a promise could have been rejected after it has already been resolved
44
45 ### 1.0.1
46 - Improved stack traces from PhantomJS
47
48 ### 1.0.0
49 - Replaced inter-process communication from HTTP to regular stdin/stdout
50 - `Phantom.prototype.port` has been removed
51 - `Phantom.prototype.secret` has been removed
52 - `config.minPort` has been removed
53 - `config.maxPort` has been removed
54 - Improved performance
55 - Reached stable state :)