Releases: gouline/molot
Releases · gouline/molot
v0.6.1
Now you can specify envargs and shell calls as "sensitive" to prevent their values from being logged. Useful whenever you have to pass a password or an access token and you don't want it to be logged in your CI output.
v0.6.0
This release just migrates existing YAML config parsing functionality from PyYAML to ruamel.yaml.
The reason for the change is ruamel.yaml's ability to preserve double and single quotations, which is useful when you are inserting your configuration values into a language that distinguishes between different quotation types (e.g. SQL).
There should be no breaking changes for built-in Molot functionality, however if you are using PyYAML import directly in your build script (not recommended), you have two options:
- Migrate to using ruamel.yaml too (recommended)
- Install and import PyYAML manually