Skip to content

Commit 77def43

Browse files
committed
Update Go and deps
1 parent cc06755 commit 77def43

File tree

5 files changed

+125
-100
lines changed

5 files changed

+125
-100
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
uses: actions/checkout@v3
1717
with:
1818
fetch-depth: 0
19-
- name: Set up Go 1.23
19+
- name: Set up Go 1.24
2020
uses: actions/setup-go@v3
2121
with:
22-
go-version: "1.23"
22+
go-version: "1.24"
2323
cache: true
2424
- name: Install dependencies
2525
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Go 🧑‍💻
2424
uses: actions/setup-go@v3
2525
with:
26-
go-version: "1.23"
26+
go-version: "1.24"
2727

2828
- name: Lint code issues 🚨
2929
uses: golangci/golangci-lint-action@v6

Makefile

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

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

go.mod

Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
module github.com/gatewayd-io/gatewayd-plugin-cache
22

3-
go 1.23.3
3+
go 1.24
44

55
require (
6-
github.com/alicebob/miniredis/v2 v2.33.0
7-
github.com/gatewayd-io/gatewayd v0.9.10
8-
github.com/gatewayd-io/gatewayd-plugin-sdk v0.3.4
9-
github.com/getsentry/sentry-go v0.29.1
6+
github.com/alicebob/miniredis/v2 v2.34.0
7+
github.com/gatewayd-io/gatewayd v0.10.2
8+
github.com/gatewayd-io/gatewayd-plugin-sdk v0.4.2
9+
github.com/getsentry/sentry-go v0.33.0
1010
github.com/go-co-op/gocron v1.37.0
1111
github.com/go-redis/redis/v8 v8.11.5
1212
github.com/hashicorp/go-hclog v1.6.3
13-
github.com/hashicorp/go-plugin v1.6.2
14-
github.com/jackc/pgx/v5 v5.7.1
15-
github.com/prometheus/client_golang v1.20.5
16-
github.com/spf13/cast v1.7.0
17-
github.com/stretchr/testify v1.9.0
13+
github.com/hashicorp/go-plugin v1.6.3
14+
github.com/jackc/pgx/v5 v5.7.5
15+
github.com/prometheus/client_golang v1.22.0
16+
github.com/spf13/cast v1.8.0
17+
github.com/stretchr/testify v1.10.0
1818
github.com/zenizh/go-capturer v0.0.0-20211219060012-52ea6c8fed04
19-
google.golang.org/grpc v1.68.0
20-
google.golang.org/protobuf v1.35.1
19+
google.golang.org/grpc v1.72.1
20+
google.golang.org/protobuf v1.36.6
2121
)
2222

2323
require (
@@ -26,36 +26,35 @@ require (
2626
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2727
github.com/davecgh/go-spew v1.1.1 // indirect
2828
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
29-
github.com/expr-lang/expr v1.16.9 // indirect
29+
github.com/expr-lang/expr v1.17.3 // indirect
3030
github.com/fatih/color v1.18.0 // indirect
3131
github.com/golang/protobuf v1.5.4 // indirect
3232
github.com/google/uuid v1.6.0 // indirect
33-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
33+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
3434
github.com/hashicorp/yamux v0.1.2 // indirect
35-
github.com/klauspost/compress v1.17.11 // indirect
36-
github.com/mattn/go-colorable v0.1.13 // indirect
35+
github.com/mattn/go-colorable v0.1.14 // indirect
3736
github.com/mattn/go-isatty v0.0.20 // indirect
3837
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3938
github.com/oklog/run v1.1.0 // indirect
40-
github.com/onsi/gomega v1.27.10 // indirect
41-
github.com/pganalyze/pg_query_go/v5 v5.1.0 // indirect
39+
github.com/onsi/gomega v1.34.1 // indirect
40+
github.com/pganalyze/pg_query_go/v6 v6.1.0 // indirect
4241
github.com/pmezard/go-difflib v1.0.0 // indirect
43-
github.com/prometheus/client_model v0.6.1 // indirect
44-
github.com/prometheus/common v0.60.1 // indirect
42+
github.com/prometheus/client_model v0.6.2 // indirect
43+
github.com/prometheus/common v0.64.0 // indirect
4544
github.com/prometheus/procfs v0.15.1 // indirect
46-
github.com/redis/go-redis/v9 v9.7.0 // indirect
45+
github.com/redis/go-redis/v9 v9.8.0 // indirect
4746
github.com/robfig/cron/v3 v3.0.1 // indirect
48-
github.com/rogpeppe/go-internal v1.12.0 // indirect
49-
github.com/rs/zerolog v1.33.0 // indirect
50-
github.com/tetratelabs/wazero v1.8.1 // indirect
51-
github.com/wasilibs/go-pgquery v0.0.0-20241011013927-817756c5aae4 // indirect
52-
github.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52 // indirect
47+
github.com/rogpeppe/go-internal v1.13.1 // indirect
48+
github.com/rs/zerolog v1.34.0 // indirect
49+
github.com/tetratelabs/wazero v1.9.0 // indirect
50+
github.com/wasilibs/go-pgquery v0.0.0-20250409022910-10ac41983c07 // indirect
51+
github.com/wasilibs/wazero-helpers v0.0.0-20250123031827-cd30c44769bb // indirect
5352
github.com/yuin/gopher-lua v1.1.1 // indirect
5453
go.uber.org/atomic v1.11.0 // indirect
55-
golang.org/x/net v0.33.0 // indirect
56-
golang.org/x/sys v0.28.0 // indirect
57-
golang.org/x/text v0.21.0 // indirect
58-
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
59-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
54+
golang.org/x/net v0.40.0 // indirect
55+
golang.org/x/sys v0.33.0 // indirect
56+
golang.org/x/text v0.25.0 // indirect
57+
google.golang.org/genproto/googleapis/api v0.0.0-20250512202823-5a2f75b736a9 // indirect
58+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250505200425-f936aa4a68b2 // indirect
6059
gopkg.in/yaml.v3 v3.0.1 // indirect
6160
)

0 commit comments

Comments
 (0)