Skip to content

Releases: markusressel/container-app-conf

v4.1.0

22 Oct 02:34
Compare
Choose a tag to compare

What’s Changed

🚀 Features and ✨ Enhancements

v4.0.0

14 Oct 01:49
Compare
Choose a tag to compare

What’s Changed

🚀 Features and ✨ Enhancements

  • Feature/#25 required instead of none allowed (#26) by @markusressel
  • better error output
  • custom logger for exceptions in ConfigEntry

Migration Guide:

  • change all non_allowed constructor parameters to required and invert their value, f.ex. none_allowed=True becomes required=False and vice versa
  • the special case for StringConfigEntry parsing "None" and other Strings to actual None values has been removed, if you relied on this feature you have to implement it yourself

v3.2.1

11 Oct 20:31
Compare
Choose a tag to compare

What’s Changed

🚀 Features and ✨ Enhancements

  • added "flags" parameter to RegexConfigEntry to pass regex compile flags (#23) by @markusressel

🐛 Bugfixes

v3.2.0

11 Oct 20:31
Compare
Choose a tag to compare
v3.2.0 Pre-release
Pre-release
  • wip regex release

v3.1.0

07 Oct 13:58
Compare
Choose a tag to compare

What’s Changed

🚀 Features and ✨ Enhancements

v3.0.2

03 Oct 00:43
Compare
Choose a tag to compare

What’s Changed

🐛 Bugfixes

  • fix file and directory value not allowing Path objects

v3.0.1

03 Oct 00:42
Compare
Choose a tag to compare

What’s Changed

🚀 Features and ✨ Enhancements

🐛 Bugfixes

v3.0.0

30 Sep 23:41
Compare
Choose a tag to compare

What’s Changed

🚀 Features and ✨ Enhancements

Migration:

  • In your config entries change yaml_path to key_path
  • Custom YAML file names, paths and extensions now have to be specified in the YamlSource constructor. To use this specify a custom data source list in the config constructor.

v2.0.0

17 Sep 02:21
Compare
Choose a tag to compare

What’s Changed

🚀 Features and ✨ Enhancements

  • reworked file/directory config entry to use pathlib (#8) by @markusressel
  • only set value from env if it doesnt match the current value to prevent "invalid value" errors for "None" values

v1.5.2

17 Sep 02:22
Compare
Choose a tag to compare
  • fixed None parsing in constructor even when None is not allowed for the entry