Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Releases: jbasko/configmanager

v1.34.2

03 Dec 08:45
1d7229c
Compare
Choose a tag to compare
Unpin versions in setup.py (#169)

* Unpin versions in setup.py as per #168
* Bump version: 1.34.1 → 1.34.2

v1.34.1

19 Oct 23:32
800b043
Compare
Choose a tag to compare
Fixes load_values in PlainConfig (#167)

* Fixes #165 - Fixes `load_values` for `PlainConfig` where accessing item with `__getitem__` returns value so lower level method needs to be used in lookup
* Tested with Python 3.6 and 3.7
* Warn users about the state of the library
Thanks @haizaar

v1.34.0

16 Jan 09:22
Compare
Choose a tag to compare
Fix tests, fix hookery dependency spec

Bump version: 1.33.0 → 1.34.0

v1.32.1

25 Jun 21:59
Compare
Choose a tag to compare
Fixes #161 -- is_default and has_value take into consideration value …

v1.32.0

25 Jun 19:40
Compare
Choose a tag to compare

Config is now a callable -- it returns an auto-resetting changeset context which is handy for unittests and other times when you need to set temporary configuration.

v1.31.0

18 Jun 00:03
Compare
Choose a tag to compare
* Make Section.dispatch_event part of public interface

* Update for hookery 1.*

v1.30.0

17 Jun 18:27
Compare
Choose a tag to compare
* Fixes raw string value tracking

* Clean up tracking context -- rename to ChangesetContext, reset_changes renamed to reset, rename changes property to values, adds changes property which returns actual merged changes; adds ChangesetContext.__len__  which allows truth value calculation of context.

v1.29.2

17 Jun 17:36
Compare
Choose a tag to compare
Fixes tracking of changes in nested configs

v1.29.1

17 Jun 01:20
Compare
Choose a tag to compare
* Make hook names easier to discover for IDEs

* Docs update

v1.29.0

17 Jun 01:06
Compare
Choose a tag to compare
Merge pull request #160 from jbasko/track-changes2

Track changes fixes and reset_changes() added