Skip to content

Releases: stackbuilders/dotenv-hs

v0.12.0.0

Choose a tag to compare

@github-actions github-actions released this 22 Sep 04:09
62b1b4c

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

Choose a tag to compare

@github-actions github-actions released this 22 Jun 15:48
5a3e3ef

MASTER

Dotenv 0.11.0.2

Modified

  • Allow optparse-applicative 0.18

v0.11.0.1

Choose a tag to compare

@github-actions github-actions released this 16 Jun 03:33
34ef7e7

MASTER

Dotenv 0.11.0.1

Modified

  • Export internal module Configuration.Dotenv.Internal which exports all
    the internal modules.
  • Export configParser from Configuration.Dotenv.

v0.11.0.0

Choose a tag to compare

@github-actions github-actions released this 19 Apr 18:37
d3d7953

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

Choose a tag to compare

@github-actions github-actions released this 13 Mar 15:49
c97f941

MASTER

Dotenv 0.10.1.0

Added

  • Short -x for --example flag

Modified

  • Fix union/unionBy bug, refactor .env.example check, and improve error
    message (Kudos to @pbrisbin)

v0.10.0.1

Choose a tag to compare

@github-actions github-actions released this 23 Feb 14:25
fad5561

MASTER

Dotenv 0.10.0.1

Modified

  • Modify docs.

v0.10.0.0

Choose a tag to compare

@github-actions github-actions released this 12 Jan 16:26

MASTER

Dotenv 0.10.0.0

Modified

  • loadFile change return type (back to m ())

v0.9.0.0

Choose a tag to compare

@github-actions github-actions released this 22 Nov 18:07

Dotenv 0.9.0.0

  • Remove loadSafeFile. Users must create their own parsers to convert the
    read values from System.Environment to another data type. Therefore,
    loadSafeFile won't be needed. We'll remove this functionality to reduce
    dependencies.

v0.8.0.4

Choose a tag to compare

@stackbuildersbot stackbuildersbot released this 03 Feb 14:15
60d0587

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 from System.Environment,
    System.Environment.Compat, or System.Environment.Blank, depending on base version.
  • Add support for blank environment variables for base >= 4.11.0.0.

Version 0.5.2.0

Choose a tag to compare

@CristhianMotoche CristhianMotoche released this 22 Dec 12:46
92ca78c

Dotenv 0.5.2.0

  • Add loadSafeFile to typecheck the envs.
  • Add (--schema|-s) FILE flag to the dotenv CLI tool to enable safe mode.
  • Add (--no-schema) flag to the dotenv 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.