Skip to content

Releases: AlphaOne1/templig

v0.9.2

23 Feb 19:34

Choose a tag to compare

  • added go fix for deprecated function FromFiles

v0.9.1

10 Feb 17:22

Choose a tag to compare

  • dependency updates
  • remove invalid secretRE update on config overlays
  • restored complete test coverage

v0.9.0

29 Jan 19:08
74aeca0

Choose a tag to compare

  • introduced Config.SetSecretRE to allow users to define their own secret regex
    per instance

  • extended HideSecrets to now need a regex to match secrets, the old behavior
    can be achieved as follows:

    func HideSecretsOld(node *yaml.Node, hideStructure bool) {
        HideSecrets(node, hideStructure, regexp.MustCompile(templig.SecretDefaultRE))
    }

    As we did not yet reach version 1.0, this breaking change is acceptable. Note that
    from version 1.0 on, this would not be accepted.

  • dependency updates

v0.8.3

06 Sep 16:03
157e5b4

Choose a tag to compare

  • changed unmaintained gopkg.in/yaml.v3 to go.yaml.in/yaml/v4
  • dependency updates

v0.8.2

27 Jul 01:11
487f972

Choose a tag to compare

  • documentation clarification for Config.Get
  • dependency updates
  • redacted code using AI to point out potential

v0.8.1

06 Jul 22:48
d0f130e

Choose a tag to compare

  • configured linter
  • adhered to linter comments

v0.8.0

25 Jun 21:56
da2e46f

Choose a tag to compare

  • add an example for config object generation from JSON schema
  • more documentation in examples
  • updated dependencies
  • add golangci-lint checks

v0.7.0

02 Mar 12:29
8af9f7d

Choose a tag to compare

  • give user the possibility to disallow additional templig template functions or add own ones

v0.6.2

02 Mar 00:51
918b301

Choose a tag to compare

  • update x/crypto dependency 0.34.0 -> 0.35.0

v0.6.1

02 Mar 00:17
5a0e805

Choose a tag to compare

  • fix not printing using secret hiding
  • documentation for configuration printing and secret hiding
  • extended templating/env example to print configuration hiding secrets
  • improve secret detection mechanism