-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from apenella/release-1.1.6
release notes for v1.1.6
- Loading branch information
Showing
3 changed files
with
48 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,33 +14,33 @@ It supports the most of its options for each command. | |
<!-- code_chunk_output --> | ||
|
||
- [go-ansible](#go-ansible) | ||
- [Install](#install) | ||
- [Upgrade to 1.x](#upgrade-to-1x) | ||
- [Packages](#packages) | ||
- [Adhoc](#adhoc) | ||
- [Playbook](#playbook) | ||
- [Execute](#execute) | ||
- [DefaultExecute](#defaultexecute) | ||
- [Custom executor](#custom-executor) | ||
- [Measurements](#measurements) | ||
- [Options](#options) | ||
- [ansible adhoc and ansible-playbook common options](#ansible-adhoc-and-ansible-playbook-common-options) | ||
- [Stdout Callback](#stdout-callback) | ||
- [Results](#results) | ||
- [Transformers](#transformers) | ||
- [Default](#default) | ||
- [JSON](#json) | ||
- [Manage JSON output](#manage-json-output) | ||
- [Examples](#examples) | ||
- [License](#license) | ||
- [Install](#install) | ||
- [Upgrade to 1.x](#upgrade-to-1x) | ||
- [Packages](#packages) | ||
- [Adhoc](#adhoc) | ||
- [Playbook](#playbook) | ||
- [Execute](#execute) | ||
- [DefaultExecute](#defaultexecute) | ||
- [Custom executor](#custom-executor) | ||
- [Measurements](#measurements) | ||
- [Options](#options) | ||
- [ansible adhoc and ansible-playbook common options](#ansible-adhoc-and-ansible-playbook-common-options) | ||
- [Stdout Callback](#stdout-callback) | ||
- [Results](#results) | ||
- [Transformers](#transformers) | ||
- [Default](#default) | ||
- [JSON](#json) | ||
- [Manage JSON output](#manage-json-output) | ||
- [Examples](#examples) | ||
- [License](#license) | ||
|
||
<!-- /code_chunk_output --> | ||
|
||
## Install | ||
|
||
To install the latest stable version run the command below: | ||
``` | ||
$ go get github.com/apenella/[email protected].5 | ||
$ go get github.com/apenella/[email protected].6 | ||
``` | ||
|
||
### Upgrade to 1.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
## undefined | ||
## v1.1.6 | ||
|
||
### Fixed | ||
- Quote `Args` value on `AnsibleAdhocCmd`'s `String` method | ||
- On default executor, set all parent process environment variables to `cmd.Env` when a custom env vars is defined | ||
|
||
- Quote `Args` value on `AnsibleAdhocCmd`'s `String` method #91 | ||
- On default executor, set all parent process environment variables to `cmd.Env` when a custom env vars is defined #94 | ||
- Fix parsing of long lines in output #101 | ||
|
||
### Added | ||
- `ExecutorTimeMeasurement` is a decorator defined on `github.com/apenella/go-ansible/pkg/execute`, that measures the duration of an execution, it receives an `Executor` which is measured the execution time | ||
- Add `unreachable` state on task play results struct `AnsiblePlaybookJSONResultsPlayTaskHostsItem` | ||
- `ExecutorTimeMeasurement` is a decorator defined on `github.com/apenella/go-ansible/pkg/execute`, that measures the duration of an execution, it receives an `Executor` which is measured the execution time #92 | ||
- Add `unreachable` state on task play results struct `AnsiblePlaybookJSONResultsPlayTaskHostsItem` #100 | ||
|
||
### Chanded | ||
- `MockExecute` uses `github.com/stretchr/testify/mock` | ||
- Examples' name is prefixed by `ansibleplaybook` or `ansibleadhoc` | ||
- `MockExecute` uses `github.com/stretchr/testify/mock` #92 | ||
- Examples' name are prefixed by `ansibleplaybook` or `ansibleadhoc` | ||
|
||
### Removed | ||
- `DefaultExecutor` does not measures the execution duration anymore. Instead of it, `ExecutorTimeMeasurement` must be used | ||
|
||
- `DefaultExecutor` does not measures the execution duration anymore. Instead of it, `ExecutorTimeMeasurement` must be used #92 |