Releases: stackbuilders/dotenv-hs
Releases · stackbuilders/dotenv-hs
v0.12.0.0
MASTER
Dotenv 0.12.0.0
Modified
- Ensure support from GHC 8.10 up to GHC 9.6
Possible breaking change
- New attribute for
Configdata type to print env vars without actually
running the command (kudos to @flandrade).
v0.11.0.2
MASTER
Dotenv 0.11.0.2
Modified
- Allow optparse-applicative 0.18
v0.11.0.1
MASTER
Dotenv 0.11.0.1
Modified
- Export internal module
Configuration.Dotenv.Internalwhich exports all
the internal modules. - Export
configParserfromConfiguration.Dotenv.
v0.11.0.0
MASTER
Dotenv 0.11.0.0
Modified (Breaking change - new behavior)
- Take last rather than first env var in dotenv file (reported by @rudymatela and
solved by @anddriex). This will be the default behavior for the CLI, too.
v0.10.1.0
v0.10.0.1
MASTER
Dotenv 0.10.0.1
Modified
- Modify docs.
v0.10.0.0
MASTER
Dotenv 0.10.0.0
Modified
loadFilechange return type (back tom ())
v0.9.0.0
Dotenv 0.9.0.0
- Remove
loadSafeFile. Users must create their own parsers to convert the
read values fromSystem.Environmentto another data type. Therefore,
loadSafeFilewon't be needed. We'll remove this functionality to reduce
dependencies.
v0.8.0.4
Dotenv 0.8.0.4
- Fix test fixtures
Dotenv 0.8.0.3
- Add suppport for
megaparsec-8.0.0
Dotenv 0.8.0.2
- Add support for GHC 8.6
Dotenv 0.8.0.1
- Support for
optparse-applicative-0.15
Dotenv 0.8.0.0
- Add
Configuration.Dotenv.Environmentmodule exporting functions fromSystem.Environment,
System.Environment.Compat, orSystem.Environment.Blank, depending onbaseversion. - Add support for blank environment variables for
base>= 4.11.0.0.
Version 0.5.2.0
Dotenv 0.5.2.0
- Add
loadSafeFileto typecheck the envs. - Add
(--schema|-s) FILEflag to thedotenvCLI tool to enable safe mode. - Add
(--no-schema)flag to thedotenvCLI tool to disable safe mode. - Turn safe mode on automatically when the
.schema.ymlfile is present. - Make
requiredoptional in the.schema.yml.
Dotenv 0.5.1.1
- Allow
.envempty files
Dotenv 0.5.1.0
- Add support for command substitution on env vars.
Dotenv 0.5.0.2
- Set
.envfile as default file for environment variables. - Add
--versionflag to check the version of dotenv that is in use.