diff --git a/CHANGELOG.md b/CHANGELOG.md index f37bb5c37..3b436b20e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ # Changelog + +## [0.9.1] +###### 2018-11-26 + +### Added +* README.md now contains more detailed instructions on using WALKOFF with Docker, as well as a docker-compose file +* All databases will now be stamped with the most up-to-date alembic version, so WALKOFF will not run if you are using +an out-of-date database (see Fixed section for more details) + +### Fixed +* When using Redis as an external accumulator, results are now pickled to preserve typing. This fixes the issue where +everything (list, int, etc.) was incorrectly being returned as strings +* Fixed walkoffctl update script to correctly update databases -- run `python -m walkoff local update` to update +* ActionResult objects are now pretty-printed correctly in the console and log files +* Python Redis library is now pinned in requirements.txt due to breaking changes +* Fixed certificate generation for Kubernetes certificates + +### Removed +* Update.py script was removed and replaced with walkoffctl update (see Fixed section for more details) ## [0.9.0] ###### 2018-11-14 diff --git a/walkoff/__init__.py b/walkoff/__init__.py index e4e49b3bb..8969d4966 100644 --- a/walkoff/__init__.py +++ b/walkoff/__init__.py @@ -1 +1 @@ -__version__ = '0.9.0' +__version__ = '0.9.1' diff --git a/walkoff/api/api.yaml b/walkoff/api/api.yaml index 8e84aa6b0..64184023f 100644 --- a/walkoff/api/api.yaml +++ b/walkoff/api/api.yaml @@ -4,7 +4,7 @@ info: An active cyber defense development framework enabling orchestration capabilities to be written once and deployed across WALKOFF-enabled orchestration tools. https://nsacyber.github.io/WALKOFF/ - version: 0.9.0 + version: 0.9.1 title: WALKOFF contact: email: walkoff@nsa.gov