Skip to content

Commit ef375c9

Browse files
committed
update gin dependency because of gin-gonic/gin#1571
The output of GIN debug was redirected to stderr instead of stdout
1 parent 83466da commit ef375c9

File tree

2 files changed

+134
-10
lines changed

2 files changed

+134
-10
lines changed

go.mod

+14-10
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,18 @@ require (
1818
github.com/getlantern/hidden v0.0.0-20190325191715-f02dbb02be55
1919
github.com/getlantern/ops v0.0.0-20190325191751-d70cb0d6f85f
2020
github.com/getlantern/systray v0.0.0-20200109124156-9abdfb6448b3
21-
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7
22-
github.com/gin-gonic/gin v1.3.0
21+
github.com/gin-contrib/sse v0.1.0
22+
github.com/gin-gonic/gin v1.6.3
2323
github.com/go-ini/ini v1.39.0
2424
github.com/go-ole/go-ole v1.2.1
25+
github.com/go-playground/validator/v10 v10.4.1 // indirect
2526
github.com/go-stack/stack v1.8.0
26-
github.com/golang/protobuf v0.0.0-20170601230230-5a0f697c9ed9
27+
github.com/golang/protobuf v1.4.3
2728
github.com/googollee/go-engine.io v0.0.0-20180829091931-e2f255711dcb
2829
github.com/googollee/go-socket.io v0.0.0-20181101151912-c8aeb1ed9b49
2930
github.com/gorilla/websocket v1.4.0
3031
github.com/itsjamie/gin-cors v0.0.0-20160420130702-97b4a9da7933
31-
github.com/json-iterator/go v0.0.0-20170829155851-36b14963da70
32+
github.com/json-iterator/go v1.1.10
3233
github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5
3334
github.com/kardianos/osext v0.0.0-20170510131534-ae77be60afb1
3435
github.com/konsorten/go-windows-terminal-sequences v1.0.1
@@ -37,10 +38,12 @@ require (
3738
github.com/lxn/walk v0.0.0-20191128110447-55ccb3a9f5c1
3839
github.com/lxn/win v0.0.0-20191128105842-2da648fda5b4
3940
github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d
40-
github.com/mattn/go-isatty v0.0.2-0.20170307163044-57fdcb988a5c
41+
github.com/mattn/go-isatty v0.0.12
4142
github.com/mattn/go-shellwords v1.0.3
4243
github.com/miekg/dns v1.0.15
4344
github.com/mitchellh/go-homedir v1.0.0
45+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
46+
github.com/modern-go/reflect2 v1.0.1 // indirect
4447
github.com/oleksandr/bonjour v0.0.0-20160508152359-5dcf00d8b228
4548
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c
4649
github.com/pkg/errors v0.8.0
@@ -50,21 +53,22 @@ require (
5053
github.com/sfreiberg/simplessh v0.0.0-20180301191542-495cbb862a9c
5154
github.com/sirupsen/logrus v1.2.0
5255
github.com/skratchdot/open-golang v0.0.0-20160302144031-75fb7ed4208c
53-
github.com/stretchr/testify v1.3.0
54-
github.com/ugorji/go v0.0.0-20170215201144-c88ee250d022
56+
github.com/stretchr/testify v1.4.0
57+
github.com/ugorji/go v1.2.0
5558
github.com/xrash/smetrics v0.0.0-20170218160415-a3153f7040e9
5659
github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea
5760
go.bug.st/downloader v0.0.0-20181116113543-9b8976a44d87
5861
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45
5962
goa.design/goa v1.0.1-0.20190116060309-40843d63b0e4
60-
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
63+
golang.org/x/crypto v0.0.0-20201124201722-c8d3bf9c5392
6164
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
6265
golang.org/x/net v0.0.0-20190620200207-3b0461eec859
63-
golang.org/x/sys v0.0.0-20200107162124-548cf772de50
66+
golang.org/x/sys v0.0.0-20201202213521-69691e467435
6467
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7
68+
google.golang.org/protobuf v1.25.0 // indirect
6569
gopkg.in/Knetic/govaluate.v3 v3.0.0
6670
gopkg.in/go-playground/validator.v8 v8.18.1
6771
gopkg.in/h2non/filetype.v1 v1.0.5
6872
gopkg.in/inconshreveable/go-update.v0 v0.0.0-20150814200126-d8b0b1d421aa
69-
gopkg.in/yaml.v2 v2.2.2
73+
gopkg.in/yaml.v2 v2.4.0
7074
)

0 commit comments

Comments
 (0)