Releases: armory/go-yaml-tools
v1.0.2
What's Changed
- feat: Mod upgrades and config import support by @jasonmcintosh in #49
Full Changelog: v1.0.0...v1.0.2
v1.0.1
Added legal notice common class.
v1.0.0
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
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
- Expose
SpringEnv
to change folder names from which config files are loaded
v0.0.3
- Made public functions to load config files supplying config dir as a parameter
v0.0.2
fix(vault): capture more responses that warrant retrying at KV v2 pat…
v0.0.1
feat(vault): add userpass auth to vault secrets (#37) Co-authored-by: Ethan Rogers <[email protected]>