Skip to content

Commit 95f20d6

Browse files
committed
Update deps
1 parent c4816fd commit 95f20d6

File tree

3 files changed

+96
-71
lines changed

3 files changed

+96
-71
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: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
module github.com/gatewayd-io/gatewayd-plugin-js
22

3-
go 1.23.3
3+
go 1.24
44

55
require (
6-
github.com/dop251/goja v0.0.0-20241024094426-79f3a7efcdbd
7-
github.com/dop251/goja_nodejs v0.0.0-20240728170619-29b559befffc
8-
github.com/gatewayd-io/gatewayd-plugin-sdk v0.3.4
9-
github.com/getsentry/sentry-go v0.29.1
6+
github.com/dop251/goja v0.0.0-20250309171923-bcd7cc6bf64c
7+
github.com/dop251/goja_nodejs v0.0.0-20250409162600-f7acab6894b0
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/prometheus/client_golang v1.20.5
13-
github.com/spf13/cast v1.7.0
14-
github.com/wasilibs/go-pgquery v0.0.0-20241011013927-817756c5aae4
15-
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
16-
google.golang.org/grpc v1.68.0
11+
github.com/hashicorp/go-plugin v1.6.3
12+
github.com/prometheus/client_golang v1.22.0
13+
github.com/spf13/cast v1.8.0
14+
github.com/wasilibs/go-pgquery v0.0.0-20250409022910-10ac41983c07
15+
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6
16+
google.golang.org/grpc v1.72.1
1717
)
1818

1919
require (
@@ -25,21 +25,20 @@ require (
2525
github.com/golang/protobuf v1.5.4 // indirect
2626
github.com/google/pprof v0.0.0-20241101162523-b92577c0c142 // 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/prometheus/client_model v0.6.1 // indirect
35-
github.com/prometheus/common v0.60.1 // indirect
34+
github.com/prometheus/common v0.62.0 // indirect
3635
github.com/prometheus/procfs v0.15.1 // indirect
37-
github.com/rs/zerolog v1.33.0 // indirect
38-
github.com/tetratelabs/wazero v1.8.1 // indirect
39-
github.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52 // indirect
40-
golang.org/x/net v0.33.0 // indirect
41-
golang.org/x/sys v0.28.0 // indirect
42-
golang.org/x/text v0.21.0 // indirect
43-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
44-
google.golang.org/protobuf v1.35.1 // indirect
36+
github.com/rs/zerolog v1.34.0 // indirect
37+
github.com/tetratelabs/wazero v1.9.0 // indirect
38+
github.com/wasilibs/wazero-helpers v0.0.0-20250123031827-cd30c44769bb // indirect
39+
golang.org/x/net v0.40.0 // indirect
40+
golang.org/x/sys v0.33.0 // indirect
41+
golang.org/x/text v0.25.0 // indirect
42+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
43+
google.golang.org/protobuf v1.36.6 // indirect
4544
)

go.sum

Lines changed: 69 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)