Skip to content

Releases: alexellis/go-execute

Update to examples in the docs

02 Oct 13:25
Compare
Choose a tag to compare

Changelog for v2.2.1:

Commits
5f0a7b6 Add "context" to examples by @alexellis

Changes: v2.2.0...v2.2.1

Generated by Derek

Enable use of DisableStdioBuffer and allow for spaces in command

02 Oct 13:21
Compare
Choose a tag to compare

Changelog for v2.2.0:

Commits
15c40fa Enable use of DisableStdioBuffer by @alexellis
3c8da2f Allow for spaces in command by @alexellis

Changes: v2.0.0...v2.2.0

Generated by Derek

Allow for spaces in command

29 Sep 10:37
Compare
Choose a tag to compare
Prior to this change, Windows users who had a space in the
path to a command would encounter errors.

Tested with a unit test which failed before commenting out
code in exec.go to split out the command and arguments if
a space was within the command.

This is a breaking change and downstream users should make
sure they populate Command and Args separately.

https://github.com/alexellis/arkade/issues/117

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>

V2 release

14 Sep 16:59
Compare
Choose a tag to compare

Changelog for v2.0.0:

  • PR #16 Move to v2 module and enable stream redirection by @alexellis

Commits
fc7a3fd Update examples and usage by @alexellis
3d3061b Move to v2 module and enable stream redirection by @alexellis

Changes: v0.6.0...v2.0.0

Generated by Derek

Add context aware V2 API

05 Jul 08:40
Compare
Choose a tag to compare

Changelog for v0.6.0:

Commits
e7b8802 feat: Add context aware V2 API by @LucasRoesler
e93ae65 Update README.md by @alexellis
415046e Update go.mod by @alexellis
02af333 Update README.md by @alexellis
84c7a1f Update README.md by @alexellis

Changes: v0.5.0...v0.6.0

Generated by Derek

Release with v prefix for Go modules

13 Jul 12:00
Compare
Choose a tag to compare

Changelog for v0.5.0:

Commits
528c0bb Add go module by @alexellis

Generated by Derek

Support adding an input for stdin

05 Dec 08:30
Compare
Choose a tag to compare

Changelog for 0.4.1:

Commits
69a2cde Support hooking in a reader for stdin by @alexellis

Generated by Derek

Change priority of envs

24 Jan 15:45
Compare
Choose a tag to compare

Changelog for 0.4.0:

Generated by Derek

Add StreamStdio option

07 Dec 09:00
Compare
Choose a tag to compare
Add option: StreamStdio

The StreamStdio option, when set to true, streams output to
STDIO. When set to false the user can only access the output
from the result.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>

Set exit-code when available

29 Oct 18:14
Compare
Choose a tag to compare

Sets exit-code when available. Error is only set if the exec failed.