Skip to content

Commit 6d9a2b7

Browse files
ex-3692-update-cloudevent-version-in-fetch (#33)
* update cloudevent version & swagger
1 parent b165de9 commit 6d9a2b7

5 files changed

Lines changed: 75 additions & 879 deletions

File tree

docs/docs.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,10 @@ const docTemplate = `{
417417
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
418418
"type": "string"
419419
},
420+
"signature": {
421+
"description": "Signature hold the signature of the a cloudevent's data field.",
422+
"type": "string"
423+
},
420424
"source": {
421425
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
422426
"type": "string"
@@ -478,6 +482,10 @@ const docTemplate = `{
478482
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
479483
"type": "string"
480484
},
485+
"signature": {
486+
"description": "Signature hold the signature of the a cloudevent's data field.",
487+
"type": "string"
488+
},
481489
"source": {
482490
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
483491
"type": "string"

docs/swagger.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,10 @@
408408
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
409409
"type": "string"
410410
},
411+
"signature": {
412+
"description": "Signature hold the signature of the a cloudevent's data field.",
413+
"type": "string"
414+
},
411415
"source": {
412416
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
413417
"type": "string"
@@ -469,6 +473,10 @@
469473
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
470474
"type": "string"
471475
},
476+
"signature": {
477+
"description": "Signature hold the signature of the a cloudevent's data field.",
478+
"type": "string"
479+
},
472480
"source": {
473481
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
474482
"type": "string"

docs/swagger.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ definitions:
2828
description: Producer is a specific instance, process or device that creates
2929
the data structure describing the CloudEvent.
3030
type: string
31+
signature:
32+
description: Signature hold the signature of the a cloudevent's data field.
33+
type: string
3134
source:
3235
description: Source is the context in which the event happened. In a distributed
3336
system it might consist of multiple Producers.
@@ -86,6 +89,9 @@ definitions:
8689
description: Producer is a specific instance, process or device that creates
8790
the data structure describing the CloudEvent.
8891
type: string
92+
signature:
93+
description: Signature hold the signature of the a cloudevent's data field.
94+
type: string
8995
source:
9096
description: Source is the context in which the event happened. In a distributed
9197
system it might consist of multiple Producers.

go.mod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ module github.com/DIMO-Network/fetch-api
33
go 1.24
44

55
require (
6-
github.com/ClickHouse/clickhouse-go/v2 v2.34.0
6+
github.com/ClickHouse/clickhouse-go/v2 v2.35.0
77
github.com/DIMO-Network/clickhouse-infra v0.0.3
8-
github.com/DIMO-Network/cloudevent v0.1.0
8+
github.com/DIMO-Network/cloudevent v0.1.1
99
github.com/DIMO-Network/shared v0.12.7
1010
github.com/aws/aws-sdk-go-v2 v1.36.3
1111
github.com/aws/aws-sdk-go-v2/credentials v1.17.48
12-
github.com/aws/aws-sdk-go-v2/service/s3 v1.79.3
12+
github.com/aws/aws-sdk-go-v2/service/s3 v1.79.4
1313
github.com/ethereum/go-ethereum v1.15.11
1414
github.com/gofiber/contrib/jwt v1.0.10
1515
github.com/gofiber/fiber/v2 v2.52.6
@@ -28,7 +28,7 @@ require (
2828
)
2929

3030
require (
31-
github.com/ClickHouse/ch-go v0.65.1 // indirect
31+
github.com/ClickHouse/ch-go v0.66.0 // indirect
3232
github.com/DIMO-Network/yaml v0.1.0 // indirect
3333
github.com/KyleBanks/depth v1.2.1 // indirect
3434
github.com/MicahParks/keyfunc/v2 v2.1.0 // indirect
@@ -41,7 +41,7 @@ require (
4141
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
4242
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
4343
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
44-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.1 // indirect
44+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.2 // indirect
4545
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
4646
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
4747
github.com/aws/aws-sdk-go-v2/service/kms v1.35.3 // indirect
@@ -60,7 +60,7 @@ require (
6060
github.com/google/uuid v1.6.0 // indirect
6161
github.com/holiman/uint256 v1.3.2 // indirect
6262
github.com/josharian/intern v1.0.0 // indirect
63-
github.com/klauspost/compress v1.17.11 // indirect
63+
github.com/klauspost/compress v1.18.0 // indirect
6464
github.com/mailru/easyjson v0.7.6 // indirect
6565
github.com/mattn/go-colorable v0.1.13 // indirect
6666
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -86,17 +86,17 @@ require (
8686
github.com/valyala/fasthttp v1.55.0 // indirect
8787
github.com/valyala/tcplisten v1.0.0 // indirect
8888
github.com/volatiletech/inflect v0.0.1 // indirect
89-
github.com/volatiletech/sqlboiler/v4 v4.19.0 // indirect
89+
github.com/volatiletech/sqlboiler/v4 v4.19.1 // indirect
9090
github.com/volatiletech/strmangle v0.0.7-0.20240503230658-86517898275a // indirect
9191
go.opentelemetry.io/otel v1.35.0 // indirect
9292
go.opentelemetry.io/otel/trace v1.35.0 // indirect
9393
golang.org/x/crypto v0.38.0 // indirect
9494
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
95-
golang.org/x/net v0.36.0 // indirect
95+
golang.org/x/net v0.40.0 // indirect
9696
golang.org/x/sys v0.33.0 // indirect
9797
golang.org/x/text v0.25.0 // indirect
9898
golang.org/x/time v0.9.0 // indirect
99-
golang.org/x/tools v0.30.0 // indirect
99+
golang.org/x/tools v0.32.0 // indirect
100100
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
101101
google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect
102102
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)