Skip to content

Releases: armory/go-yaml-tools

v1.0.2

24 Oct 20:18
8000827
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0...v1.0.2

v1.0.1

06 Apr 11:37
Compare
Choose a tag to compare

Added legal notice common class.

v1.0.0

16 May 15:11
eea7c25
Compare
Choose a tag to compare

Note: Bumping this to 1.0.0 because multi-production systems rely on this lib and that is best practice in the Sym Ver world.
From https://semver.org/ : How do I know when to release 1.0.0?

  • Added more paths to scan when loading config

v0.0.5

15 Dec 15:58
97bd704
Compare
Choose a tag to compare

Add support to read values of a map yaml configuration when they are not specified as string values.
For example before if you specify a map configuration as the following:

mapConfiguration:
  keyOne:
    - 1
    - 1.1
    - true
    - stringValue

All the values of keyOne will not be loaded, and that is because before was aspected all values to be string.
So the 1, 1.1, and true values will be taken as int, float64 and bool respectively, and at the end the only value
which will be load will be stringValue. Also mention that there was a quick way to fix that by surround the values
with quotes as the following :

mapConfiguration:
  keyOne:
    - '1'
    - '1.1'
    - 'true'
    - stringValue

In this way we force the values to be strings and thanks of that will be loaded.

To conclude with this new version the values are not required to be surrounded with quotes to be able to load them

v0.0.4

09 Sep 16:47
fac44ad
Compare
Choose a tag to compare
  • Expose SpringEnv to change folder names from which config files are loaded

v0.0.3

08 Sep 17:29
80d9a54
Compare
Choose a tag to compare
  • Made public functions to load config files supplying config dir as a parameter

v0.0.2

18 Feb 17:48
b366398
Compare
Choose a tag to compare
fix(vault): capture more responses that warrant retrying at KV v2 pat…

v0.0.1

16 Feb 23:25
b25ca4a
Compare
Choose a tag to compare
feat(vault): add userpass auth to vault secrets (#37)

Co-authored-by: Ethan Rogers <[email protected]>