Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
- github.com/aws/aws-sdk-go to version 1.44.61.
- github.com/cheggaaa/pb/v3 to version 3.1.0.
- github.com/evanphx/json-patch to version v5.6.0+incompatible.
- github.com/imdario/mergo to version 0.3.13.
- github.com/stretchr/testify to version 1.8.0.
- go.mozilla.org/sops/v3 to version 3.7.3.
- golang.org/x/oauth2 to version 0.0.0-20220722155238-128564f6959c.
- golang.org/x/sys to version 0.0.0-20220722155257-8c9f86f7a55f.
- golang.org/x/time to version 0.0.0-20220722155302-e5dcc9cfc0b9.
- github.com/docker/distribution to version v2.8.1+incompatible.
- k8s.io/api to version v0.21.14.
- k8s.io/apiextensions-apiserver to version v0.21.14.
- k8s.io/apimachinery to version v0.21.14.
- k8s.io/client-go to version v0.21.14.
- k8s.io/code-generator to version v0.21.14.
- github.com/google/go-containerregistry to version 0.11.0.
- github.com/spf13/cobra to version v1.4.0.

Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
  • Loading branch information
Paulo Gomes committed Jul 25, 2022
1 parent e142f6d commit 5f7983c
Show file tree
Hide file tree
Showing 2 changed files with 622 additions and 368 deletions.
54 changes: 25 additions & 29 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,9 @@ module github.com/fluxcd/flux

go 1.16

// remove when https://github.com/docker/distribution/pull/2905 is released.
// Update: on 2021-02-25 this has been merged, 2.7.2 should include it soon!
replace github.com/docker/distribution => github.com/fluxcd/distribution v0.0.0-20190419185413-6c9727e5e5de

// fix go-autorest ambiguous import caused by sops
// sops needs to update their deps ref: https://github.com/kubernetes/client-go/issues/628
// replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.2.0+incompatible

// transitive requirement from Helm Operator
replace (
github.com/docker/distribution => github.com/docker/distribution v2.8.1+incompatible
github.com/docker/docker => github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0
github.com/fluxcd/helm-operator => github.com/fluxcd/helm-operator v1.4.0
github.com/fluxcd/helm-operator/pkg/install => github.com/fluxcd/helm-operator/pkg/install v0.0.0-20200213151218-f7e487142b46
Expand All @@ -20,60 +13,63 @@ replace (
// dgrijalva/jwt-go is no longer maintained, replacing with a fork which is community maintained.
replace github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt v3.2.2+incompatible

// Pin kubernetes dependencies to 1.21.3
// Pin kubernetes dependencies to 1.21.14
replace (
k8s.io/api => k8s.io/api v0.21.3
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.21.3
k8s.io/apimachinery => k8s.io/apimachinery v0.21.3
k8s.io/client-go => k8s.io/client-go v0.21.3
k8s.io/code-generator => k8s.io/code-generator v0.21.3
k8s.io/api => k8s.io/api v0.21.14
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.21.14
k8s.io/apimachinery => k8s.io/apimachinery v0.21.14
k8s.io/client-go => k8s.io/client-go v0.21.14
k8s.io/code-generator => k8s.io/code-generator v0.21.14
)

// Version v1.5.0 breaks make test
replace github.com/spf13/cobra => github.com/spf13/cobra v1.4.0

// github.com/fluxcd/flux/pkg/install lives in this very repository, so use that
replace github.com/fluxcd/flux/pkg/install => ./pkg/install

require (
github.com/Azure/azure-sdk-for-go v38.0.0+incompatible // indirect
github.com/Jeffail/gabs v1.4.0
github.com/Masterminds/semver/v3 v3.1.1
github.com/aws/aws-sdk-go v1.43.27
github.com/aws/aws-sdk-go v1.44.61
github.com/bradfitz/gomemcache v0.0.0-20220106215444-fb4bf637b56d
github.com/cheggaaa/pb/v3 v3.0.8
github.com/cheggaaa/pb/v3 v3.1.0
github.com/docker/distribution v2.8.1+incompatible
github.com/evanphx/json-patch v4.11.0+incompatible
github.com/evanphx/json-patch v5.6.0+incompatible
github.com/fluxcd/flux/pkg/install v0.0.0-00010101000000-000000000000
github.com/fluxcd/helm-operator v1.4.2
github.com/ghodss/yaml v1.0.0
github.com/go-kit/kit v0.12.0
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f
github.com/google/go-containerregistry v0.8.0
github.com/google/go-containerregistry v0.11.0
github.com/google/go-github/v28 v28.1.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/imdario/mergo v0.3.12
github.com/imdario/mergo v0.3.13
github.com/opencontainers/go-digest v1.0.0
github.com/opentracing-contrib/go-stdlib v1.0.0 // indirect
github.com/pkg/errors v0.9.1
github.com/pkg/term v1.1.0
github.com/prometheus/client_golang v1.12.2
github.com/prometheus/client_model v0.2.0
github.com/ryanuber/go-glob v1.0.0
github.com/spf13/cobra v1.3.0
github.com/spf13/cobra v1.5.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.1
github.com/stretchr/testify v1.8.0
// Latest versions of github.com/weaveworks/common are not supporterd by Flux.
github.com/weaveworks/common v0.0.0-20190410110702-87611edc252e
github.com/weaveworks/go-checkpoint v0.0.0-20220223124739-fd9899e2b4f2
github.com/whilp/git-urls v1.0.0
github.com/xeipuuv/gojsonschema v1.2.0
go.mozilla.org/sops/v3 v3.7.2
go.mozilla.org/sops/v3 v3.7.3
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a
golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.21.3
k8s.io/apiextensions-apiserver v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/api v0.21.14
k8s.io/apiextensions-apiserver v0.21.14
k8s.io/apimachinery v0.21.14
k8s.io/client-go v11.0.0+incompatible
k8s.io/klog v1.0.0
)
Loading

0 comments on commit 5f7983c

Please sign in to comment.