Skip to content

Commit

Permalink
Update go.mod dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Tinkham <[email protected]>
  • Loading branch information
andytinkham committed Jun 9, 2022
1 parent 6bce7cf commit ec4238b
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 71 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]

## [1.4.2] - 2022-05-03
### Changed
- Updated dependencies in go.mod (github.com/stretchr/testify -> v1.7.2, go.opentelemetry.io/otel -> 1.7.0,
gopkg.in/yaml.v3 -> v3.0.1, k8s.io/api -> 0.24.1, k8s.io/apimachinery -> 0.24.1, k8s.io/client-go -> 0.24.1)
[cyberark/secrets-provider-for-k8s#468](https://github.com/cyberark/secrets-provider-for-k8s/pull/468)

## [1.4.1] - 2022-04-01
### Changed
Expand Down
24 changes: 12 additions & 12 deletions NOTICES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ Section 1: Apache-2.0
>>> github.com/googleapis/gnostic - v0.5.5
>>> github.com/modern-go/reflect2 - v1.0.2
>>> gopkg.in/yaml.v2 - v2.4.0
>>> gopkg.in/yaml.v3 - v3.0.0-20210107192922-496545a6307b
>>> go.opentelemetry.io/otel - v1.3.0
>>> k8s.io/api - v0.23.3
>>> k8s.io/apimachinery - v0.23.3
>>> k8s.io/client-go - v0.23.3
>>> gopkg.in/yaml.v3 - v3.0.1
>>> go.opentelemetry.io/otel - v1.7.0
>>> k8s.io/api - v0.24.1
>>> k8s.io/apimachinery - v0.24.1
>>> k8s.io/client-go - v0.24.1
>>> k8s.io/klog - v2.40.1
>>> k8s.io/utils - v0.0.0-20211208161948-7d6a63dca704

Expand All @@ -31,7 +31,7 @@ Section 2: BSD 3-Clause
Section 3: MIT
>>> github.com/cenkalti/backoff - v2.2.1
>>> github.com/json-iterator/go - v1.1.12
>>> github.com/stretchr/testify - v1.7.0
>>> github.com/stretchr/testify - v1.7.2
>>> gopkg.in/yaml.v3 - v3.0.0-20210107192922-496545a6307b
>>> sigs.k8s.io/yaml - v1.3.0

Expand Down Expand Up @@ -140,7 +140,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

>>> gopkg.in/yaml.v3 - v3.0.0-20210107192922-496545a6307b
>>> gopkg.in/yaml.v3 - v3.0.1

Copyright (c) 2011-2019 Canonical Ltd

Expand All @@ -156,7 +156,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

>>> go.opentelemetry.io/otel - v1.3.0
>>> go.opentelemetry.io/otel - v1.7.0

Copyright (c) 2021 OpenTelemetry Authors

Expand All @@ -172,7 +172,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

>>> k8s.io/api - v0.23.3
>>> k8s.io/api - v0.24.1

Copyright 2016-2018 The Kubernetes Authors

Expand All @@ -188,7 +188,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

>>> k8s.io/apimachinery - v0.23.3
>>> k8s.io/apimachinery - v0.24.1

Copyright 2016 The Kubernetes Authors

Expand All @@ -204,7 +204,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

>>> k8s.io/client-go - v0.23.3
>>> k8s.io/client-go - v0.24.1

Copyright 2020 The Kubernetes Authors

Expand Down Expand Up @@ -463,7 +463,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
49 changes: 30 additions & 19 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,41 @@ go 1.17

require (
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/otel v1.3.0
github.com/stretchr/testify v1.7.2
go.opentelemetry.io/otel v1.7.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
k8s.io/api v0.23.3
k8s.io/apimachinery v0.23.3
k8s.io/client-go v0.23.3
gopkg.in/yaml.v3 v3.0.1
k8s.io/api v0.24.1
k8s.io/apimachinery v0.24.1
k8s.io/client-go v0.24.1
)

require (
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.19.5 // indirect
github.com/go-openapi/swag v0.19.14 // indirect
github.com/google/gnostic v0.5.7-v3refs // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
)

require (
// Requires latest version for automated release process
github.com/cyberark/conjur-opentelemetry-tracer latest
github.com/cyberark/conjur-api-go latest
github.com/cyberark/conjur-authn-k8s-client latest
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/cyberark/conjur-api-go v0.10.0
github.com/cyberark/conjur-authn-k8s-client v0.23.1
// Requires latest version for automated release process
github.com/cyberark/conjur-opentelemetry-tracer v0.0.1-274
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa // indirect
github.com/go-logr/logr v1.2.2 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/googleapis/gnostic v0.5.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
Expand All @@ -36,19 +47,19 @@ require (
go.opentelemetry.io/otel/exporters/jaeger v1.3.0 // indirect
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.3.0 // indirect
go.opentelemetry.io/otel/sdk v1.3.0 // indirect
go.opentelemetry.io/otel/trace v1.3.0 // indirect
go.opentelemetry.io/otel/trace v1.7.0 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
k8s.io/klog/v2 v2.40.1 // indirect
k8s.io/kube-openapi v0.0.0-20220124234850-424119656bbf // indirect
k8s.io/utils v0.0.0-20220127004650-9b3446523e65 // indirect
k8s.io/klog/v2 v2.60.1 // indirect
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
Expand Down
Loading

0 comments on commit ec4238b

Please sign in to comment.