Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch latest changes from upstream #1

Closed
wants to merge 35 commits into from
Closed

Commits on Mar 26, 2021

  1. Add in memory keyring.

    An in-memory only keyring has been added. This will be useful for us because
    we have command line tools that we want to store longer term state in
    something like the OSX keychain, but later we may wish to automate the utility
    in a more transient, ephemeral way. In that case, the memory store will store
    the data for the duration of the run and recreate them on subsequent runs.
    
    I've additionally refactored slightly and added in a test for an Item.Equals
    function.
    mikewilson-dd committed Mar 26, 2021
    Configuration menu
    Copy the full SHA
    78c2e70 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2021

  1. fix reading in gnome keyring

    remove debug code
    
    tidy up
    
    remove un-necessary condition
    
    add unit test
    leejw51crypto committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    6bc6f5a View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2021

  1. Expand pass dir path

    benjamb committed Jun 9, 2021
    Configuration menu
    Copy the full SHA
    1a2ce33 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2021

  1. Configuration menu
    Copy the full SHA
    118ec9b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd26e26 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f697ddc View commit details
    Browse the repository at this point in the history
  4. Run 'go fmt' with go1.17.

    DocLambda committed Oct 6, 2021
    Configuration menu
    Copy the full SHA
    4174f16 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2021

  1. Merge pull request #91 from DocLambda/for-upstream

    Add Linux kernel keyring (keyctl) backend implementation
    mtibben committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    ae125c6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #80 from mikewilson-dd/memory-data-store

    Add in memory keyring.
    mtibben committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    b50c01a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #83 from leejw51crypto/gnome

    dashes in secret service backend break roundtrip (fix #82)
    mtibben committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    74483f7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #87 from robert-zaremba/patch-1

    fix(kwallet): empty wallet key query
    mtibben committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    50eaec8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    77f3e7a View commit details
    Browse the repository at this point in the history
  6. Merge pull request #92 from 99designs/revert-80-memory-data-store

    Revert "Add in memory keyring."
    mtibben committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    6ca29f6 View commit details
    Browse the repository at this point in the history
  7. go fmt

    mtibben committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    c96aa95 View commit details
    Browse the repository at this point in the history
  8. Rename files

    mtibben committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    b3af76f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    33891b1 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2021

  1. Configuration menu
    Copy the full SHA
    92ca59f View commit details
    Browse the repository at this point in the history
  2. Update README.md

    mtibben committed Oct 12, 2021
    Configuration menu
    Copy the full SHA
    fb371c9 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2021

  1. Configuration menu
    Copy the full SHA
    d531d42 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2021

  1. Configuration menu
    Copy the full SHA
    0fc2be1 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. go.mod: use forked go-keychain

    This updates the go modules (go.mod) to directly use the forked 99designs/go-keychain repository,
    instead of requiring keybase/go-keychain and then using the replace directive.  The reasoning for
    this is because the replace directive does not propagate to projects which depend on the go-keychain
    project.  This means other projects which depend on the go-keychain project still need to add their
    own replace directive.  Removing the replace directive from this project means that consumers
    will automatically get the 99designs/go-keychain indirect dependency.  If there is a conflict
    with another indirect dependency on keybase/go-keychain then that project can decide whether
    to replace one or the other dependency.
    pgier committed Jan 19, 2022
    Configuration menu
    Copy the full SHA
    a138963 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2022

  1. Merge pull request #101 from amitsaha/fix_win_arm64

    Upgrade golang.org/x/sys to fix build on Windows ARM64
    mtibben committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    c838fed View commit details
    Browse the repository at this point in the history
  2. Merge pull request #102 from pgier/use-forked-go-keychain

    go.mod: use forked go-keychain
    mtibben committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    ce6e9a0 View commit details
    Browse the repository at this point in the history
  3. update go version used in CI

    This fixes a CI test failure which is caused by using testing TempDir() function
    which was added in go 1.15.
    pgier committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    5c958d7 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2022

  1. Merge pull request #105 from pgier/fix-ci-test-failure

    update go version used in CI
    mtibben committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    bf8d76a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #86 from benjamb/benbrown/expand-paths

    Expand pass dir path
    mtibben committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    2e56fec View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2022

  1. Update deps

    mtibben committed Feb 5, 2022
    Configuration menu
    Copy the full SHA
    b22ef9e View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2022

  1. Update README.md

    mtibben committed Feb 6, 2022
    Configuration menu
    Copy the full SHA
    7098185 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2022

  1. Configuration menu
    Copy the full SHA
    e99e39c View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2022

  1. Merge pull request #109 from merrickluo/password-store-dir

    pass backend: use PASSWORD_STORE_DIR if set
    mtibben committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    ecf5c8e View commit details
    Browse the repository at this point in the history
  2. Fix tilde handling

    mtibben committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    af41858 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #110 from 99designs/fix-tilde-handling

    Fix tilde handling
    mtibben committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    932029a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    859d578 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #111 from 99designs/add-golangci-lint

    Add golangci-lint and fix linting issues
    mtibben committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    a382f92 View commit details
    Browse the repository at this point in the history
  6. Add tilde tests

    mtibben committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    81fed19 View commit details
    Browse the repository at this point in the history