mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-24 19:43:25 +00:00
* Add GraphQL detection * Change the abbreviation to `GQL` * Fix the `TestMacros` test case * Try to fix the security issues reported by Snyk * Run `go mod tidy` in `agent` directory * Upgrade `golang.org/x/crypto` * Downgrade `golang.org/x/crypto` * Downgrade `golang.org/x/crypto` * Downgrade `golang.org/x/crypto` * Upgrade to `github.com/vektah/gqlparser/v2 v2.4.2` * Run `go mod tidy` * Replace `github.com/vektah/gqlparser/v2` with its fork `github.com/mertyildiran/gqlparser/v2` to fix the vulns * Upgrade the `github.com/mertyildiran/gqlparser/v2 v2.4.6` * Don't upgrade `golang.org/x/net`
22 lines
609 B
Modula-2
22 lines
609 B
Modula-2
module github.com/up9inc/mizu/tap/extensions/http
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/beevik/etree v1.1.0
|
|
github.com/mertyildiran/gqlparser/v2 v2.4.6
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/up9inc/mizu/tap/api v0.0.0
|
|
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/google/martian v2.1.0+incompatible // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|
|
|
|
replace github.com/up9inc/mizu/tap/api v0.0.0 => ../../api
|