Skip to content

Commit

Permalink
Merge pull request #81 from github/update_go_module_dependencies
Browse files Browse the repository at this point in the history
Update go dependencies
  • Loading branch information
Nick Canzoneri authored Sep 30, 2020
2 parents bbf7d16 + 4792155 commit b448aa7
Show file tree
Hide file tree
Showing 4 changed files with 348 additions and 23 deletions.
2 changes: 1 addition & 1 deletion es.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ func (s ShardOverlap) isReplicaShard(shard Shard) bool {
}

func (c *Client) getAgent(method, path string) *gorequest.SuperAgent {
agent := gorequest.New().Set("Accept", "application/json")
agent := gorequest.New().Set("Accept", "application/json").Set("Content-Type", "application/json")
agent.Method = method

var protocol string
Expand Down
36 changes: 24 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,25 +1,37 @@
module github.com/github/vulcanizer

go 1.13
go 1.15

require (
github.com/coreos/go-etcd v2.0.0+incompatible // indirect
github.com/cpuguy83/go-md2man v1.0.10 // indirect
github.com/elazarl/goproxy v0.0.0-20191011121108-aa519ddbe484 // indirect
github.com/google/go-cmp v0.2.0 // indirect
github.com/jeremywohl/flatten v0.0.0-20180616191615-6ba45bff2452
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/jeremywohl/flatten v1.0.1
github.com/magiconair/properties v1.8.4 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-runewidth v0.0.3 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/olekukonko/tablewriter v0.0.0-20180506121414-d4647c9c7a84
github.com/parnurzeal/gorequest v0.2.15
github.com/pkg/errors v0.8.0 // indirect
github.com/olekukonko/tablewriter v0.0.4
github.com/parnurzeal/gorequest v0.2.16
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rakyll/gotest v0.0.5 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/spf13/cobra v0.0.5
github.com/spf13/afero v1.4.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.0.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.3.2
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.4.0 // indirect
github.com/tidwall/gjson v1.1.3
github.com/tidwall/match v1.0.0 // indirect
golang.org/x/sys v0.0.0-20200926100807-9d91bd62050c // indirect
github.com/tidwall/gjson v1.6.1
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect
golang.org/x/net v0.0.0-20200927032502-5d4f70055728 // indirect
golang.org/x/sys v0.0.0-20200929083018-4d22bbb62b3c // indirect
gopkg.in/ini.v1 v1.61.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gotest.tools v2.2.0+incompatible
moul.io/http2curl v1.0.0 // indirect
)
Loading

0 comments on commit b448aa7

Please sign in to comment.