summaryrefslogtreecommitdiff
path: root/src/Conftrack.hs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* document publicly exposed interfacestuebinm2024-07-211-8/+164
| | | | | | this documents most functions that might be used by downstream consumers of this library, except for those in Conftrack.Pretty, which aren't done yet.
* handle partially present optional nestingsstuebinm2024-07-101-8/+27
| | | | | | | | these would previously silently fail and simply produce a Nothing if only some (but not all) of the nested keys were present. This is not reasonable behaviour that anyone would expect; whenever a nested key is present, absence of another should be an error (the same goes for any other errors in that key's definition).
* fix a couple warningsstuebinm2024-07-041-14/+15
|
* pretty-printing of config value sourcesstuebinm2024-06-101-8/+22
|
* quasi-quotes for config keysstuebinm2024-06-081-1/+2
|
* nested configs which are optionalstuebinm2024-06-071-0/+12
|
* the Config interface should be Applicative, not Monadstuebinm2024-06-071-45/+78
| | | | | this allows for safer alternative uses for it, such as running it on an empty list of config sources to just get the list of keys it uses.
* allow for non-required config optionsstuebinm2024-06-071-4/+20
|
* add yaml sourcestuebinm2024-06-061-1/+1
|
* nested values, tests, and aesonstuebinm2024-06-061-18/+48
|
* a generic, multi-source config interfacestuebinm2024-05-221-0/+76