Skip to content

v0.6.0

Compare
Choose a tag to compare
@ameily ameily released this 06 Nov 04:47
· 90 commits to master since this release

[v0.6.0] - 2020-11-05

Added

  • Field.sensitive property to mark a value as sensitive.
  • Config.to_tree() now supports masking sensitive values (sensitive_mask parameter) and
    including virtual fields in the tree (virtual parameter).

Changed

  • StringField now only accepts string values. Prior to this release, all input values were
    coerced to a string, via str(value). This was causing inconsistencies and non-intuitive
    behavior for fields that inherited from StringField.
  • Refactor ListProxy to inherit from list.

Fixed

  • ListField now handles empty or None values.