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
Config
data 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.Internal
which exports all
the internal modules. - Export
configParser
fromConfiguration.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
loadFile
change 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.Environment
to another data type. Therefore,
loadSafeFile
won'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.Environment
module exporting functions fromSystem.Environment
,
System.Environment.Compat
, orSystem.Environment.Blank
, depending onbase
version. - Add support for blank environment variables for
base
>= 4.11.0.0.
Version 0.5.2.0
Dotenv 0.5.2.0
- Add
loadSafeFile
to typecheck the envs. - Add
(--schema|-s) FILE
flag to thedotenv
CLI tool to enable safe mode. - Add
(--no-schema)
flag to thedotenv
CLI tool to disable safe mode. - Turn safe mode on automatically when the
.schema.yml
file is present. - Make
required
optional in the.schema.yml
.
Dotenv 0.5.1.1
- Allow
.env
empty files
Dotenv 0.5.1.0
- Add support for command substitution on env vars.
Dotenv 0.5.0.2
- Set
.env
file as default file for environment variables. - Add
--version
flag to check the version of dotenv that is in use.