Skip to content

Commit 259c7a5

Browse files
committed
Update the packages
Signed-off-by: Svetlin Ralchev <[email protected]>
1 parent b15f8ac commit 259c7a5

File tree

4 files changed

+157
-119
lines changed

4 files changed

+157
-119
lines changed

go.mod

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,48 @@
11
module github.com/phogolabs/plex
22

3-
go 1.19
3+
go 1.22
4+
5+
toolchain go1.23.2
46

57
require (
68
github.com/davecgh/go-spew v1.1.1
7-
github.com/go-chi/chi/v5 v5.0.8
8-
github.com/go-playground/locales v0.14.0
9+
github.com/go-chi/chi/v5 v5.1.0
10+
github.com/go-openapi/inflect v0.21.0
11+
github.com/go-playground/locales v0.14.1
912
github.com/go-playground/mold v2.2.0+incompatible
10-
github.com/go-playground/universal-translator v0.18.0
11-
github.com/go-playground/validator/v10 v10.11.1
13+
github.com/go-playground/universal-translator v0.18.1
14+
github.com/go-playground/validator/v10 v10.22.1
1215
github.com/goware/errorx v0.0.0-20150526135951-6c5540545f5f
13-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.14.0
16+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0
1417
github.com/jinzhu/inflection v1.0.0
15-
github.com/phogolabs/flaw v0.0.0-20221219132214-2b8ff98f4f4c
18+
github.com/phogolabs/flaw v0.0.0-20230111045222-8efffb46800b
1619
github.com/phogolabs/inflate v0.0.0-20221219134934-20b57c865748
17-
github.com/phogolabs/log v0.0.0-20221219133944-91ababdb9d91
20+
github.com/phogolabs/log v0.0.0-20230111045248-dad4d3c50e0f
1821
github.com/phogolabs/restify v0.0.0-20221219135034-356dc927fc4a
1922
github.com/soheilhy/cmux v0.1.5
20-
github.com/srikrsna/protoc-gen-gotag v0.6.2
21-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.37.0
22-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.37.0
23-
go.opentelemetry.io/otel/trace v1.11.2
24-
golang.org/x/sync v0.1.0
25-
google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37
26-
google.golang.org/grpc v1.51.0
27-
google.golang.org/protobuf v1.28.1
23+
github.com/srikrsna/protoc-gen-gotag v1.0.2
24+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0
25+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0
26+
go.opentelemetry.io/otel/trace v1.31.0
27+
golang.org/x/sync v0.8.0
28+
google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53
29+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53
30+
google.golang.org/grpc v1.67.1
31+
google.golang.org/protobuf v1.35.1
2832
)
2933

3034
require (
31-
github.com/felixge/httpsnoop v1.0.3 // indirect
32-
github.com/go-logr/logr v1.2.3 // indirect
35+
github.com/felixge/httpsnoop v1.0.4 // indirect
36+
github.com/gabriel-vasile/mimetype v1.4.6 // indirect
37+
github.com/go-logr/logr v1.4.2 // indirect
3338
github.com/go-logr/stdr v1.2.2 // indirect
34-
github.com/go-openapi/inflect v0.21.0 // indirect
3539
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
36-
github.com/golang/protobuf v1.5.2 // indirect
37-
github.com/leodido/go-urn v1.2.1 // indirect
40+
github.com/leodido/go-urn v1.4.0 // indirect
3841
go.opencensus.io v0.24.0 // indirect
39-
go.opentelemetry.io/otel v1.11.2 // indirect
40-
go.opentelemetry.io/otel/metric v0.34.0 // indirect
41-
golang.org/x/crypto v0.4.0 // indirect
42-
golang.org/x/net v0.7.0 // indirect
43-
golang.org/x/sys v0.5.0 // indirect
44-
golang.org/x/text v0.7.0 // indirect
42+
go.opentelemetry.io/otel v1.31.0 // indirect
43+
go.opentelemetry.io/otel/metric v1.31.0 // indirect
44+
golang.org/x/crypto v0.28.0 // indirect
45+
golang.org/x/net v0.30.0 // indirect
46+
golang.org/x/sys v0.26.0 // indirect
47+
golang.org/x/text v0.19.0 // indirect
4548
)

0 commit comments

Comments
 (0)