Changed
- Process activities can now take their arguments as a list rather than a
dictionary. The rationale is that command line arguments sometimes need
ordering and dictionaries only provided ordering (as in insertion ordering)
only [since Python 3.6][ordereddict]. Assuming older versions of Python will
eventually get it backported is not reasonable. Therefore, a list is more
appropriate now and a warning message will be displayed when your experiment
uses the dictionary approach. Notice that HTTP and Python activities will
remain mapping only. [34][34]
- Added module to warn about deprecated features.
- Added settings for the user-supplied configurations [35][35]
- Added event support [33][33]
[33]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/33
[34]: https://github.com/chaostoolkit/chaostoolkit-lib/pull/34
[ordereddict]: https://stackoverflow.com/a/39980744/1363905
[35]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/35