Repository: calcite-avatica-go Updated Branches: refs/heads/master 05bc78eec -> 4d019103b
Bump gokrb5 client to v2 Project: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/commit/4d019103 Tree: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/tree/4d019103 Diff: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/diff/4d019103 Branch: refs/heads/master Commit: 4d019103b9efb92e0039f9c1b79d7497b551e14b Parents: 05bc78e Author: Francis Chuang <[email protected]> Authored: Sun Nov 19 10:01:28 2017 +1100 Committer: Francis Chuang <[email protected]> Committed: Sun Nov 19 10:11:26 2017 +1100 ---------------------------------------------------------------------- Gopkg.lock | 10 +++++----- Gopkg.toml | 2 +- http_client.go | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/blob/4d019103/Gopkg.lock ---------------------------------------------------------------------- diff --git a/Gopkg.lock b/Gopkg.lock index a6dc60d..f24d8dc 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -47,7 +47,7 @@ branch = "master" name = "golang.org/x/net" packages = ["context","context/ctxhttp"] - revision = "a337091b0525af65de94df2eb7e98bd9962dcbe2" + revision = "9dfe39835686865bff950a07b394c12a98ddc811" [[projects]] name = "gopkg.in/jcmturner/aescts.v1" @@ -56,14 +56,14 @@ version = "v1.0.1" [[projects]] - name = "gopkg.in/jcmturner/gokrb5.v1" + name = "gopkg.in/jcmturner/gokrb5.v2" packages = ["asn1tools","client","config","credentials","crypto","crypto/common","crypto/etype","crypto/rfc3961","crypto/rfc3962","crypto/rfc4757","crypto/rfc8009","gssapi","iana","iana/adtype","iana/asnAppTag","iana/chksumtype","iana/errorcode","iana/etypeID","iana/flags","iana/keyusage","iana/msgtype","iana/nametype","iana/patype","keytab","krberror","messages","mstypes","ndr","pac","types"] - revision = "21f62e24b17594e14791870b83db77ad2ee14e64" - version = "v1.2.3" + revision = "5cf868a24ea32b3d89fa06004db9fcb20601f586" + version = "v2.0.2" [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "cc7360e230b5cbba34cbbdf28812a31863ab0f756519c6ae9b0e4be608fe2e27" + inputs-digest = "e02ea8ad283d26e6d437d323c8f9a0bb090bbd29f1dea8041bb5ffa81ca89e80" solver-name = "gps-cdcl" solver-version = 1 http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/blob/4d019103/Gopkg.toml ---------------------------------------------------------------------- diff --git a/Gopkg.toml b/Gopkg.toml index 0a59587..760ff6d 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -43,4 +43,4 @@ [[constraint]] name = "gopkg.in/jcmturner/gokrb5.v2" - version = "2.0.1" + version = "2.0.2" http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/blob/4d019103/http_client.go ---------------------------------------------------------------------- diff --git a/http_client.go b/http_client.go index ca4afbb..e78128a 100644 --- a/http_client.go +++ b/http_client.go @@ -31,10 +31,10 @@ import ( "github.com/xinsnake/go-http-digest-auth-client" "golang.org/x/net/context" "golang.org/x/net/context/ctxhttp" - "gopkg.in/jcmturner/gokrb5.v1/client" - "gopkg.in/jcmturner/gokrb5.v1/config" - "gopkg.in/jcmturner/gokrb5.v1/credentials" - "gopkg.in/jcmturner/gokrb5.v1/keytab" + "gopkg.in/jcmturner/gokrb5.v2/client" + "gopkg.in/jcmturner/gokrb5.v2/config" + "gopkg.in/jcmturner/gokrb5.v2/credentials" + "gopkg.in/jcmturner/gokrb5.v2/keytab" ) var (
