Bump version in prep to cut v6.4.4#3393
Merged
masih merged 1 commit intorelease/v6.4from May 5, 2026
Merged
Conversation
|
The latest Buf updates on your PR. Results from workflow Buf / buf (pull_request).
|
|
Suggested version: Changes in diff --git a/go.mod b/go.mod
index 5f5ac01eb..db681f7bf 100644
--- a/go.mod
+++ b/go.mod
@@ -27,6 +27,7 @@ require (
github.com/ethereum/evmc/v12 v12.1.0
github.com/ethereum/go-ethereum v1.16.8
github.com/fortytw2/leaktest v1.3.0
+ github.com/go-git/go-git/v5 v5.17.2
github.com/go-kit/kit v0.13.0
github.com/gofrs/flock v0.13.0
github.com/gogo/gateway v1.1.0
@@ -69,6 +70,7 @@ require (
github.com/rakyll/statik v0.1.7
github.com/rs/cors v1.11.1
github.com/sasha-s/go-deadlock v0.3.5
+ github.com/segmentio/kafka-go v0.4.50
github.com/sei-protocol/goutils v0.0.2
github.com/sei-protocol/sei-load v0.0.0-20251007135253-78fbdc141082
github.com/sei-protocol/sei-tm-db v0.0.5
@@ -110,9 +112,23 @@ require (
)
require (
+ dario.cat/mergo v1.0.0 // indirect
+ github.com/ProtonMail/go-crypto v1.1.6 // indirect
+ github.com/cloudflare/circl v1.6.3 // indirect
+ github.com/cyphar/filepath-securejoin v0.4.1 // indirect
+ github.com/emirpasic/gods v1.18.1 // indirect
+ github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
+ github.com/go-git/go-billy/v5 v5.8.0 // indirect
+ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
+ github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
+ github.com/pjbgf/sha1cd v0.3.2 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
+ github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
+ github.com/skeema/knownhosts v1.3.1 // indirect
+ github.com/xanzy/ssh-agent v0.3.3 // indirect
+ gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
@@ -260,10 +276,11 @@ require (
go.uber.org/zap v1.27.0 // indirect
go.yaml.in/yaml/v2 v2.4.3 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
+ golang.org/x/image v0.36.0
golang.org/x/mod v0.32.0
golang.org/x/telemetry v0.0.0-20260109210033-bd525da824e2 // indirect
golang.org/x/term v0.39.0 // indirect
- golang.org/x/text v0.33.0 // indirect
+ golang.org/x/text v0.34.0 // indirect
golang.org/x/tools v0.41.0 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/genproto v0.0.0-20250603155806-513f23925822 // indirectdiff --git a/sei-db/db_engine/litt/go.mod b/sei-db/db_engine/litt/go.mod
new file mode 100644
index 000000000..5d17a909b
--- /dev/null
+++ b/sei-db/db_engine/litt/go.mod
@@ -0,0 +1,106 @@
+// Nested Go module boundary for the LittDB subtree.
+//
+// The sei-db/db_engine/litt/ tree is a raw import from the upstream LittDB
+// project (originally vendored from github.com/Layr-Labs/eigenda/litt). It
+// has not yet been adapted to this repo's dependency set — all files are
+// guarded by `//go:build littdb_wip`.
+//
+// Declaring this subtree as a separate module hides it from the parent
+// module's `go mod tidy`, `go test ./...`, `go build ./...`, `go vet ./...`,
+// and `golangci-lint run` — none of which cross module boundaries. See
+// `sei-db/db_engine/litt/README.md` ("Work-in-progress guard") for the
+// incremental integration policy.
+//
+// Integration status
+// ------------------
+// Internal cross-package imports have been rewritten from the upstream
+// `github.com/Layr-Labs/eigenda/litt/...` prefix to this repo's native
+// `github.com/sei-protocol/sei-chain/sei-db/db_engine/litt/...` prefix, and
+// the helpers originally imported from `github.com/Layr-Labs/eigenda/common`
+// (cache, structures, enforce, pprof), `github.com/Layr-Labs/eigenda/core`
+// and `github.com/Layr-Labs/eigenda/test{,/random}` have been pulled in-tree
+// under `./util/`. The subtree currently builds under `-tags littdb_wip`.
+//
+// Logging has been migrated from `github.com/Layr-Labs/eigensdk-go/logging`
+// to the standard library's `log/slog`; no external logger dependency
+// remains in this subtree.
+//
+// This file (and this module boundary) can be removed once the litt package
+// fully compiles and passes lint inside the parent sei-chain module.
+module github.com/sei-protocol/sei-chain/sei-db/db_engine/litt
+
+go 1.25.6
+
+require (
+ github.com/cockroachdb/pebble/v2 v2.1.3
+ github.com/dchest/siphash v1.2.3
+ github.com/docker/docker v28.2.2+incompatible
+ github.com/docker/go-connections v0.5.0
+ github.com/docker/go-units v0.5.0
+ github.com/prometheus/client_golang v1.23.2
+ github.com/stretchr/testify v1.11.1
+ github.com/urfave/cli/v2 v2.27.7
+ golang.org/x/crypto v0.50.0
+ golang.org/x/time v0.15.0
+)
+
+require (
+ github.com/DataDog/zstd v1.5.7 // indirect
+ github.com/Microsoft/go-winio v0.6.2 // indirect
+ github.com/RaduBerinde/axisds v0.0.0-20250419182453-5135a0650657 // indirect
+ github.com/RaduBerinde/btreemap v0.0.0-20250419174037-3d62b7205d54 // indirect
+ github.com/beorn7/perks v1.0.1 // indirect
+ github.com/cespare/xxhash/v2 v2.3.0 // indirect
+ github.com/cockroachdb/crlib v0.0.0-20241112164430-1264a2edc35b // indirect
+ github.com/cockroachdb/errors v1.11.3 // indirect
+ github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
+ github.com/cockroachdb/redact v1.1.5 // indirect
+ github.com/cockroachdb/swiss v0.0.0-20251224182025-b0f6560f979b // indirect
+ github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
+ github.com/containerd/errdefs v1.0.0 // indirect
+ github.com/containerd/errdefs/pkg v0.3.0 // indirect
+ github.com/containerd/log v0.1.0 // indirect
+ github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/distribution/reference v0.6.0 // indirect
+ github.com/felixge/httpsnoop v1.0.4 // indirect
+ github.com/getsentry/sentry-go v0.27.0 // indirect
+ github.com/go-logr/logr v1.4.3 // indirect
+ github.com/go-logr/stdr v1.2.2 // indirect
+ github.com/gogo/protobuf v1.3.2 // indirect
+ github.com/golang/snappy v0.0.5-0.20231225225746-43d5d4cd4e0e // indirect
+ github.com/klauspost/compress v1.18.0 // indirect
+ github.com/kr/pretty v0.3.1 // indirect
+ github.com/kr/text v0.2.0 // indirect
+ github.com/minio/minlz v1.0.1-0.20250507153514-87eb42fe8882 // indirect
+ github.com/moby/docker-image-spec v1.3.1 // indirect
+ github.com/moby/sys/atomicwriter v0.1.0 // indirect
+ github.com/moby/term v0.5.0 // indirect
+ github.com/morikuni/aec v1.0.0 // indirect
+ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
+ github.com/opencontainers/go-digest v1.0.0 // indirect
+ github.com/opencontainers/image-spec v1.1.1 // indirect
+ github.com/pkg/errors v0.9.1 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/prometheus/client_model v0.6.2 // indirect
+ github.com/prometheus/common v0.66.1 // indirect
+ github.com/prometheus/procfs v0.16.1 // indirect
+ github.com/rogpeppe/go-internal v1.14.1 // indirect
+ github.com/russross/blackfriday/v2 v2.1.0 // indirect
+ github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
+ go.opentelemetry.io/auto/sdk v1.2.1 // indirect
+ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.68.0 // indirect
+ go.opentelemetry.io/otel v1.43.0 // indirect
+ go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 // indirect
+ go.opentelemetry.io/otel/metric v1.43.0 // indirect
+ go.opentelemetry.io/otel/trace v1.43.0 // indirect
+ go.yaml.in/yaml/v2 v2.4.2 // indirect
+ golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
+ golang.org/x/sys v0.43.0 // indirect
+ golang.org/x/text v0.36.0 // indirect
+ google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
+ google.golang.org/protobuf v1.36.11 // indirect
+ gopkg.in/yaml.v3 v3.0.1 // indirect
+ gotest.tools/v3 v3.5.2 // indirect
+)
Automatically created GitHub ReleaseA draft GitHub Release has been created. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v6.4.4 tag cut.