Releases: zio/zio-config
v4.0.0-RC9
Additions
- Include default description of primitive types in markdown generation
Clean ups
- Local environment development that diverted from the CI behaviour due to build configurations resulted in false releases. Some of these build configurations are reverted. Example: Apply x-fatal regardless of the environments.
- Some of the transitive dependencies were not published to maven, resulting in import failures. One reason was due to scala-2.11 support. We have completely removed scala-2.11 from every module now
v4.0.0-RC8
Avoid scala-2.11 for all projects (#1066)
v4.0.0-RC6
- Include a basic XML ConfigProvider
v4.0.0-RC5
We are facing issues during publishing phase.
Consider this a retry to previous release candidates :)
v4.0.0-RC3
Fix unexpected publishing errors
v4.0.0-RC2
Working with the new frontend of ZIO
With 4.x.x, zio-config acts as an extension to the core ZIO library's Config
in the following ways.
-
Introduction of
IndexedFlat
and its newread
functionality to handle complex configuration sources such as HOCON, JSON, YAML and XML. More documentation onIndexedFlat
will be provided in upcoming releases. -
Extra backends, such as YAML and Typesafe-HOCON.
-
Auto-Derivations for
zio.Config
in scala 2(using magnolia) and scala3. Note that, we may change the module name fromzio-config-magnolia
tozio-config-derivation
and corresponding imports, in coming releases. -
Integrations with cats, enumeratum, scalaz, AWS-SDK, and zio-AWS.
-
Automatic validation using integration with
refined
.
The following capabilities are removed in 4.x.x:
- CommandLine source, due to maintainability issues. You can use
zio-config-3.x
(that has latest zio dependency) if you were using this. Meanwhile, we will try to come up with a better solution. - Scala 2.11 support, due to maintainability issues.
- Memoized sources.
- SystemEnv and SystemProperties are now in the core library and not in zio-config since they are simple configuration sources that work with
Flat
. - Effectful Configuration Sources, such as
ConfigProvider.fromHoconFile
can fail, and it is now up to the user to make sure it is properly effect-handled.
More refinements and additions are on it's way
More backends, including TOML and XML, are on the way. We aim to eliminate Java and third-party library dependencies to parse the remaining configuration sources as well.
The release of version 4.x.x represents a massive change to zio-config, and we appreciate your patience. We recommend using this release candidate version, providing feedback and reporting any bugs that you encounter. We will continue to refine the product and improve the website. More documentation on version 4.x.x will be updated in upcoming releases.
EDITED: Note that there were a few CI publish hiccups, and more release candidates were tried. Please make sure to choose the latest one.
v3.0.8
Release v3.0.7
Release v3.0.6
What's Changed
- Had to lower sbt version to make publishing work. by @ithinkicancode in #949
- Fix Cross Versioning Issue Without Downgrading SBT Version by @khajavi in #952
- Reverted to sbt 1.6.2 by @ithinkicancode in #963
- Update scalatest to 3.2.14 by @scala-steward in #975
- Upgrade ZIO to 2.0.5 by @ithinkicancode in #978
- Update actions/checkout action to v3.2.0 by @renovate in #986
Full Changelog: v3.0.5...v3.0.6
Release v3.0.5
Trying to fix the enum warnings that might prevent publish artifacts.…