-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update Go version and skipper dependency (#546)
Signed-off-by: Sandor Szücs <[email protected]> Signed-off-by: Sandor Szücs <[email protected]>
- Loading branch information
Showing
2 changed files
with
82 additions
and
1,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,89 @@ | ||
module github.com/zalando-incubator/kube-ingress-aws-controller | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect | ||
github.com/aws/aws-sdk-go v1.44.89 | ||
github.com/dchest/siphash v1.2.3 // indirect | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-playground/universal-translator v0.17.0 // indirect | ||
github.com/go-redis/redis/v8 v8.11.5 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect | ||
github.com/google/go-cmp v0.5.8 | ||
github.com/google/uuid v1.3.0 | ||
github.com/linki/instrumented_http v0.3.0 | ||
github.com/mweagle/go-cloudformation v0.0.0-20210117063902-00aa242fdc67 | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/zalando/skipper v0.13.245 | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
k8s.io/api v0.22.5 | ||
k8s.io/apimachinery v0.22.5 | ||
k8s.io/client-go v0.22.5 | ||
) | ||
|
||
require ( | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect | ||
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dchest/siphash v1.2.3 // indirect | ||
github.com/dgryski/go-jump v0.0.0-20211018200510-ba001c3ffce0 // indirect | ||
github.com/dgryski/go-mpchash v0.0.0-20200819201138-7382f34c4cd1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/evanphx/json-patch v4.11.0+incompatible // indirect | ||
github.com/go-logr/logr v1.2.2 // indirect | ||
github.com/go-playground/locales v0.13.0 // indirect | ||
github.com/go-playground/universal-translator v0.17.0 // indirect | ||
github.com/go-redis/redis/v9 v9.0.0-beta.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/instana/go-sensor v1.41.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/linki/instrumented_http v0.3.0 | ||
github.com/lufia/plan9stats v0.0.0-20220326011226-f1430873d8db // indirect | ||
github.com/mweagle/go-cloudformation v0.0.0-20210117063902-00aa242fdc67 | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/opencontainers/runc v1.1.3 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect | ||
github.com/pquerna/cachecontrol v0.1.0 // indirect | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/shirou/gopsutil/v3 v3.22.3 // indirect | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/tidwall/gjson v1.14.0 // indirect | ||
github.com/zalando/skipper v0.13.231 | ||
golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29 // indirect | ||
golang.org/x/net v0.0.0-20220403103023-749bd193bc2b // indirect | ||
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8 // indirect | ||
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect | ||
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect | ||
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // 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-20210723032227-1f47c861a9ac // indirect | ||
golang.org/x/tools v0.1.10 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220401170504-314d38edb7de // indirect | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
google.golang.org/grpc v1.45.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect | ||
gopkg.in/go-playground/validator.v9 v9.31.0 // indirect | ||
k8s.io/api v0.22.5 | ||
k8s.io/apimachinery v0.22.5 | ||
k8s.io/client-go v0.22.5 | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/klog/v2 v2.30.0 // indirect | ||
k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c // indirect | ||
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect | ||
sigs.k8s.io/yaml v1.2.0 // indirect | ||
) | ||
|
||
replace github.com/go-redis/redis/v9 => github.com/szuecs/redis/v9 v9.0.0-beta.1.0.20220801200609-6f7f800107ba |
Oops, something went wrong.