Skip to content

Releases: pstadler/flightplan

0.6.20

23 Jun 16:07
Compare
Choose a tag to compare

This is a maintenance release ensuring compatibility with current major Node.js versions (#178, 🍻 @chris-ray-abis)

0.6.19

18 Aug 08:49
Compare
Choose a tag to compare

Fix a bug where fs.unlink failed in newer versions of Node.js (#175, 🍻 @renarsvilnis)

0.6.18

13 Aug 13:54
Compare
Choose a tag to compare

This is a maintenance release ensuring compatibility with current major Node.js versions (#174, 🍻 @renarsvilnis)

0.6.17

05 Jun 09:40
Compare
Choose a tag to compare

This is a maintenance release ensuring compatibility with Node v4 (#166)

0.6.16

14 May 08:02
Compare
Choose a tag to compare

Fix a problem where prompts during authentication were still running after the connection to a remote host failed (#165).

0.6.15

09 Dec 08:32
Compare
Choose a tag to compare

The runtime object is now passed as second argument to the callback when using dynamic hosts configuration (#152, #153 - 🍻 @markbaird, @Glebka)

0.6.14

06 May 06:08
Compare
Choose a tag to compare

Updated dependencies to ensure compatibility with Node v6.

0.6.13

09 Mar 09:31
Compare
Choose a tag to compare

This finally fixes transport#sudo() to work within different shells and environments. The only reliable way of running commands using sudo -i is by piping them into bash, such as echo 'echo hello world' | sudo -i -u root bash. This might seems to be the obvious solution, but then again why is sudo -i -u root bash -c 'echo foo;echo bar' resulting in "bar" being printed, but "foo" is not?

http://lists.gnu.org/archive/html/bug-bash/2011-02/msg00095.html

Along the way, one should not forget to replace single quotes within single quotes with '\''.

0.6.12

08 Mar 14:01
Compare
Choose a tag to compare

Another approach for fixing the issue with sudo commands being improperly escaped after 0.6.10 introduced more problems than it solved (#123, 🍻 @marcioamr, @zmillman)

0.6.11

05 Mar 08:20
Compare
Choose a tag to compare

This release reverts breaking changes introduced with 0.6.10 (:beers: @zmillman, @nikolay).