Skip to content

Commit

Permalink
Update dependencies (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
fishi0x01 authored Oct 6, 2021
1 parent 4b84f4b commit d32da8a
Show file tree
Hide file tree
Showing 620 changed files with 82,258 additions and 103,708 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## master - unreleased

## v0.12.1 (October, 06, 2021)

ENHANCEMENTS:

* Patch dependencies ([#99](https://github.com/fishi0x01/vsh/pull/99))

## v0.12.0 (June 15, 2021)

ENHANCEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Working on vault secrets can be critical, making quality and correct behavior a
That being said, `vsh` is still a small open source project, meaning we cannot give any guarantees.
However, we put strong emphasis on test-driven development.
Every PR is tested with an extensive [suite](test/suites) of integration tests.
Vast majority of tests run on KV1 and KV2 and every test runs against vault `1.0.0` and `1.7.2`, i.e., vault versions in between should also be compatible.
Vast majority of tests run on KV1 and KV2 and every test runs against vault `1.0.0` and `1.8.3`, i.e., vault versions in between should also be compatible.

## Contributions

Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module github.com/fishi0x01/vsh

go 1.12
go 1.16

require (
github.com/alexflint/go-arg v1.3.0
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883
github.com/c-bata/go-prompt v0.2.3
github.com/cnlubo/promptx v0.0.0-20190626092511-0fff67c60c75
github.com/cosiner/argv v0.1.0
github.com/fatih/color v1.7.0
github.com/fatih/color v1.11.0
github.com/fatih/structs v1.1.0
github.com/hashicorp/vault v1.3.3
github.com/hashicorp/vault/api v1.0.5-0.20200117231345-460d63e36490
github.com/hashicorp/vault v1.8.3
github.com/hashicorp/vault/api v1.1.2-0.20210713235431-1fc8af4c041f
github.com/logrusorgru/aurora v0.0.0-20190803045625-94edacc10f9b
github.com/mattn/go-tty v0.0.0-20190424173100-523744f04859 // indirect
github.com/pkg/term v0.0.0-20190109203006-aa71e9d9e942 // indirect
Expand Down
1,112 changes: 977 additions & 135 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/run-all-tests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e # required to fail test suite when a single test fails

VAULT_VERSIONS=("1.7.2" "1.0.0")
VAULT_VERSIONS=("1.8.3" "1.0.0")
KV_BACKENDS=("KV1" "KV2")

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
Expand Down
2 changes: 1 addition & 1 deletion test/run-single-test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e # required to fail test suite when a single test fails

VAULT_VERSION=${VAULT_VERSION:-"1.7.2"}
VAULT_VERSION=${VAULT_VERSION:-"1.8.3"}
KV_BACKEND=${KV_BACKEND:-"KV2"}
TEST_SUITE=${TEST_SUITE:-"commands/cp"}

Expand Down
2 changes: 1 addition & 1 deletion test/util/common.bash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export VAULT_VERSION=${VAULT_VERSION:-"1.7.2"}
export VAULT_VERSION=${VAULT_VERSION:-"1.8.3"}
export VAULT_CONTAINER_NAME="vsh-integration-test-vault"
export VAULT_HOST_PORT=${VAULT_HOST_PORT:-"8888"}

Expand Down
18 changes: 18 additions & 0 deletions vendor/github.com/Masterminds/goutils/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions vendor/github.com/Masterminds/goutils/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

202 changes: 202 additions & 0 deletions vendor/github.com/Masterminds/goutils/LICENSE.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 70 additions & 0 deletions vendor/github.com/Masterminds/goutils/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions vendor/github.com/Masterminds/goutils/appveyor.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d32da8a

Please sign in to comment.