Skip to content

Releases: sethvargo/go-envconfig

v0.7.0

09 Jun 13:46
v0.7.0
39c9bc7
Compare
Choose a tag to compare

What's Changed

  • Change custom unmarshaling order by @gust1n in #59. This changes the order of resolution for unmarshalling to:

    1. envconfig.Decoder
    2. encoding.TextUnmarshaler
    3. json.Unmarshaler
    4. encoding.BinaryUnmarshaler
    5. gob.GobDecoder

New Contributors

Full Changelog: v0.6.2...v0.7.0

v0.6.2

31 May 13:46
v0.6.2
befaf9a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.1...v0.6.2

v0.6.1

31 May 13:45
v0.6.1
e94cab6
Compare
Choose a tag to compare

What's Changed

  • Sort struct fields for reduce memory by @zchee in #51
  • Fix GitHub Actions badge url and query by @zchee in #52
  • Fix typo in README.md by @ucpr in #53
  • Extend noinit to all pointer fields by @sethvargo in #55

New Contributors

  • @zchee made their first contribution in #51
  • @ucpr made their first contribution in #53

Full Changelog: v0.6.0...v0.6.1

v0.6.0

06 Apr 14:01
76d89c2
Compare
Choose a tag to compare

Features

  • Add support for custom element delimiters for slices and maps
  • Add support for custom key/value separators for maps