Skip to content

Commit 55b07f9

Browse files
committed
Update various dependencies
- cloud.google.com/go/storage to v1.21.0 - github.com/Azure/azure-sdk-for-go/sdk/azcore to v0.22.0 - github.com/Azure/azure-sdk-for-go/sdk/azidentity to v0.13.2 - github.com/elazarl/goproxy to v0.0.0-20220115173737-adb46da277ac - github.com/fluxcd/pkg/apis/meta to v0.12.1 - github.com/fluxcd/pkg/gittestserver to v0.5.1 - github.com/fluxcd/pkg/helmtestserver to v0.7.1 - github.com/fluxcd/pkg/runtime to v0.13.2 - github.com/fluxcd/pkg/ssh to v0.3.2 - github.com/libgit2/git2go/v33 to v33.0.9 - github.com/minio/minio-go/v7 to v7.0.23 - github.com/onsi/gomega to v1.18.1 - google.golang.org/api to v0.73.0 - sigs.k8s.io/cli-utils to v0.29.3 Signed-off-by: Hidde Beydals <[email protected]>
1 parent 93e15f2 commit 55b07f9

File tree

2 files changed

+108
-76
lines changed

2 files changed

+108
-76
lines changed

go.mod

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ go 1.17
55
replace github.com/fluxcd/source-controller/api => ./api
66

