Skip to content

Commit e6f9e8f

Browse files
committed
feat: Upgrade viper
1 parent fd93b1a commit e6f9e8f

File tree

2 files changed

+52
-382
lines changed

2 files changed

+52
-382
lines changed

go.mod

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ require (
2626
github.com/redis/go-redis/v9 v9.7.0
2727
github.com/rs/cors v1.11.1
2828
github.com/sirupsen/logrus v1.9.3
29-
github.com/spf13/viper v1.10.1
29+
github.com/spf13/viper v1.19.0
3030
github.com/statsig-io/go-sdk v1.26.0
3131
github.com/stretchr/testify v1.9.0
3232
github.com/twmb/franz-go v1.17.0
3333
github.com/twmb/franz-go/pkg/kmsg v1.8.0
34-
google.golang.org/grpc v1.60.1
34+
google.golang.org/grpc v1.62.1
3535
google.golang.org/protobuf v1.33.0
3636
gopkg.in/DataDog/dd-trace-go.v1 v1.69.1
3737
gopkg.in/natefinch/lumberjack.v2 v2.2.1
@@ -75,7 +75,7 @@ require (
7575
github.com/dustin/go-humanize v1.0.1 // indirect
7676
github.com/eapache/queue/v2 v2.0.0-20230407133247-75960ed334e4 // indirect
7777
github.com/ebitengine/purego v0.6.0-alpha.5 // indirect
78-
github.com/fsnotify/fsnotify v1.6.0 // indirect
78+
github.com/fsnotify/fsnotify v1.7.0 // indirect
7979
github.com/go-logfmt/logfmt v0.6.0 // indirect
8080
github.com/golang/protobuf v1.5.4 // indirect
8181
github.com/google/pprof v0.0.0-20230817174616-7a8ec2ada47b // indirect
@@ -92,32 +92,36 @@ require (
9292
github.com/mattn/go-sqlite3 v1.14.22 // indirect
9393
github.com/mitchellh/mapstructure v1.5.0 // indirect
9494
github.com/outcaste-io/ristretto v0.2.3 // indirect
95-
github.com/pelletier/go-toml v1.9.5 // indirect
95+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
9696
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
9797
github.com/pierrec/lz4/v4 v4.1.21 // indirect
9898
github.com/pkg/errors v0.9.1 // indirect
9999
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
100100
github.com/richardartoul/molecule v1.0.1-0.20240531184615-7ca0df43c0b3 // indirect
101101
github.com/ryanuber/go-glob v1.0.0 // indirect
102+
github.com/sagikazarmark/locafero v0.4.0 // indirect
103+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
102104
github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect
105+
github.com/sourcegraph/conc v0.3.0 // indirect
103106
github.com/spaolacci/murmur3 v1.1.0 // indirect
104-
github.com/spf13/afero v1.9.2 // indirect
105-
github.com/spf13/cast v1.4.1 // indirect
106-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
107+
github.com/spf13/afero v1.11.0 // indirect
108+
github.com/spf13/cast v1.6.0 // indirect
107109
github.com/spf13/pflag v1.0.5 // indirect
108110
github.com/statsig-io/ip3country-go v0.2.0 // indirect
109-
github.com/subosito/gotenv v1.2.0 // indirect
111+
github.com/subosito/gotenv v1.6.0 // indirect
110112
github.com/tinylib/msgp v1.2.1 // indirect
111113
github.com/ua-parser/uap-go v0.0.0-20211112212520-00c877edfe0f // indirect
112114
go.uber.org/atomic v1.11.0 // indirect
115+
go.uber.org/multierr v1.9.0 // indirect
116+
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
113117
golang.org/x/mod v0.18.0 // indirect
114118
golang.org/x/net v0.26.0 // indirect
115119
golang.org/x/sys v0.23.0 // indirect
116120
golang.org/x/text v0.16.0 // indirect
117-
golang.org/x/time v0.3.0 // indirect
121+
golang.org/x/time v0.5.0 // indirect
118122
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
119-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect
120-
gopkg.in/ini.v1 v1.66.2 // indirect
123+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect
124+
gopkg.in/ini.v1 v1.67.0 // indirect
121125
gopkg.in/yaml.v2 v2.4.0 // indirect
122126
gopkg.in/yaml.v3 v3.0.1 // indirect
123127
)

0 commit comments

Comments
 (0)