Bump Ansible version_tested_max to 2.4.2.0 #932
Merged
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.
In my tests, Trellis works with Ansible 2.4.2.0 as expected.
The only exception is that the Trellis
output.py
callback plugin was not formatting failure output as expected (e.g., not interpreting\n
line breaks). The plugin had been triggering such formatting when thefailed: True
status appeared in theresult
formerly sent to callbacks.Such statuses were removed in ansible/ansible#27175, the rationale being that "statuses are already reflected on the event type." For example, the
v2_runner_on_failed
event obviously impliesfailed
status. The Trellis output plugin was already loading and passing along atask_failed
attribute that can serve just as well.Before fix
After fix