Skip to content

Commit 5015a60

Browse files
authored
Update azure-sdk-for-go dependencies (#836)
Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent 920dfae commit 5015a60

File tree

398 files changed

+31389
-3492
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

398 files changed

+31389
-3492
lines changed

go.mod

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ go 1.12
44

55
require (
66
github.com/appscode/go v0.0.0-20190621064509-6b292c9166e3
7-
github.com/appscode/osm v0.11.0 // indirect
87
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
98
github.com/cenkalti/backoff v2.1.1+incompatible
109
github.com/codeskyblue/go-sh v0.0.0-20190412065543-76bd3d59ff27
@@ -13,11 +12,9 @@ require (
1312
github.com/go-openapi/spec v0.19.0
1413
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
1514
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
16-
github.com/graymeta/stow v0.0.0-00010101000000-000000000000
1715
github.com/json-iterator/go v1.1.6
1816
github.com/kubernetes-csi/external-snapshotter v1.1.0
1917
github.com/mattn/go-isatty v0.0.8 // indirect
20-
github.com/ncw/swift v1.0.47 // indirect
2118
github.com/onsi/ginkgo v1.8.0
2219
github.com/onsi/gomega v1.5.0
2320
github.com/pkg/errors v0.8.1
@@ -26,34 +23,31 @@ require (
2623
github.com/sirupsen/logrus v1.4.2 // indirect
2724
github.com/smartystreets/assertions v0.0.0-20190401211740-f487f9de1cd3 // indirect
2825
github.com/spf13/afero v1.2.2
29-
github.com/spf13/cobra v0.0.4
26+
github.com/spf13/cobra v0.0.5
3027
github.com/spf13/pflag v1.0.3
3128
github.com/stretchr/testify v1.3.0
32-
golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f // indirect
33-
golang.org/x/net v0.0.0-20190522155817-f3200d17e092 // indirect
3429
gomodules.xyz/cert v1.0.0
3530
gomodules.xyz/envsubst v0.0.0-20190321051520-c745d52104af
31+
gomodules.xyz/stow v0.2.0
3632
gopkg.in/ini.v1 v1.42.0
37-
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
3833
k8s.io/api v0.0.0-20190503110853-61630f889b3c
39-
k8s.io/apiextensions-apiserver v0.0.0-20190508104225-cdabac1ba2af
34+
k8s.io/apiextensions-apiserver v0.0.0-20190516231611-bf6753f2aa24
4035
k8s.io/apimachinery v0.0.0-20190508063446-a3da69d3723c
41-
k8s.io/apiserver v0.0.0-20190508023946-fd6533a7aee7
42-
k8s.io/cli-runtime v0.0.0-20190503224301-e3a767d65843 // indirect
36+
k8s.io/apiserver v0.0.0-20190516230822-f89599b3f645
4337
k8s.io/client-go v11.0.0+incompatible
4438
k8s.io/kube-aggregator v0.0.0-20190508104018-6d3d96b06d29
4539
k8s.io/kube-openapi v0.0.0-20190502190224-411b2483e503
4640
k8s.io/kubernetes v1.14.1
47-
kmodules.xyz/client-go v0.0.0-20190524133821-9c8a87771aea
48-
kmodules.xyz/custom-resources v0.0.0-20190225012057-ed1c15a0bbda
49-
kmodules.xyz/objectstore-api v0.0.0-20190506085934-94c81c8acca9
50-
kmodules.xyz/offshoot-api v0.0.0-20190527055803-91d8460d2992
41+
kmodules.xyz/client-go v0.0.0-20190715080709-7162a6c90b04
42+
kmodules.xyz/custom-resources v0.0.0-20190508103408-464e8324c3ec
43+
kmodules.xyz/objectstore-api v0.0.0-20190715131036-28ef070833ef
44+
kmodules.xyz/offshoot-api v0.0.0-20190715115723-36c8fce142c1
5145
kmodules.xyz/openshift v0.0.0-20190508141315-99ec9fc946bf
52-
kmodules.xyz/webhook-runtime v0.0.0-20190508093950-b721b4eba5e5
46+
kmodules.xyz/webhook-runtime v0.0.0-20190715115250-a84fbf77dd30
5347
)
5448

5549
replace (
56-
github.com/graymeta/stow => github.com/appscode/stow v0.0.0-20190506085026-ca5baa008ea3
50+
github.com/Azure/go-autorest => github.com/Azure/go-autorest/autorest v0.5.0
5751
k8s.io/api => k8s.io/api v0.0.0-20190313235455-40a48860b5ab
5852
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190315093550-53c4693659ed
5953
k8s.io/apimachinery => github.com/kmodules/apimachinery v0.0.0-20190508045248-a52a97a7a2bf

go.sum

Lines changed: 86 additions & 105 deletions
Large diffs are not rendered by default.

pkg/controller/repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package controller
22

33
import (
44
"github.com/golang/glog"
5-
"github.com/graymeta/stow"
5+
"gomodules.xyz/stow"
66
"k8s.io/apimachinery/pkg/runtime"
77
"k8s.io/apimachinery/pkg/runtime/schema"
88
core_util "kmodules.xyz/client-go/core/v1"

test/e2e/framework/repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"strconv"
66

77
"github.com/appscode/go/crypto/rand"
8-
"github.com/graymeta/stow"
98
. "github.com/onsi/gomega"
9+
"gomodules.xyz/stow"
1010
apps "k8s.io/api/apps/v1"
1111
core "k8s.io/api/core/v1"
1212
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/contrib.go.opencensus.io/exporter/ocagent/CONTRIBUTING.md

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/contrib.go.opencensus.io/exporter/ocagent/LICENSE

Lines changed: 201 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/contrib.go.opencensus.io/exporter/ocagent/README.md

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)