v3.2.0
There's lots of ✨ in this first release of 2019! 🎉🎊
Now, you can ignore files, merge datasources, and use .env
files as datasoures. Also, you can do a whole pile of new things with lists and maps with the functions in the new coll
namespace! See below for details...
v3.2.0 (2019-02-07)
Release Notes
New features and changes
- #450 Documented newline suppression (@carlosonunez)
- See the docs for this new section!
- #225 Add
.gomplateignore
support (@zealic)- An extension to the
--exclude
flag, allows ignoring certain files when processing directories with the--input-dir
argument. Works just like the.gitignore
file
- An extension to the
- #477 New
merge:
datasource, for merging multiple datasources- See the docs for full details
- #481 Adding support for
.env
files- Parses files containing lines like
KEY=value
as key-value pairs - See the docs for details
- Parses files containing lines like
New functions
- New
coll
namespace:- #470
coll.Append
/append
- #470
coll.Prepend
/prepend
- #470
coll.Uniq
/uniq
- #470
coll.Reverse
/reverse
- #470
coll.Keys
/keys
- #470
coll.Values
/values
- #470
coll.Dict
/dict
(renamed fromconv.Dict
, which is now deprecated) - #470
coll.Slice
/slice
(renamed fromconv.Slice
, which is now deprecated) - #470
coll.Has
/has
(renamed fromconv.Has
, which is now deprecated) - #472
coll.Merge
/merge
- #478
coll.Sort
/sort
- #470