Skip to content

Commit 0f22659

Browse files
authored
Merge pull request #156 from netlify/fix-text-error-bug
Fix text error bug
2 parents 60bfa0c + 03ec071 commit 0f22659

File tree

4 files changed

+176
-152
lines changed

4 files changed

+176
-152
lines changed

go.mod

Lines changed: 14 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,26 @@ module github.com/netlify/open-api
33
go 1.12
44

55
require (
6-
contrib.go.opencensus.io/exporter/ocagent v0.4.6 // indirect
7-
github.com/Azure/go-autorest v11.5.0+incompatible
8-
github.com/BurntSushi/toml v0.3.1 // indirect
9-
github.com/PuerkitoBio/purell v1.1.1 // indirect
6+
contrib.go.opencensus.io/exporter/ocagent v0.4.12 // indirect
7+
github.com/Azure/go-autorest v12.0.0+incompatible
108
github.com/cenkalti/backoff v2.1.1+incompatible
119
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
12-
github.com/go-openapi/analysis v0.18.0 // indirect
13-
github.com/go-openapi/errors v0.18.0
14-
github.com/go-openapi/inflect v0.18.0 // indirect
15-
github.com/go-openapi/jsonpointer v0.18.0 // indirect
16-
github.com/go-openapi/jsonreference v0.18.0 // indirect
17-
github.com/go-openapi/loads v0.18.0 // indirect
18-
github.com/go-openapi/runtime v0.0.0-20180920151709-cdfa0fc2fd5 // TODO: temporarily floating https://github.com/go-openapi/runtime/pull/131 update to > 0.18.0 once it is released
19-
github.com/go-openapi/spec v0.18.0 // indirect
20-
github.com/go-openapi/strfmt v0.18.0
21-
github.com/go-openapi/swag v0.18.0
22-
github.com/go-openapi/validate v0.18.0
23-
github.com/go-swagger/go-swagger v0.18.0
10+
github.com/go-openapi/errors v0.19.0
11+
github.com/go-openapi/inflect v0.19.0 // indirect
12+
github.com/go-openapi/runtime v0.19.0
13+
github.com/go-openapi/strfmt v0.19.0
14+
github.com/go-openapi/swag v0.19.0
15+
github.com/go-openapi/validate v0.19.0
16+
github.com/go-swagger/go-swagger v0.19.0
2417
github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013 // indirect
25-
github.com/google/uuid v1.1.1 // indirect
2618
github.com/gorilla/handlers v1.4.0 // indirect
2719
github.com/jessevdk/go-flags v1.4.0 // indirect
28-
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
29-
github.com/kr/pretty v0.1.0 // indirect
30-
github.com/kyoh86/richgo v0.3.0
31-
github.com/kyoh86/xdg v1.0.0 // indirect
32-
github.com/mailru/easyjson v0.0.0-20190221075403-6243d8e04c3f // indirect
33-
github.com/mattn/go-isatty v0.0.6 // indirect
20+
github.com/kyoh86/richgo v0.3.1
3421
github.com/rsc/goversion v1.2.0
35-
github.com/sirupsen/logrus v1.3.0
36-
github.com/spf13/afero v1.2.1 // indirect
37-
github.com/spf13/viper v1.3.1 // indirect
22+
github.com/sirupsen/logrus v1.4.1
23+
github.com/spf13/viper v1.3.2 // indirect
3824
github.com/stretchr/testify v1.3.0
3925
github.com/toqueteos/webbrowser v1.1.0 // indirect
40-
go.opencensus.io v0.19.0 // indirect
41-
golang.org/x/crypto v0.0.0-20190225124518-7f87c0fbb88b // indirect
42-
golang.org/x/net v0.0.0-20190226215741-afe646ca25a4
43-
golang.org/x/sys v0.0.0-20190226215855-775f8194d0f9 // indirect
44-
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2 // indirect
45-
golang.org/x/tools v0.0.0-20190114222345-bf090417da8b // indirect
26+
golang.org/x/net v0.0.0-20190415214537-1da14a5a36f2
27+
golang.org/x/tools v0.0.0-20190418235243-4796d4bd3df0 // indirect
4628
)

0 commit comments

Comments
 (0)