Skip to content

Commit

Permalink
Changelog re #413, closes #413
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Dec 12, 2016
1 parent fb0804d commit b54ba36
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sites/www/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ Changelog
* :bug:`-` Fix configuration framework such that nested or dict-like config
values may be compared with regular dicts. Previously, doing so caused an
``AttributeError`` (as regular dicts lack a ``.config``).
* :bug:`413` Update behavior of ``DataProxy`` (used within
`~invoke.context.Context` and `~invoke.config.Config`) again, fixing two related issues:

- Creating new configuration keys via attribute access wasn't possible: one
had to do ``config['foo'] = 'bar'`` because ``config.foo = 'bar'`` would
set a real attribute instead of touching configuration.
- Supertypes' attributes weren't being considered during the "is this a real
attribute on ``self``?" test, leading to different behavior between a
nested config-value-as-attribute and a top-level Context/Config one.

* :release:`0.14.0 <2016-12-05>`
* :bug:`349 major` Display the string representation of
`~invoke.exceptions.UnexpectedExit` when handling it inside of
Expand Down

0 comments on commit b54ba36

Please sign in to comment.