|
2 | 2 |
|
3 | 3 | ## [Unreleased][] |
4 | 4 |
|
5 | | -[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.15.0...HEAD |
| 5 | +[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.19.0...HEAD |
| 6 | + |
| 7 | +## [1.19.0][] - 2021-02-16 |
| 8 | + |
| 9 | +[1.19.0]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.18.3...1.19.0 |
| 10 | + |
| 11 | +### Changed |
| 12 | + |
| 13 | +- Library now requires Python 3.6 [#208][ctk208] |
| 14 | + |
| 15 | +[ctk208]: https://github.com/chaostoolkit/chaostoolkit/issues/208 |
| 16 | + |
| 17 | +## [1.18.3][] - 2021-02-16 |
| 18 | + |
| 19 | +[1.18.3]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.18.2...1.18.3 |
| 20 | + |
| 21 | +### Changed |
| 22 | + |
| 23 | +- Fix typo in `setup.cfg` from `install_require` to `install_requires` |
| 24 | + |
| 25 | +## [1.18.2][] - 2021-02-16 |
| 26 | + |
| 27 | +[1.18.2]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.18.1...1.18.2 |
| 28 | + |
| 29 | +### Changed |
| 30 | + |
| 31 | +- Fix release workflow by updating to latest setuptools |
| 32 | + |
| 33 | +## [1.18.1][] - 2021-02-16 |
| 34 | + |
| 35 | +[1.18.1]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.18.0...1.18.1 |
| 36 | + |
| 37 | +### Changed |
| 38 | + |
| 39 | +- Fix release package |
| 40 | + |
| 41 | +## [1.18.0][] - 2021-02-16 |
| 42 | + |
| 43 | +[1.18.0]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.17.0...1.18.0 |
| 44 | + |
| 45 | +### Changed |
| 46 | + |
| 47 | +- Moved from setup.py to declarative setup.cfg [#204][204] |
| 48 | +- Moved to pylama from pycodestyle [#205][205] |
| 49 | + |
| 50 | +[204]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/204 |
| 51 | +[205]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/205 |
| 52 | + |
| 53 | +## [1.17.0][] - 2021-02-15 |
| 54 | + |
| 55 | +[1.17.0]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.16.0...1.17.0 |
| 56 | + |
| 57 | +### Added |
| 58 | + |
| 59 | +- Activities can be requested not to be executed on a per activity basis, not |
| 60 | + just as all or none. This can be used by a control to dynamically make |
| 61 | + a decision on what to run. |
| 62 | +- Test that demonstrate how to wrap controls into decorators [#197][197] |
| 63 | + |
| 64 | +[197]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/197 |
| 65 | + |
| 66 | +### Changed |
| 67 | + |
| 68 | +- Moved from TravisCI to GitHub Workflows [#201][201] |
| 69 | + |
| 70 | +[201]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/201 |
| 71 | + |
| 72 | +## [1.16.0][] - 2020-12-02 |
| 73 | + |
| 74 | +[1.16.0]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.15.1...1.16.0 |
| 75 | + |
| 76 | +### Changed |
| 77 | + |
| 78 | +- Allow substitution to keep its original type when done in isolation. |
| 79 | + [#180][180] [#195][195]. So let's assume we have the following configuration: |
| 80 | + |
| 81 | + ```json |
| 82 | + "configuration": { |
| 83 | + "value": 8 |
| 84 | + } |
| 85 | + ``` |
| 86 | + |
| 87 | + We can now use it as an argument of an action: |
| 88 | + |
| 89 | + ```json |
| 90 | + "provider": { |
| 91 | + "arguments": { |
| 92 | + "quantity": "${value}" |
| 93 | + } |
| 94 | + } |
| 95 | + ``` |
| 96 | + |
| 97 | + Now, the `quantity` argument will indeed be an integer, when it was converted |
| 98 | + to string until now. This works with any support Python objects, whether they |
| 99 | + are scalars or nested. |
| 100 | + |
| 101 | + If, you have something like this however |
| 102 | + |
| 103 | + |
| 104 | + ```json |
| 105 | + "provider": { |
| 106 | + "arguments": { |
| 107 | + "quantity": "I want ${value} apples" |
| 108 | + } |
| 109 | + } |
| 110 | + ``` |
| 111 | + |
| 112 | + This will always remain a string. |
| 113 | + |
| 114 | + |
| 115 | +[180]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/180 |
| 116 | +[195]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/195 |
| 117 | + |
| 118 | +## [1.15.1][] - 2020-11-02 |
| 119 | + |
| 120 | +[1.15.1]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.15.0...1.15.1 |
| 121 | + |
| 122 | +### Changed |
| 123 | + |
| 124 | +- Fixed a regression where the extra vars were not passed onto configuration |
| 125 | + and secrets for overriding substitution [#192][192] |
| 126 | + |
| 127 | +[192]: https://github.com/chaostoolkit/chaostoolkit-lib/issues/192 |
6 | 128 |
|
7 | 129 | ### Added |
8 | 130 |
|
|
0 commit comments