Skip to content

Commit 2ae4d3e

Browse files
committed
Bump dependencies
1 parent 8de0176 commit 2ae4d3e

File tree

935 files changed

+85729
-32875
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

935 files changed

+85729
-32875
lines changed

core/handlers/v2/simulation_handler_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ func TestSimulationHandler_Put_ReturnsErrorIfJsonDoesntMatchSchema_MissingDataKe
385385
Expect(err).To(BeNil())
386386

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

391391
func TestSimulationHandler_Put_ReturnsErrorIfJsonDoesntMatchSchema_EmptyObject(t *testing.T) {

core/handlers/v2/simulation_views_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ func Test_NewSimulationViewFromRequestBody_WontCreateSimulationFromInvalidV1Simu
251251
}`))
252252

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

256256
Expect(simulation).ToNot(BeNil())
257257
Expect(simulation.RequestResponsePairs).To(HaveLen(0))

go.mod

+50-49
Original file line numberDiff line numberDiff line change
@@ -5,73 +5,74 @@ go 1.22.10
55
require (
66
github.com/ChrisTrenkamp/xsel v0.9.16
77
github.com/SpectoLabs/goproxy v0.0.0-20240717215706-55e01f38b2c9
8-
github.com/SpectoLabs/goproxy/ext v0.0.0-20220724222243-c982a2c966ae
8+
github.com/SpectoLabs/goproxy/ext v0.0.0-20240717215706-55e01f38b2c9
99
github.com/SpectoLabs/goxml2json v0.0.0-20240121223617-8e03292c14ea
1010
github.com/SpectoLabs/raymond v2.0.3-0.20240827093205-07f3a7bebd7d+incompatible
1111
github.com/antonholmquist/jason v1.0.1-0.20160829104012-962e09b85496
12-
github.com/beevik/etree v1.1.0
13-
github.com/boltdb/bolt v1.2.1-0.20160424201119-d97499360d1e
14-
github.com/brianvoe/gofakeit/v6 v6.19.0
15-
github.com/codegangsta/negroni v0.1.1-0.20160503152438-24bf3506bb5e
16-
github.com/dghubble/sling v1.2.0
17-
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76
12+
github.com/beevik/etree v1.4.1
13+
github.com/boltdb/bolt v1.3.1
14+
github.com/brianvoe/gofakeit/v6 v6.28.0
15+
github.com/codegangsta/negroni v1.0.0
16+
github.com/dghubble/sling v1.4.2
17+
github.com/dsnet/compress v0.0.1
1818
github.com/go-zoo/bone v1.3.0
1919
github.com/golang-jwt/jwt/v4 v4.5.1
20-
github.com/gorilla/mux v0.0.0-20160502175624-9c19ed558d5d
21-
github.com/gorilla/websocket v1.4.2
22-
github.com/hashicorp/golang-lru v0.5.1
23-
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
20+
github.com/gorilla/mux v1.8.1
21+
github.com/gorilla/websocket v1.5.3
22+
github.com/hashicorp/golang-lru v1.0.2
23+
github.com/icrowley/fake v0.0.0-20240710202011-f797eb4a99c0
2424
github.com/jackwakefield/gopac v1.0.3-0.20180823145755-c4d2e0b9a672
25-
github.com/kardianos/osext v0.0.0-20151222153229-29ae4ffbc9a6
26-
github.com/mitchellh/go-homedir v0.0.0-20161203194507-b8bc1bf76747
27-
github.com/olekukonko/tablewriter v0.0.0-20170128050532-febf2d34b54a
28-
github.com/onsi/ginkgo v1.16.4
29-
github.com/onsi/gomega v1.36.0
30-
github.com/pborman/uuid v0.0.0-20160216163710-c55201b03606
31-
github.com/phayes/freeport v0.0.0-20141201041908-e7681b376149
32-
github.com/rakyll/statik v0.1.1-0.20160322004535-2940084503a4
33-
github.com/rcrowley/go-metrics v0.0.0-20160226052904-eeba7bd0dd01
34-
github.com/ryanuber/go-glob v0.0.0-20170128012129-256dc444b735
25+
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
26+
github.com/mitchellh/go-homedir v1.1.0
27+
github.com/olekukonko/tablewriter v0.0.5
28+
github.com/onsi/ginkgo v1.16.5
29+
github.com/onsi/gomega v1.36.1
30+
github.com/pborman/uuid v1.2.1
31+
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
32+
github.com/rakyll/statik v0.1.7
33+
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
34+
github.com/ryanuber/go-glob v1.0.0
3535
github.com/sirupsen/logrus v1.9.3
36-
github.com/spf13/cobra v0.0.0-20160517171929-f36824430130
36+
github.com/spf13/cobra v1.8.1
3737
github.com/spf13/pflag v1.0.5
3838
github.com/spf13/viper v0.0.0-20160508180713-d8a428b8a306
39-
github.com/tdewolff/minify/v2 v2.12.4
40-
github.com/xeipuuv/gojsonschema v0.0.0-20170225172124-ff0417f4272e
41-
golang.org/x/crypto v0.29.0
42-
gonum.org/v1/gonum v0.7.0
39+
github.com/tdewolff/minify/v2 v2.21.2
40+
github.com/xeipuuv/gojsonschema v1.2.0
41+
golang.org/x/crypto v0.30.0
42+
gonum.org/v1/gonum v0.15.1
4343
gopkg.in/yaml.v2 v2.4.0
44-
k8s.io/client-go v0.26.1
44+
k8s.io/client-go v0.31.3
4545
)
4646

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

0 commit comments

Comments
 (0)