Skip to content

Releases: sorah/envchain

v1.1.0

23 Apr 18:13
v1.1.0
d244e6a
Compare
Choose a tag to compare

v1.0.1

12 Jun 13:20
v1.0.1
2856a03
Compare
Choose a tag to compare

Bug fixes

  • Fix SEGV when there's no default collection #10
  • Fix build error on a compiler with --as-needed turned on by default (e.g. Ubuntu) #11
  • Workaround for occasionally secret retrieval error with libsecret #9
  • $LDFLAGS was not honored properly, due to a typo #12

Linux support

08 Jun 20:01
v1.0.0
Compare
Choose a tag to compare

New feature

  • Linux support with libsecret (#7 @eagletmt)

    libsecret commuicates with D-Bus secret service; for instance, gnome-keyring implements it.

New feature in v0.2.0 (forgot to note..)

  • --list command

    On OS X keychain, values have to be set after envchain v0.2.0 or later due to data structure change, in prior to be listed.

0.2.0

06 Jun 08:03
Compare
Choose a tag to compare

new feature

  • You can now pass multiple namespaces at once
    (commit 3c1a87f)

    $ envchain --set foo TEST_A
    foo.TEST_A: 1
    $ envchain --set bar TEST_B
    bar.TEST_B: 2
    $ envchain foo,bar env | grep TEST_
    TEST_A=1
    TEST_B=2