Skip to content

Releases: gdanko/enpass

v0.5.4

17 Dec 02:21
Compare
Choose a tag to compare
v0.5.4 Pre-release
Pre-release
  • Set up the ability to brew install this package

v0.5.3

27 Aug 19:48
Compare
Choose a tag to compare
v0.5.3 Pre-release
Pre-release

Changes

  • Added a --label flag for filtering. This is because if you have more than one sensitive (password) fields in a record, the output will display the record twice, one for each password field. To only show the primary password field, which is most desirable, you would do enpass list --label password. I may eventually make this default.

Bug Fixes

  • List output format was not showing the decrypted password field

To Do

  • JSON and YAML output formats escape string fields with escapable characters. If you try to copy the password from JSON or YAML output and it has an escapable character in it.. well you know. If I can't find a way to fix this, we may not allow JSON or YAML to "show".

v0.5.2

25 Aug 00:10
Compare
Choose a tag to compare
v0.5.2 Pre-release
Pre-release

Changes

  • The config file can now store the vault's password. If the config file has the password we use that one first, next we try environment, last we prompt for input

v0.5.1

24 Aug 23:35
Compare
Choose a tag to compare
v0.5.1 Pre-release
Pre-release

Changes

  • Add support for output_style in the config file.

v0.5.0

24 Aug 23:04
f551f57
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

Features

  • Basic configuration file will allow specifying vault path and colors for output with color

To Do

  • Add logic to catch improper color definitions
  • Allow more functionality in the config file

v0.4.10

24 Aug 16:52
Compare
Choose a tag to compare
v0.4.10 Pre-release
Pre-release

Code Changes

  • Define the output colors at the top of output.go so all colorized output formats follow a common color scheme.

To Do

  • Implement a config file with color definitions and other things.

v0.4.9

22 Aug 01:50
Compare
Choose a tag to compare
v0.4.9 Pre-release
Pre-release

Features

  • Add color support for list output

Changes

  • Changed --nonInteractive to --non-interactive

To Do

  • Change the JSON output to use the same color scheme used by list and YAML
  • Possibly try to make a global color scheme and make all of the colorable output formats adhere to it ;)

v0.4.7

20 Aug 20:07
Compare
Choose a tag to compare
v0.4.7 Pre-release
Pre-release

Changes

  • Move format() and the escape constant to yaml-output.go as they're only used there

v0.4.6

20 Aug 19:59
Compare
Choose a tag to compare
v0.4.6 Pre-release
Pre-release

Features

  • YAML output can now be colorized

Code Changes

  • Split each of the output functions into its own file

v0.4.5

20 Aug 17:08
Compare
Choose a tag to compare
v0.4.5 Pre-release
Pre-release

New Features

  • Add the --nocolor flag to disable color in logging and output
  • Colorize the JSON output based on the color flag

To Do

  • Colorize the YAML output