Skip to content

Commit 18ae198

Browse files
authored
Update deps (gatewayd-io#576)
Replace yaml.v2 with yaml.v3
1 parent 0119784 commit 18ae198

File tree

4 files changed

+41
-42
lines changed

4 files changed

+41
-42
lines changed

.golangci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ linters-settings:
7373
- "github.com/cybercyst/go-scaffold/pkg/scaffold"
7474
- "golang.org/x/text/cases"
7575
- "golang.org/x/text/language"
76-
- "gopkg.in/yaml.v2"
7776
- "github.com/redis/go-redis/v9"
7877
test:
7978
files:

go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/codingsince1985/checksum v1.3.0
99
github.com/cybercyst/go-scaffold v0.0.0-20240404115540-744e601147cd
1010
github.com/envoyproxy/protoc-gen-validate v1.0.4
11-
github.com/gatewayd-io/gatewayd-plugin-sdk v0.2.16
11+
github.com/gatewayd-io/gatewayd-plugin-sdk v0.3.0
1212
github.com/getsentry/sentry-go v0.28.0
1313
github.com/go-co-op/gocron v1.37.0
1414
github.com/google/go-github/v53 v53.2.0
@@ -21,12 +21,12 @@ require (
2121
github.com/mitchellh/mapstructure v1.5.0
2222
github.com/prometheus/client_golang v1.19.1
2323
github.com/prometheus/client_model v0.6.1
24-
github.com/prometheus/common v0.54.0
25-
github.com/redis/go-redis/v9 v9.5.2
24+
github.com/prometheus/common v0.55.0
25+
github.com/redis/go-redis/v9 v9.5.4
2626
github.com/rs/zerolog v1.33.0
2727
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
2828
github.com/spf13/cast v1.6.0
29-
github.com/spf13/cobra v1.8.0
29+
github.com/spf13/cobra v1.8.1
3030
github.com/stretchr/testify v1.9.0
3131
github.com/testcontainers/testcontainers-go v0.31.0
3232
github.com/testcontainers/testcontainers-go/modules/redis v0.31.0
@@ -39,10 +39,9 @@ require (
3939
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f
4040
golang.org/x/text v0.16.0
4141
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117
42-
google.golang.org/grpc v1.64.0
43-
google.golang.org/protobuf v1.34.1
42+
google.golang.org/grpc v1.65.0
43+
google.golang.org/protobuf v1.34.2
4444
gopkg.in/natefinch/lumberjack.v2 v2.2.1
45-
gopkg.in/yaml.v2 v2.4.0
4645
gopkg.in/yaml.v3 v3.0.1
4746
)
4847

@@ -108,6 +107,7 @@ require (
108107
github.com/moby/sys/user v0.1.0 // indirect
109108
github.com/moby/term v0.5.0 // indirect
110109
github.com/morikuni/aec v1.0.0 // indirect
110+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
111111
github.com/oklog/run v1.1.0 // indirect
112112
github.com/opencontainers/go-digest v1.0.0 // indirect
113113
github.com/opencontainers/image-spec v1.1.0 // indirect
@@ -140,14 +140,14 @@ require (
140140
go.opentelemetry.io/otel/metric v1.27.0 // indirect
141141
go.opentelemetry.io/proto/otlp v1.2.0 // indirect
142142
go.uber.org/atomic v1.11.0 // indirect
143-
golang.org/x/crypto v0.24.0 // indirect
143+
golang.org/x/crypto v0.25.0 // indirect
144144
golang.org/x/mod v0.17.0 // indirect
145-
golang.org/x/net v0.26.0 // indirect
146-
golang.org/x/oauth2 v0.20.0 // indirect
145+
golang.org/x/net v0.27.0 // indirect
146+
golang.org/x/oauth2 v0.21.0 // indirect
147147
golang.org/x/sync v0.7.0 // indirect
148-
golang.org/x/sys v0.21.0 // indirect
148+
golang.org/x/sys v0.22.0 // indirect
149149
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
150-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 // indirect
150+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240711142825-46eb208f015d // indirect
151151
gopkg.in/warnings.v0 v0.1.2 // indirect
152152
oras.land/oras-go/v2 v2.5.0 // indirect
153153
)

go.sum

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

plugin/plugin_scaffold.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
gerr "github.com/gatewayd-io/gatewayd/errors"
1212
"golang.org/x/text/cases"
1313
"golang.org/x/text/language"
14-
"gopkg.in/yaml.v2"
14+
"gopkg.in/yaml.v3"
1515
)
1616

1717
const (

0 commit comments

Comments
 (0)