Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minio-go dependency to v6.0.53 #3549

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 27 additions & 7 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ go_repository(
go_repository(
name = "com_github_jtolds_gls",
importpath = "github.com/jtolds/gls",
tag = "v4.2.1",
tag = "v4.20.0",
)

go_repository(
Expand Down Expand Up @@ -504,14 +504,16 @@ go_repository(

go_repository(
name = "com_github_minio_minio_go",
importpath = "github.com/minio/minio-go",
tag = "v6.0.14",
importpath = "github.com/minio/minio-go/v6",
remote = "https://github.com/minio/minio-go",
tag = "v6.0.53",
vcs = "git",
)

go_repository(
name = "com_github_mitchellh_go_homedir",
commit = "3864e76763d9",
importpath = "github.com/mitchellh/go-homedir",
tag = "v1.1.0",
)

go_repository(
Expand Down Expand Up @@ -595,7 +597,7 @@ go_repository(
go_repository(
name = "com_github_sirupsen_logrus",
importpath = "github.com/sirupsen/logrus",
tag = "v1.0.6",
tag = "v1.5.0",
)

go_repository(
Expand All @@ -606,7 +608,7 @@ go_repository(

go_repository(
name = "com_github_smartystreets_goconvey",
commit = "044398e4856c",
commit = "68dc04aab96a",
importpath = "github.com/smartystreets/goconvey",
)

Expand Down Expand Up @@ -721,7 +723,7 @@ go_repository(
go_repository(
name = "in_gopkg_ini_v1",
importpath = "gopkg.in/ini.v1",
tag = "v1.39.3",
tag = "v1.42.0",
)

go_repository(
Expand Down Expand Up @@ -1079,3 +1081,21 @@ go_repository(
commit = "ec6baeebcd10",
importpath = "github.com/peterhellberg/duration",
)

go_repository(
name = "com_github_dustin_go_humanize",
importpath = "github.com/dustin/go-humanize",
tag = "v1.0.0",
)

go_repository(
name = "com_github_konsorten_go_windows_terminal_sequences",
importpath = "github.com/konsorten/go-windows-terminal-sequences",
tag = "v1.0.1",
)

go_repository(
name = "com_github_minio_sha256_simd",
importpath = "github.com/minio/sha256-simd",
tag = "v0.1.1",
)
4 changes: 2 additions & 2 deletions backend/src/apiserver/client/minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (

"github.com/cenkalti/backoff"
"github.com/golang/glog"
minio "github.com/minio/minio-go"
credentials "github.com/minio/minio-go/pkg/credentials"
"github.com/minio/minio-go/v6"
"github.com/minio/minio-go/v6/pkg/credentials"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion backend/src/apiserver/client_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/kubeflow/pipelines/backend/src/apiserver/model"
"github.com/kubeflow/pipelines/backend/src/apiserver/storage"
"github.com/kubeflow/pipelines/backend/src/common/util"
"github.com/minio/minio-go"
"github.com/minio/minio-go/v6"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion backend/src/apiserver/storage/minio_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package storage
import (
"io"

minio "github.com/minio/minio-go"
"github.com/minio/minio-go/v6"
)

// Create interface for minio client struct, making it more unit testable.
Expand Down
2 changes: 1 addition & 1 deletion backend/src/apiserver/storage/minio_client_fake.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"bytes"
"io"

"github.com/minio/minio-go"
"github.com/minio/minio-go/v6"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion backend/src/apiserver/storage/object_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/ghodss/yaml"
"github.com/kubeflow/pipelines/backend/src/common/util"
minio "github.com/minio/minio-go"
"github.com/minio/minio-go/v6"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion backend/src/apiserver/storage/object_store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"testing"

"github.com/kubeflow/pipelines/backend/src/common/util"
minio "github.com/minio/minio-go"
"github.com/minio/minio-go/v6"
"github.com/pkg/errors"
"github.com/stretchr/testify/assert"
"google.golang.org/grpc/codes"
Expand Down
9 changes: 2 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,11 @@ require (
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
github.com/jinzhu/now v0.0.0-20181116074157-8ec929ed50c3 // indirect
github.com/json-iterator/go v0.0.0-20180701071628-ab8a2e0c74be // indirect
github.com/jtolds/gls v4.2.1+incompatible // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/lib/pq v1.0.0 // indirect
github.com/mattbaird/jsonpatch v0.0.0-20171005235357-81af80346b1a // indirect
github.com/mattn/go-sqlite3 v1.9.0
github.com/minio/minio-go v6.0.14+incompatible
github.com/mitchellh/go-homedir v0.0.0-20180523094522-3864e76763d9 // indirect
github.com/minio/minio-go/v6 v6.0.53
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/onsi/ginkgo v1.7.0 // indirect
Expand All @@ -58,9 +56,7 @@ require (
github.com/pkg/errors v0.8.0
github.com/prometheus/client_golang v0.9.2 // indirect
github.com/robfig/cron v0.0.0-20180505203441-b41be1df6967
github.com/sirupsen/logrus v1.0.6
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c // indirect
github.com/sirupsen/logrus v1.5.0
github.com/spf13/viper v1.3.0
github.com/stretchr/testify v1.3.0
github.com/valyala/bytebufferpool v1.0.0 // indirect
Expand All @@ -78,7 +74,6 @@ require (
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.39.3 // indirect
gopkg.in/yaml.v2 v2.2.2
k8s.io/api v0.0.0-20180712090710-2d6f90ab1293
k8s.io/apiextensions-apiserver v0.0.0-20190103235604-e7617803aceb // indirect
Expand Down
20 changes: 20 additions & 0 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.