Skip to content

Commit

Permalink
Update dependencies in conjur-env/go.mod
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Tinkham <andy.tinkham@cyberark.com>
  • Loading branch information
andytinkham committed Jun 8, 2022
1 parent 9d1e7bd commit 61806f3
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.2.4] - 2022-06-08
### Changed
- Updated conjur-env dependencies to latest versions (github.com/cyberark/summon -> v0.9.2,
github.com/stretchr/testify -> v1.7.2)
[cyberark/cloudfoundry-conjur-buildpack#143](https://github.com/cyberark/cloudfoundry-conjur-buildpack/pull/143)

## [2.2.3] - 2022-06-07

### Changed
Expand Down
8 changes: 4 additions & 4 deletions NOTICES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ SECTION 2: BSD 3-clause "New" or "Revised" License
SECTION 3: MIT License

>>> github.com/bgentry/go-netrc-0.0.0-20140422174119-9fd32a8b3d3d
>>> github.com/cyberark/summon-0.9.1
>>> github.com/cyberark/summon-0.9.2
>>> github.com/sirupsen/logrus-1.8.1
>>> github.com/stretchr/testify v1.7.0
>>> github.com/stretchr/testify v1.7.2
>>> gopkg.in/yaml.v2-2.4.0
>>> gopkg.in/yaml.v3-3.0.0-20210107192922-496545a6307b

Expand Down Expand Up @@ -198,7 +198,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

>>> github.com/cyberark/summon-0.9.1
>>> github.com/cyberark/summon-0.9.2

The MIT License (MIT)

Expand Down Expand Up @@ -246,7 +246,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

>>> github.com/stretchr/testify v1.7.0
>>> github.com/stretchr/testify v1.7.2

Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.

Expand Down
6 changes: 3 additions & 3 deletions conjur-env/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module github.com/cyberark/cloudfoundry-conjur-buildpack/conjur-env

require (
github.com/cyberark/conjur-api-go v0.10.0
github.com/cyberark/summon v0.9.1
github.com/stretchr/testify v1.7.0
github.com/cyberark/summon v0.9.2
github.com/stretchr/testify v1.7.2
)

require (
Expand All @@ -13,7 +13,7 @@ require (
github.com/sirupsen/logrus v1.8.1 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

go 1.17
10 changes: 6 additions & 4 deletions conjur-env/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/cyberark/conjur-api-go v0.10.0 h1:BN4yvZqF9qIB5/MYJsHMzu9G6FNAr6LjOOrWPyx8PX8=
github.com/cyberark/conjur-api-go v0.10.0/go.mod h1:xryKmROpicAe7lmHYSFqQlfU6712rviOFERBGkNDhXg=
github.com/cyberark/summon v0.9.1 h1:NqQZGQAvIVvSTaUxBolD2BQY5pl8zkp6Y9Jtrfm/7Vg=
github.com/cyberark/summon v0.9.1/go.mod h1:kzy9by/u+3VnxgKXDPoSVpH7FHCFpPPeHKeq7Zg63Gw=
github.com/cyberark/summon v0.9.2 h1:kz4VVx9n1HqJXQ657m5inSjs3kXfQN7Ectoik+l3nho=
github.com/cyberark/summon v0.9.2/go.mod h1:kzy9by/u+3VnxgKXDPoSVpH7FHCFpPPeHKeq7Zg63Gw=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand All @@ -30,8 +30,9 @@ github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.7.2 h1:4jaiDzPyXQvSd7D0EjG45355tLlV3VOECpq10pLC+8s=
github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
github.com/urfave/cli v1.22.5/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
golang.org/x/net v0.0.0-20211215060638-4ddde0e984e9/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
Expand All @@ -52,5 +53,6 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 comments on commit 61806f3

Please sign in to comment.