-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from rebuy-de/update-dependencies
Use Go 1.17 & update dependencies
- Loading branch information
Showing
6 changed files
with
495 additions
and
149 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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ set -euo pipefail | |
|
||
cd $(dirname "$0") | ||
|
||
VERSION="v3.6.0" | ||
VERSION="v3.8.0" | ||
|
||
get_arch() { | ||
ARCH=$(uname -m) | ||
|
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,34 +1,136 @@ | ||
module github.com/rebuy-de/rebuy-go-sdk/v3 | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/alicebob/miniredis/v2 v2.14.3 | ||
github.com/aws/aws-sdk-go-v2 v1.2.1 | ||
github.com/aws/aws-sdk-go-v2/config v1.1.2 | ||
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.0.3 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.2.1 | ||
github.com/alicebob/miniredis/v2 v2.15.1 | ||
github.com/aws/aws-sdk-go-v2 v1.8.1 | ||
github.com/aws/aws-sdk-go-v2/config v1.6.1 | ||
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.4.1 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.13.0 | ||
github.com/gemnasium/logrus-graylog-hook/v3 v3.0.3-0.20200102145508-77cfe19be954 | ||
github.com/go-redis/redis/v8 v8.7.1 | ||
github.com/go-redis/redis/v8 v8.11.3 | ||
github.com/gobuffalo/packr/v2 v2.8.1 | ||
github.com/google/go-github/v32 v32.1.0 | ||
github.com/google/uuid v1.2.0 | ||
github.com/goreleaser/nfpm/v2 v2.3.1 | ||
github.com/google/go-github/v38 v38.1.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/goreleaser/nfpm/v2 v2.6.0 | ||
github.com/gorilla/securecookie v1.1.1 | ||
github.com/gorilla/sessions v1.2.1 | ||
github.com/hashicorp/vault/api v1.1.0 | ||
github.com/hashicorp/vault/api v1.1.1 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/mitchellh/mapstructure v1.4.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/prometheus/client_golang v0.9.3 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/tidwall/pretty v1.1.0 | ||
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84 | ||
github.com/tidwall/pretty v1.2.0 | ||
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
golang.org/x/tools v0.1.0 | ||
golang.org/x/tools v0.1.5 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/client-go v0.20.4 | ||
k8s.io/client-go v0.22.1 | ||
) | ||
|
||
require ( | ||
github.com/AlekSi/pointer v1.1.0 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/Masterminds/sprig v2.22.0+incompatible // indirect | ||
github.com/Microsoft/go-winio v0.4.16 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20210512092938-c05353c2d58c // indirect | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.3.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.4.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.2.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.2.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.2.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.5.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.3.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.6.2 // indirect | ||
github.com/aws/smithy-go v1.7.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb // indirect | ||
github.com/cavaliercoder/go-cpio v0.0.0-20180626203310-925f9528c45e // indirect | ||
github.com/cenkalti/backoff/v3 v3.0.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
github.com/go-git/gcfg v1.5.0 // indirect | ||
github.com/go-git/go-billy/v5 v5.1.0 // indirect | ||
github.com/go-git/go-git/v5 v5.3.0 // indirect | ||
github.com/go-logr/logr v0.4.0 // indirect | ||
github.com/gobuffalo/logger v1.0.3 // indirect | ||
github.com/gobuffalo/packd v1.0.0 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/rpmpack v0.0.0-20210410105602-e20c988a6f5a // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/goreleaser/chglog v0.1.2 // indirect | ||
github.com/goreleaser/fileglob v1.2.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.6.6 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/vault/sdk v0.2.1 // indirect | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/karrick/godirwalk v1.15.8 // indirect | ||
github.com/kevinburke/ssh_config v1.1.0 // indirect | ||
github.com/markbates/errx v1.1.0 // indirect | ||
github.com/markbates/oncer v1.0.0 // indirect | ||
github.com/markbates/safe v1.0.1 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/mitchellh/copystructure v1.1.2 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect | ||
github.com/pierrec/lz4 v2.5.2+incompatible // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.26.0 // indirect | ||
github.com/prometheus/procfs v0.6.0 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/sassoftware/go-rpmutils v0.0.0-20190420191620-a8f1baeba37b // indirect | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/ulikunitz/xz v0.5.9 // indirect | ||
github.com/xanzy/ssh-agent v0.3.0 // indirect | ||
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect | ||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect | ||
golang.org/x/mod v0.4.2 // indirect | ||
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023 // indirect | ||
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/square/go-jose.v2 v2.5.1 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
k8s.io/api v0.22.1 // indirect | ||
k8s.io/apimachinery v0.22.1 // indirect | ||
k8s.io/klog/v2 v2.9.0 // indirect | ||
k8s.io/utils v0.0.0-20210707171843-4b05e18ac7d9 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect | ||
sigs.k8s.io/yaml v1.2.0 // indirect | ||
) |
Oops, something went wrong.