fix(deps): update module github.com/vladimirvivien/gexe to v0.4.0 #64
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.3.0
->v0.4.0
Release Notes
vladimirvivien/gexe (github.com/vladimirvivien/gexe)
v0.4.0
Compare Source
This release did not introduce new functionalities, but rather implemented fixes and improvements that have been lingering for a while.
Release overview
exec
packageexec.Proc.Resut()
andexec.Proc.Out()
calls return empty result from the processexec.CommandBuilder
to fix piped commands constructshttp
andfs
API changes
Package
exec
changesPreviously, method
Proc.Out()
in packageexec
would automatically start a defined process (if not started) then return output of the process as a combined Stdout/Stderr streams. This behavior has been simplified:proc.Out()
Proc.Out()
only returns the combined output stream if no other streams were set for the processMethod
proc.Result()
still returns the combined output stream asstring
(by callingproc.Out()
) if an output stream was not explicitly set.See example here
Package
vars
changesThis release introduces subtle changes to how methods
vars.Variables.Envs
andvars.Variables.Vars
work. Before this release, these methods accepted a single string withkey=value
pairs separated by spaces:In this release, however, the signatures for both
Envs
andVars
have been updated as variadic methods that accept zero or more string values. Each string parameter is not expected to provide a singlekey=value
pair:Note that this change provides the flexibility of specifying variables with quoted values and supports spaces in the values.
Related PRs
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.