77
require (
8-
cloud.google.com/go/storage v1.16.0
9-
github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1
10-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v0.13.1
8+
cloud.google.com/go/storage v1.21.0
9+
github.com/Azure/azure-sdk-for-go/sdk/azcore v0.22.0
10+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v0.13.2
1111
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0
1212
github.com/Masterminds/semver/v3 v3.1.1
1313
// github.com/ProtonMail/go-crypto is a fork of golang.org/x/crypto
@@ -18,14 +18,14 @@ require (
1818
github.com/cyphar/filepath-securejoin v0.2.3
1919
github.com/darkowlzz/controller-check v0.0.0-20220119215126-648356cef22c
2020
github.com/docker/go-units v0.4.0
21-
github.com/elazarl/goproxy v0.0.0-20211114080932-d06c3be7c11b
22-
github.com/fluxcd/pkg/apis/meta v0.12.0
23-
github.com/fluxcd/pkg/gittestserver v0.5.0
21+
github.com/elazarl/goproxy v0.0.0-20220115173737-adb46da277ac
22+
github.com/fluxcd/pkg/apis/meta v0.12.1
23+
github.com/fluxcd/pkg/gittestserver v0.5.1
2424
github.com/fluxcd/pkg/gitutil v0.1.0
25-
github.com/fluxcd/pkg/helmtestserver v0.6.0
25+
github.com/fluxcd/pkg/helmtestserver v0.7.1
2626
github.com/fluxcd/pkg/lockedfile v0.1.0
27-
github.com/fluxcd/pkg/runtime v0.13.1
28-
github.com/fluxcd/pkg/ssh v0.2.0
27+
github.com/fluxcd/pkg/runtime v0.13.2
28+
github.com/fluxcd/pkg/ssh v0.3.2
2929
github.com/fluxcd/pkg/testserver v0.2.0
3030
github.com/fluxcd/pkg/untar v0.1.0
3131
github.com/fluxcd/pkg/version v0.1.0
@@ -34,21 +34,21 @@ require (
3434
github.com/go-git/go-git/v5 v5.4.2
3535
github.com/go-logr/logr v1.2.2
3636
github.com/google/uuid v1.3.0
37-
github.com/libgit2/git2go/v33 v33.0.6
38-
github.com/minio/minio-go/v7 v7.0.15
39-
github.com/onsi/gomega v1.17.0
37+
github.com/libgit2/git2go/v33 v33.0.9
38+
github.com/minio/minio-go/v7 v7.0.23
39+
github.com/onsi/gomega v1.18.1
4040
github.com/otiai10/copy v1.7.0
4141
github.com/spf13/pflag v1.0.5
4242
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd
4343
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
44-
google.golang.org/api v0.62.0
44+
google.golang.org/api v0.73.0
4545
gotest.tools v2.2.0+incompatible
4646
helm.sh/helm/v3 v3.8.1
4747
k8s.io/api v0.23.4
4848
k8s.io/apimachinery v0.23.4
4949
k8s.io/client-go v0.23.4
5050
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9
51-
sigs.k8s.io/cli-utils v0.28.0
51+
sigs.k8s.io/cli-utils v0.29.3
5252
sigs.k8s.io/controller-runtime v0.11.1
5353
sigs.k8s.io/yaml v1.3.0
5454
)
@@ -77,7 +77,9 @@ replace github.com/opencontainers/image-spec => github.com/opencontainers/image-
7777
replace github.com/containerd/containerd => github.com/containerd/containerd v1.6.1
7878

7979
require (
80-
cloud.google.com/go v0.99.0 // indirect
80+
cloud.google.com/go v0.100.2 // indirect
81+
cloud.google.com/go/compute v1.5.0 // indirect
82+
cloud.google.com/go/iam v0.1.1 // indirect
8183
github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.1 // indirect
8284
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
8385
github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0 // indirect
@@ -135,7 +137,7 @@ require (
135137
github.com/gosuri/uitable v0.0.4 // indirect
136138
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
137139
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
138-
github.com/hashicorp/go-retryablehttp v0.6.8 // indirect
140+
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
139141
github.com/huandu/xstrings v1.3.2 // indirect
140142
github.com/imdario/mergo v0.3.12 // indirect
141143
github.com/inconshreveable/mousetrap v1.0.0 // indirect
@@ -189,7 +191,7 @@ require (
189191
github.com/sosedoff/gitkit v0.3.0 // indirect
190192
github.com/spf13/cast v1.4.1 // indirect
191193
github.com/spf13/cobra v1.3.0 // indirect
192-
github.com/stretchr/testify v1.7.0 // indirect
194+
github.com/stretchr/testify v1.7.1 // indirect
193195
github.com/xanzy/ssh-agent v0.3.1 // indirect
194196
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
195197
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
@@ -202,18 +204,18 @@ require (
202204
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
203205
go.uber.org/atomic v1.7.0 // indirect
204206
go.uber.org/multierr v1.6.0 // indirect
205-
go.uber.org/zap v1.19.1 // indirect
206-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
207-
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
208-
golang.org/x/sys v0.0.0-20220224120231-95c6836cb0e7 // indirect
207+
go.uber.org/zap v1.21.0 // indirect
208+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
209+
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect
210+
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
209211
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
210212
golang.org/x/text v0.3.7 // indirect
211213
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
212214
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
213215
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
214216
google.golang.org/appengine v1.6.7 // indirect
215-
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
216-
google.golang.org/grpc v1.43.0 // indirect
217+
google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6 // indirect
218+
google.golang.org/grpc v1.45.0 // indirect
217219
google.golang.org/protobuf v1.27.1 // indirect
218220
gopkg.in/gorp.v1 v1.7.2 // indirect
219221
gopkg.in/inf.v0 v0.9.1 // indirect
@@ -225,7 +227,7 @@ require (
225227
k8s.io/apiserver v0.23.4 // indirect
226228
k8s.io/cli-runtime v0.23.4 // indirect
227229
k8s.io/component-base v0.23.4 // indirect
228-
k8s.io/klog/v2 v2.40.1 // indirect
230+
k8s.io/klog/v2 v2.50.0 // indirect
229231
k8s.io/kube-openapi v0.0.0-20220124234850-424119656bbf // indirect
230232
k8s.io/kubectl v0.23.4 // indirect
231233
oras.land/oras-go v1.1.0 // indirect

0 commit comments

Comments
 (0)