Skip to content

Commit ced9ffa

Browse files
committed
Update deps
1 parent 29fb69e commit ced9ffa

File tree

3 files changed

+102
-77
lines changed

3 files changed

+102
-77
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ update-all:
1919
@go get -u ./...
2020
@go mod tidy
2121

22+
# https://groups.google.com/g/golang-nuts/c/FrWNhWsLDVY/m/CVd_iRedBwAJ
23+
update-direct-deps:
24+
@go list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -m all | xargs -n1 go get
25+
@go mod tidy
26+
2227
build-dev: tidy
2328
@go build
2429

go.mod

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,48 @@
11
module github.com/gatewayd-io/gatewayd-plugin-sql-ids-ips
22

3-
go 1.23.3
3+
go 1.24
44

55
require (
6-
github.com/carlmjohnson/requests v0.24.2
6+
github.com/carlmjohnson/requests v0.24.3
77
github.com/corazawaf/libinjection-go v0.2.2
8-
github.com/gatewayd-io/gatewayd-plugin-sdk v0.3.4
9-
github.com/getsentry/sentry-go v0.29.1
8+
github.com/gatewayd-io/gatewayd-plugin-sdk v0.4.2
9+
github.com/getsentry/sentry-go v0.33.0
1010
github.com/hashicorp/go-hclog v1.6.3
11-
github.com/hashicorp/go-plugin v1.6.2
12-
github.com/jackc/pgx/v5 v5.7.1
13-
github.com/prometheus/client_golang v1.20.5
14-
github.com/spf13/cast v1.7.0
15-
github.com/stretchr/testify v1.9.0
16-
google.golang.org/grpc v1.68.0
11+
github.com/hashicorp/go-plugin v1.6.3
12+
github.com/jackc/pgx/v5 v5.7.5
13+
github.com/prometheus/client_golang v1.22.0
14+
github.com/spf13/cast v1.8.0
15+
github.com/stretchr/testify v1.10.0
16+
google.golang.org/grpc v1.72.1
1717
)
1818

1919
require (
2020
github.com/beorn7/perks v1.0.1 // indirect
2121
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2222
github.com/davecgh/go-spew v1.1.1 // indirect
2323
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
24-
github.com/expr-lang/expr v1.16.9 // indirect
24+
github.com/expr-lang/expr v1.17.3 // indirect
2525
github.com/fatih/color v1.18.0 // indirect
2626
github.com/golang/protobuf v1.5.4 // indirect
2727
github.com/hashicorp/yamux v0.1.2 // indirect
28-
github.com/klauspost/compress v1.17.11 // indirect
29-
github.com/mattn/go-colorable v0.1.13 // indirect
28+
github.com/mattn/go-colorable v0.1.14 // indirect
3029
github.com/mattn/go-isatty v0.0.20 // indirect
3130
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3231
github.com/oklog/run v1.1.0 // indirect
33-
github.com/pganalyze/pg_query_go/v5 v5.1.0 // indirect
32+
github.com/pganalyze/pg_query_go/v6 v6.1.0 // indirect
3433
github.com/pmezard/go-difflib v1.0.0 // indirect
3534
github.com/prometheus/client_model v0.6.1 // indirect
36-
github.com/prometheus/common v0.60.1 // indirect
35+
github.com/prometheus/common v0.62.0 // indirect
3736
github.com/prometheus/procfs v0.15.1 // indirect
38-
github.com/redis/go-redis/v9 v9.7.0 // indirect
39-
github.com/rs/zerolog v1.33.0 // indirect
40-
github.com/tetratelabs/wazero v1.8.1 // indirect
41-
github.com/wasilibs/go-pgquery v0.0.0-20241011013927-817756c5aae4 // indirect
42-
github.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52 // indirect
43-
golang.org/x/net v0.33.0 // indirect
44-
golang.org/x/sys v0.28.0 // indirect
45-
golang.org/x/text v0.21.0 // indirect
46-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
47-
google.golang.org/protobuf v1.35.1 // indirect
37+
github.com/redis/go-redis/v9 v9.8.0 // indirect
38+
github.com/rs/zerolog v1.34.0 // indirect
39+
github.com/tetratelabs/wazero v1.9.0 // indirect
40+
github.com/wasilibs/go-pgquery v0.0.0-20250409022910-10ac41983c07 // indirect
41+
github.com/wasilibs/wazero-helpers v0.0.0-20250123031827-cd30c44769bb // indirect
42+
golang.org/x/net v0.40.0 // indirect
43+
golang.org/x/sys v0.33.0 // indirect
44+
golang.org/x/text v0.25.0 // indirect
45+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
46+
google.golang.org/protobuf v1.36.6 // indirect
4847
gopkg.in/yaml.v3 v3.0.1 // indirect
4948
)

0 commit comments

Comments
 (0)