Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tommysitu committed Dec 10, 2024
1 parent 8de0176 commit 968f458
Show file tree
Hide file tree
Showing 723 changed files with 43,656 additions and 33,691 deletions.
2 changes: 1 addition & 1 deletion core/handlers/v2/simulation_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ func TestSimulationHandler_Put_ReturnsErrorIfJsonDoesntMatchSchema_MissingDataKe
Expect(err).To(BeNil())

Expect(response.Result().StatusCode).To(Equal(400))
Expect(errorView.Error).To(Equal("Invalid v3 simulation: [Error for <data>: data is required]"))
Expect(errorView.Error).To(Equal("Invalid v3 simulation: [Error for <(root)>: data is required]"))
}

func TestSimulationHandler_Put_ReturnsErrorIfJsonDoesntMatchSchema_EmptyObject(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion core/handlers/v2/simulation_views_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func Test_NewSimulationViewFromRequestBody_WontCreateSimulationFromInvalidV1Simu
}`))

Expect(err).ToNot(BeNil())
Expect(err.Error()).To(Equal("Invalid v1 simulation: [Error for <request>: request is required; Error for <response>: response is required]"))
Expect(err.Error()).To(Equal("Invalid v1 simulation: [Error for <data.pairs.0>: request is required; Error for <data.pairs.0>: response is required]"))

Expect(simulation).ToNot(BeNil())
Expect(simulation.RequestResponsePairs).To(HaveLen(0))
Expand Down
99 changes: 50 additions & 49 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,73 +5,74 @@ go 1.22.10
require (
github.com/ChrisTrenkamp/xsel v0.9.16
github.com/SpectoLabs/goproxy v0.0.0-20240717215706-55e01f38b2c9
github.com/SpectoLabs/goproxy/ext v0.0.0-20220724222243-c982a2c966ae
github.com/SpectoLabs/goproxy/ext v0.0.0-20240717215706-55e01f38b2c9
github.com/SpectoLabs/goxml2json v0.0.0-20240121223617-8e03292c14ea
github.com/SpectoLabs/raymond v2.0.3-0.20240827093205-07f3a7bebd7d+incompatible
github.com/antonholmquist/jason v1.0.1-0.20160829104012-962e09b85496
github.com/beevik/etree v1.1.0
github.com/boltdb/bolt v1.2.1-0.20160424201119-d97499360d1e
github.com/brianvoe/gofakeit/v6 v6.19.0
github.com/codegangsta/negroni v0.1.1-0.20160503152438-24bf3506bb5e
github.com/dghubble/sling v1.2.0
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76
github.com/beevik/etree v1.4.1
github.com/boltdb/bolt v1.3.1
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/codegangsta/negroni v1.0.0
github.com/dghubble/sling v1.4.2
github.com/dsnet/compress v0.0.1
github.com/go-zoo/bone v1.3.0
github.com/golang-jwt/jwt/v4 v4.5.1
github.com/gorilla/mux v0.0.0-20160502175624-9c19ed558d5d
github.com/gorilla/websocket v1.4.2
github.com/hashicorp/golang-lru v0.5.1
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.3
github.com/hashicorp/golang-lru v1.0.2
github.com/icrowley/fake v0.0.0-20240710202011-f797eb4a99c0
github.com/jackwakefield/gopac v1.0.3-0.20180823145755-c4d2e0b9a672
github.com/kardianos/osext v0.0.0-20151222153229-29ae4ffbc9a6
github.com/mitchellh/go-homedir v0.0.0-20161203194507-b8bc1bf76747
github.com/olekukonko/tablewriter v0.0.0-20170128050532-febf2d34b54a
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.36.0
github.com/pborman/uuid v0.0.0-20160216163710-c55201b03606
github.com/phayes/freeport v0.0.0-20141201041908-e7681b376149
github.com/rakyll/statik v0.1.1-0.20160322004535-2940084503a4
github.com/rcrowley/go-metrics v0.0.0-20160226052904-eeba7bd0dd01
github.com/ryanuber/go-glob v0.0.0-20170128012129-256dc444b735
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/mitchellh/go-homedir v1.1.0
github.com/olekukonko/tablewriter v0.0.5
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.36.1
github.com/pborman/uuid v1.2.1
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
github.com/rakyll/statik v0.1.7
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
github.com/ryanuber/go-glob v1.0.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v0.0.0-20160517171929-f36824430130
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v0.0.0-20160508180713-d8a428b8a306
github.com/tdewolff/minify/v2 v2.12.4
github.com/xeipuuv/gojsonschema v0.0.0-20170225172124-ff0417f4272e
golang.org/x/crypto v0.29.0
gonum.org/v1/gonum v0.7.0
github.com/tdewolff/minify/v2 v2.21.2
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/crypto v0.30.0
gonum.org/v1/gonum v0.15.1
gopkg.in/yaml.v2 v2.4.0
k8s.io/client-go v0.26.1
k8s.io/client-go v0.31.3
)

require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/aymerick/raymond v2.0.2+incompatible // indirect
github.com/corpix/uarand v0.0.0-20170903190822-2b8494104d86 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/corpix/uarand v0.2.0 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/goccmack/goutil v1.2.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-querystring v0.0.0-20160401233042-9235644dd9e5 // indirect
github.com/gorilla/context v0.0.0-20160422134237-a8d44e7d8e4d // indirect
github.com/hashicorp/hcl v0.0.0-20160426221300-9a905a34e628 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/magiconair/properties v1.7.0 // indirect
github.com/mattn/go-runewidth v0.0.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/magiconair/properties v1.8.9 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/robertkrimen/otto v0.0.0-20180617131154-15f95af6e78d // indirect
github.com/spf13/cast v0.0.0-20160314192028-27b586b42e29 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20160311093646-33c24e77fb80 // indirect
github.com/tdewolff/parse/v2 v2.6.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20170225233418-6fe8760cad35 // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20150808065054-e02fc20de94c // indirect
golang.org/x/exp v0.0.0-20190312203227-4b39c73a6495 // indirect
golang.org/x/net v0.31.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/term v0.26.0 // indirect
golang.org/x/text v0.20.0 // indirect
gonum.org/v1/netlib v0.0.0-20200317120129-c5a04cffd98a // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/robertkrimen/otto v0.5.1 // indirect
github.com/spf13/cast v1.7.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/tdewolff/parse/v2 v2.7.19 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect
golang.org/x/net v0.32.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading

0 comments on commit 968f458

Please sign in to comment.