Skip to content

Commit c417f66

Browse files
committed
go.mod: update dependencies
Update all the updatable dependencies
1 parent 2994ee5 commit c417f66

File tree

6 files changed

+417
-132
lines changed

6 files changed

+417
-132
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For an introduction to stolon you can also take a look at [this post](https://sg
1717
* Leverages PostgreSQL streaming replication.
1818
* Resilient to any kind of partitioning. While trying to keep the maximum availability, it prefers consistency over availability.
1919
* [kubernetes integration](examples/kubernetes/README.md) letting you achieve postgreSQL high availability.
20-
* Uses a cluster store like [etcd](https://github.com/coreos/etcd), [consul](https://www.consul.io) or kubernetes API server as an high available data store and for leader election
20+
* Uses a cluster store like [etcd](https://etcd.io), [consul](https://www.consul.io) or kubernetes API server as an high available data store and for leader election
2121
* Asynchronous (default) and [synchronous](doc/syncrepl.md) replication.
2222
* Full cluster setup in minutes.
2323
* Easy [cluster admininistration](doc/stolonctl.md)

go.mod

Lines changed: 18 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,29 @@
11
module github.com/sorintlab/stolon
22

33
require (
4-
github.com/Azure/go-autorest v9.10.0+incompatible // indirect
5-
github.com/PuerkitoBio/purell v1.1.0 // indirect
6-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
7-
github.com/coreos/bbolt v1.3.2 // indirect
8-
github.com/coreos/etcd v3.3.13+incompatible
9-
github.com/coreos/go-semver v0.0.0-20150725033620-d043ae190b32 // indirect
10-
github.com/coreos/go-systemd v0.0.0-20181004131557-b14d3eb023cc // indirect
11-
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
12-
github.com/cpuguy83/go-md2man v1.0.8 // indirect
4+
// force github.com/coreos/etcd to v3.3.18 that doesn't use github.com/ugorji/go
5+
github.com/coreos/etcd v3.3.18+incompatible // indirect
136
github.com/davecgh/go-spew v1.1.1
14-
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
157
github.com/docker/leadership v0.1.0
168
github.com/docker/libkv v0.2.1
17-
github.com/emicklei/go-restful v2.5.0+incompatible // indirect
18-
github.com/emicklei/go-restful-swagger12 v0.0.0-20170208215640-dcef7f557305 // indirect
199
github.com/evanphx/json-patch v4.5.0+incompatible
20-
github.com/go-openapi/jsonpointer v0.0.0-20170102174223-779f45308c19 // indirect
21-
github.com/go-openapi/jsonreference v0.0.0-20161105162150-36d33bfe519e // indirect
22-
github.com/go-openapi/spec v0.0.0-20180131233152-f3499b5df538 // indirect
23-
github.com/go-openapi/swag v0.0.0-20180102232305-84f4bee7c0a6 // indirect
24-
github.com/gogo/protobuf v1.2.0 // indirect
25-
github.com/golang/groupcache v0.0.0-20180203143532-66deaeb636df // indirect
26-
github.com/golang/mock v1.1.1
27-
github.com/golang/protobuf v1.3.1 // indirect
28-
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
29-
github.com/googleapis/gnostic v0.1.0 // indirect
30-
github.com/gophercloud/gophercloud v0.0.0-20190410012400-2c55d17f707c // indirect
31-
github.com/gorilla/websocket v1.4.0 // indirect
32-
github.com/gregjones/httpcache v0.0.0-20171119193500-2bcd89a1743f // indirect
33-
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect
34-
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
35-
github.com/grpc-ecosystem/grpc-gateway v1.8.5 // indirect
36-
github.com/hashicorp/consul/api v1.2.0
37-
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c // indirect
38-
github.com/imdario/mergo v0.0.0-20141206190957-6633656539c1 // indirect
39-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
40-
github.com/jonboulle/clockwork v0.1.0 // indirect
41-
github.com/json-iterator/go v1.1.6 // indirect
42-
github.com/juju/ratelimit v1.0.1 // indirect
43-
github.com/kballard/go-shellquote v0.0.0-20140719004912-e5c918b80c17 // indirect
44-
github.com/lib/pq v0.0.0-20160831222520-50761b0867bd
45-
github.com/mailru/easyjson v0.0.0-20171120080333-32fa128f234d // indirect
46-
github.com/mattn/go-isatty v0.0.3
47-
github.com/mitchellh/copystructure v0.0.0-20161013195342-5af94aef99f5
48-
github.com/mitchellh/reflectwalk v0.0.0-20170726202117-63d60e9d0dbc // indirect
49-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
50-
github.com/modern-go/reflect2 v1.0.1 // indirect
51-
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
52-
github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829
53-
github.com/russross/blackfriday v1.5.1 // indirect
54-
github.com/satori/go.uuid v1.1.0
10+
github.com/golang/mock v1.4.0
11+
github.com/hashicorp/consul/api v1.4.0
12+
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
13+
github.com/lib/pq v1.3.0
14+
github.com/mattn/go-isatty v0.0.12
15+
github.com/mitchellh/copystructure v1.0.0
16+
github.com/prometheus/client_golang v1.4.1
17+
github.com/satori/go.uuid v1.2.0
5518
github.com/sgotti/gexpect v0.0.0-20161123102107-0afc6c19f50a
56-
github.com/soheilhy/cmux v0.1.4 // indirect
57-
github.com/sorintlab/pollon v0.0.0-20171012155008-1475a2b45268
58-
github.com/sorintlab/tcpkeepalive v0.2.0 // indirect
59-
github.com/spf13/cobra v0.0.0-20171204131325-de2d9c4eca8f
60-
github.com/spf13/pflag v1.0.0
61-
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
62-
github.com/xiang90/probing v0.0.0-20160813154853-07dd2e8dfe18 // indirect
63-
go.etcd.io/bbolt v1.3.3 // indirect
64-
go.uber.org/atomic v1.3.1 // indirect
65-
go.uber.org/zap v1.4.1
66-
golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect
67-
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421 // indirect
68-
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 // indirect
69-
google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19 // indirect
70-
google.golang.org/grpc v1.19.1 // indirect
71-
gopkg.in/inf.v0 v0.9.0 // indirect
72-
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0 // indirect
73-
k8s.io/api v0.0.0-20171026120857-4df58c811fe2
74-
k8s.io/apimachinery v0.0.0-20170925234155-019ae5ada31d
75-
k8s.io/client-go v0.0.0-20171026121518-35ccd4336052
76-
k8s.io/kube-openapi v0.0.0-20180201014056-275e2ce91dec // indirect
19+
github.com/sorintlab/pollon v0.0.0-20181009091703-248c68238c16
20+
github.com/spf13/cobra v0.0.5
21+
github.com/spf13/pflag v1.0.5
22+
go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738
23+
go.uber.org/zap v1.13.0
24+
k8s.io/api v0.17.3
25+
k8s.io/apimachinery v0.17.3
26+
k8s.io/client-go v0.17.3
7727
)
7828

7929
go 1.12

0 commit comments

Comments
 (0)