Skip to content

Release v2.0.0

Compare
Choose a tag to compare
@dohnto dohnto released this 05 Nov 17:07
· 15 commits to master since this release
d0902cf

Changes since v1.1.0

  • (#4) Added Sprig templating
    BREAKING CHANGES:

  • {{ .NonExistsent }} resolves to empty string
    Before
    {{ .NonExistsent }} => <no-value>
    After
    {{ .NonExistsent }} => ``

  • function default is used from Sprig and has another params
    Before:
    default (env "VAR") "10"
    After
    env "VAR" | default "10"

  • Binary name changed to goenvtemplator2 to support dual installation of both major versions.

  • Fixed #8 via #9, this change required to change behaviour of .NONEXISTING elements which now raise an error.

  • DEPRECATION: require built-in function is now deprecated; use required built-in instead.

  • Added required built-in function (same as helm).

  • Added envall built-in function.

  • Added -delim-left and -delim-right options.

  • Updated godotenv version.