Releases: zio/zio-config
Releases · zio/zio-config
Release v3.0.5
Trying to fix the enum warnings that might prevent publish artifacts.…
Release v3.0.4
Update Node.js to v18.12.1 (#945) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Release v2.0.9
Release v2.0.8
Fixed publishing of 2.0.7
Release v3.0.3
What's Changed
- Added pagination support by @ithinkicancode in #917
- zio-config-zio-aws for 3.x by @vigoo in #928
Full Changelog: v3.0.2...v3.0.3
Release v2.0.7
v2.0.6
- Add pagination for ssm-parameter store config source by @ithinkicancode
v3.0.2
Introduce map and mapEither
With the introduction of map
and mapEither
users can now forget about writing back the config.
i.e, Its now possible to do things like string("AGE").map(_.toInt)
or even better string("AGE").mapEither(str => Try(str.toInt).toEither)
v2.0.5
Introduce map and mapEither
With the introduction of map
and mapEither
users can now forget about writing back the config.
i.e, Its now possible to do things like string("AGE").map(_.toInt)
or even better string("AGE").mapEither(str => Try(str.toInt).toEither)