Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-07-21 | document publicly exposed interface | stuebinm | 6 | -10/+205 | |
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. | |||||
2024-07-10 | handle partially present optional nestings | stuebinm | 1 | -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). | |||||
2024-07-04 | fix a couple warnings | stuebinm | 4 | -20/+19 | |
2024-06-10 | pretty-printing of config value sources | stuebinm | 3 | -10/+74 | |
2024-06-10 | add an env variable source | stuebinm | 2 | -17/+90 | |
2024-06-08 | quasi-quotes for config keys | stuebinm | 2 | -3/+22 | |
2024-06-07 | nested configs which are optional | stuebinm | 1 | -0/+12 | |
2024-06-07 | the Config interface should be Applicative, not Monad | stuebinm | 1 | -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. | |||||
2024-06-07 | allow for non-required config options | stuebinm | 1 | -4/+20 | |
2024-06-06 | add yaml source | stuebinm | 4 | -3/+49 | |
2024-06-06 | nested values, tests, and aeson | stuebinm | 5 | -56/+243 | |