diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-05-13 04:45:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 13:45:36 +0200 |
commit | 041ee92bba0ba3f361218eb20ceeeee6eec85f91 (patch) | |
tree | 1a55acb85d5a9d15f836aaa1a0930193bdebf17c /changelog.md | |
parent | 1648f1dd9955c848f8fbaf46a89798ece21460cc (diff) | |
download | Nim-041ee92bba0ba3f361218eb20ceeeee6eec85f91.tar.gz |
`osproc.execCmdEx` now takes an optional `input` for stdin, `env`, workingDir (#14211)
* `osproc.execCmdEx` now takes an optional `input` for stdin * execCmdEx now also takes an optional ``workingDir` and `env`
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index d54ed4c8c..d6be5a9b7 100644 --- a/changelog.md +++ b/changelog.md @@ -92,6 +92,10 @@ - The callback that is passed to `system.onThreadDestruction` must now be `.raises: []`. +- `osproc.execCmdEx` now takes an optional `input` for stdin. +- `osproc.execCmdEx` now takes an optional `input` for stdin, `workingDir` and `env` + parameters. + ## Language changes - In the newruntime it is now allowed to assign discriminator field without restrictions as long as case object doesn't have custom destructor. Discriminator value doesn't have to be a constant either. If you have custom destructor for case object and you do want to freely assign discriminator fields, it is recommended to refactor object into 2 objects like this: |