Skip to content

Commit 886e859

Browse files
authored
Updates (#46)
* feat: update cloudevent proto * feat: preserve all cloudevent fields
1 parent 0524448 commit 886e859

12 files changed

Lines changed: 307 additions & 324 deletions

File tree

go.mod

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ require (
66
github.com/ClickHouse/clickhouse-go/v2 v2.40.1
77
github.com/DIMO-Network/clickhouse-infra v0.0.5
88
github.com/DIMO-Network/cloudevent v0.1.4
9-
github.com/DIMO-Network/server-garage v0.0.4
9+
github.com/DIMO-Network/server-garage v0.0.7
1010
github.com/DIMO-Network/shared v1.0.7
1111
github.com/aws/aws-sdk-go-v2 v1.38.3
1212
github.com/aws/aws-sdk-go-v2/credentials v1.18.10
1313
github.com/aws/aws-sdk-go-v2/service/s3 v1.87.3
14-
github.com/ethereum/go-ethereum v1.16.3
15-
github.com/gofiber/contrib/jwt v1.1.2
14+
github.com/ethereum/go-ethereum v1.16.4
1615
github.com/gofiber/fiber/v2 v2.52.9
1716
github.com/gofiber/swagger v1.1.1
18-
github.com/golang-jwt/jwt/v5 v5.3.0
17+
github.com/google/go-cmp v0.7.0
1918
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
2019
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2
2120
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
@@ -24,20 +23,19 @@ require (
2423
github.com/swaggo/swag v1.16.6
2524
github.com/volatiletech/sqlboiler/v4 v4.19.1
2625
go.uber.org/mock v0.6.0
27-
golang.org/x/sync v0.16.0
26+
golang.org/x/sync v0.17.0
2827
google.golang.org/grpc v1.75.0
29-
google.golang.org/protobuf v1.36.8
28+
google.golang.org/protobuf v1.36.10
3029
)
3130

3231
require (
3332
dario.cat/mergo v1.0.1 // indirect
3433
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
3534
github.com/ClickHouse/ch-go v0.67.0 // indirect
35+
github.com/DIMO-Network/token-exchange-api v0.3.7 // indirect
3636
github.com/KyleBanks/depth v1.2.1 // indirect
3737
github.com/MicahParks/keyfunc/v2 v2.1.0 // indirect
3838
github.com/Microsoft/go-winio v0.6.2 // indirect
39-
github.com/PuerkitoBio/purell v1.1.1 // indirect
40-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
4139
github.com/andybalholm/brotli v1.2.0 // indirect
4240
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.1 // indirect
4341
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.6 // indirect
@@ -72,19 +70,21 @@ require (
7270
github.com/go-logr/logr v1.4.3 // indirect
7371
github.com/go-logr/stdr v1.2.2 // indirect
7472
github.com/go-ole/go-ole v1.3.0 // indirect
75-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
76-
github.com/go-openapi/jsonreference v0.19.6 // indirect
77-
github.com/go-openapi/spec v0.20.4 // indirect
78-
github.com/go-openapi/swag v0.19.15 // indirect
73+
github.com/go-openapi/jsonpointer v0.20.2 // indirect
74+
github.com/go-openapi/jsonreference v0.20.4 // indirect
75+
github.com/go-openapi/spec v0.20.14 // indirect
76+
github.com/go-openapi/swag v0.22.9 // indirect
77+
github.com/gofiber/contrib/jwt v1.1.2 // indirect
7978
github.com/gogo/protobuf v1.3.2 // indirect
79+
github.com/golang-jwt/jwt/v5 v5.3.0 // indirect
8080
github.com/google/uuid v1.6.0 // indirect
8181
github.com/holiman/uint256 v1.3.2 // indirect
8282
github.com/joho/godotenv v1.5.1 // indirect
8383
github.com/josharian/intern v1.0.0 // indirect
8484
github.com/klauspost/compress v1.18.0 // indirect
8585
github.com/lufia/plan9stats v0.0.0-20250317134145-8bc96cf8fc35 // indirect
8686
github.com/magiconair/properties v1.8.10 // indirect
87-
github.com/mailru/easyjson v0.7.6 // indirect
87+
github.com/mailru/easyjson v0.7.7 // indirect
8888
github.com/mattn/go-colorable v0.1.14 // indirect
8989
github.com/mattn/go-isatty v0.0.20 // indirect
9090
github.com/mattn/go-runewidth v0.0.16 // indirect
@@ -130,8 +130,7 @@ require (
130130
github.com/tklauser/numcpus v0.10.0 // indirect
131131
github.com/urfave/cli/v2 v2.27.5 // indirect
132132
github.com/valyala/bytebufferpool v1.0.0 // indirect
133-
github.com/valyala/fasthttp v1.55.0 // indirect
134-
github.com/valyala/tcplisten v1.0.0 // indirect
133+
github.com/valyala/fasthttp v1.65.0 // indirect
135134
github.com/volatiletech/inflect v0.0.1 // indirect
136135
github.com/volatiletech/strmangle v0.0.7-0.20240503230658-86517898275a // indirect
137136
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
@@ -142,13 +141,12 @@ require (
142141
go.opentelemetry.io/otel/metric v1.37.0 // indirect
143142
go.opentelemetry.io/otel/trace v1.37.0 // indirect
144143
go.uber.org/multierr v1.11.0 // indirect
145-
golang.org/x/crypto v0.41.0 // indirect
146-
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect
147-
golang.org/x/mod v0.27.0 // indirect
148-
golang.org/x/net v0.43.0 // indirect
149-
golang.org/x/sys v0.35.0 // indirect
150-
golang.org/x/text v0.28.0 // indirect
151-
golang.org/x/tools v0.36.0 // indirect
144+
golang.org/x/crypto v0.43.0 // indirect
145+
golang.org/x/mod v0.28.0 // indirect
146+
golang.org/x/net v0.45.0 // indirect
147+
golang.org/x/sys v0.37.0 // indirect
148+
golang.org/x/text v0.30.0 // indirect
149+
golang.org/x/tools v0.37.0 // indirect
152150
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
153151
google.golang.org/genproto/googleapis/api v0.0.0-20250818200422-3122310a409c // indirect
154152
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect

0 commit comments

Comments
 (0)