Skip to content

Releases: matt4biz/envy

Fix docs for the get command, add option -n to string the final newline

16 Dec 15:06
92549a2
Compare
Choose a tag to compare

Using -n provides a cleaner way to put e.g. a password into a command's option

Add a get CLI command

25 Mar 23:38
7f2e24d
Compare
Choose a tag to compare

Add the get command, which returns a key's value immediately to stdout (or a realm as JSON)

This is useful where a value is needed on the command line (where an environment value won't work,
because it's not already in the environment

For example,

some command opt=`envy get realm/key`   ### envy exec realm some command opt=$key won't work

Fix the usage statement

18 Oct 19:03
fcfd231
Compare
Choose a tag to compare

No other changes to the functionality

Fix issues 3-5 [breaking changes]

14 Oct 01:41
ffd4b35
Compare
Choose a tag to compare

#3 envy.New no longer requires a directory; use envy.NewWithDirectory to provide one explicitly
#4 read and dump are renamed write and read to be more intuitive when used
#5 read -q unquotes JSON embedded in values

Add commands to read or write a realm to JSON

13 Oct 14:00
9e425d6
Compare
Choose a tag to compare
Merge pull request #2 from matt4biz/json

Add read/dump subcommands, add some app UTs, and a little code cleanup

Initial version of the program

12 Oct 20:32
1e10e4c
Compare
Choose a tag to compare
Merge pull request #1 from matt4biz/initial

Merge the initial development branch