PackageTrack
Sign in Get early access

github.com/celestiaorg/celestia-node

v0.31.4 #2188 most downloaded on Go modules celestiaorg/celestia-node

What this package is like to depend on

Last release 4 days ago

20 Aug 2026

Ships on a steady schedule

a new release about every 9 days

Rarely documented

notes for 2 of 68 stable releases

Nothing withdrawn

no release was ever pulled

5 years old

1126 releases · first in 2021

131 releases in the last 12 months

see the full history below

Release timeline

1126 releases · Sep 2021 to Aug 2026
2022 2023 2024 2025 2026
Release Pre-release

Releases

latest 60 of 1126
  1. v0.31.4 09 Jul 2026
    Release notes

    What's Changed

    Full Changelog: v0.31.3...v0.31.4

    Open source →
  2. v0.31.4-mocha 09 Jul 2026 pre-release
    Release notes

    What's Changed

    Full Changelog: v0.31.3-mocha...v0.31.4-mocha

    Open source →
  3. v0.31.4-corto 09 Jul 2026 pre-release
    Release notes

    This release introduces Corto

    Full Changelog: v0.31.3...v0.31.4-corto

    Open source →
  4. v0.31.4-arabica 09 Jul 2026 pre-release
    Release notes

    What's Changed

    Full Changelog: v0.31.3-arabica...v0.31.4-arabica

    Open source →
  5. v0.31.3 17 Jun 2026
    Release notes

    This release adds support for celestia-app v9 and reduces network block time to 3s. Once the v9 activation height takes place, upgrading to this version is required.

    ⚠️ Action Required: run config-update

    This release adds new config fields. After upgrading the binary and before starting your node, run:

    celestia bridge config-update --p2p.network mainnet
    
    celestia light config-update --p2p.network mainnet

    This merges newly-added fields (e.g. the RPC RateLimit section) into your existing config.toml while preserving your custom values. Skipping this step means new options silently fall back to defaults and may log config warnings. Review your config.toml afterwards to confirm custom values were kept.

    To enable multi-source ingestion, add the extra endpoints to your bridge node config file:

    [Core]
      IP = "<primary_ip>"
      Port = "<primary_port>"
      TLSEnabled = false
      XTokenPath = ""
      AdditionalCoreEndpoints = [
      { IP = "<secondary_ip>", Port = "<secondary_port>", TLSEnabled = false, XTokenPath = "" },
    ]

    Key Highlights:

    • celestia-app v9 / 3s block time (#4872, #4950, #4970) — Bumps to app v9 (via v8 → v8.0.3-mocha → v9) and go-square v4. Block time drops from 6s to 3s; syncer, DASer and pruner timing constants are scaled accordingly.
    • RPC server hardening (#4909) — Request size capped at 16 MiB (down from 100 MiB), HTTP Read/Write/Idle timeouts, a 500 concurrent-connection limit, and optional per-IP rate limiting (disabled by default).
    • Shrex server resource & rate limiting (#4898, #4900) — Adds resource limiting and per-peer-IP rate limiting to the shrex server.
    • go-fraud removed (#4934) — Fraud proofs have been non-functional since the shwap migration; the dependency, the fraud RPC namespace and BEFP code are removed.
    • More useful node info (#4341) — node.Info.type is now a string (e.g. "Bridge") and reports network_id; adds a new NetworkID endpoint.
    • Nightly bootstrapper health check (#4922) — CI now monitors bootstrapper reachability.
    • Observability metrics (#5011) — metrics added across key hot paths for diagnostics.

    ⚠️ Breaking Changes

    • fraud RPC namespace removed (#4934) — Calls to fraud.Subscribe/fraud.Get now error; the Fraud field is removed from the Go RPC client.
    • node.Info shape change (#4341) — type is now a string instead of an int; clients parsing it as a number must update.
    • RPC limits enforced (#4909) — Requests over 16 MiB and connections over the limit are now rejected.
    • header.GetRangeByHeight enforces MaxRangeRequestSize (#4945) — Oversized range requests now return an error over RPC (matching the P2P server).
    • Commitment.String() is now hex-encoded (#4413) — Anything relying on the previous raw byte output must update.

    What's Changed

    • bump: bump celestia-node to app@v8 and go-square@v4 by @vgonkivs in #4872
    • chore(deps): bump actions/checkout from 4 to 6 by @dependabot[bot] in #4876
    • chore(deps): bump actions/cache from 4 to 5 by @dependabot[bot] in #4881
    • chore(deps): bump actions/upload-artifact from 6 to 7 by @dependabot[bot] in #4878
    • chore(deps): bump actions/github-script from 7 to 8 by @dependabot[bot] in #4879
    • chore(deps): bump goreleaser/goreleaser-action from 6 to 7 by @dependabot[bot] in #4880
    • chore(deps): bump go.opentelemetry.io/proto/otlp from 1.9.0 to 1.10.0 by @dependabot[bot] in #4883
    • chore(deps): bump github.com/celestiaorg/tastora from 0.8.0 to 0.16.0 in /nodebuilder/tests/tastora by @dependabot[bot] in #4890
    • chore(deps): bump codecov/codecov-action from 5.5.2 to 5.5.3 in the patch-updates group by @dependabot[bot] in #4875
    • docs: fix project name in supported architectures section by @Ocheretovich in #4848
    • ci: selective unit testing based on changed packages by @walldiss in #4815
    • fix(state): prevent panic on overflow in amount validation by @rootulp in #4873
    • refactor(state): extract txClient by @vgonkivs in #4866
    • fix(metrics): fix critical metric naming bugs and global state by @walldiss in #4870
    • fix(cel-shed): prevent panic on missing root hash by @Ocheretovich in #4809
    • chore(deps): bump github.com/gammazero/workerpool from 1.1.3 to 1.2.1 by @dependabot[bot] in #4885
    • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.39.0 to 1.42.0 by @dependabot[bot] in #4886
    • fix(metrics): add missing units and standardize error context handling by @walldiss in #4871
    • chore(deps): bump github.com/libp2p/go-libp2p-kad-dht from 0.38.0 to 0.39.0 by @dependabot[bot] in #4884
    • chore(deps): bump crazy-max/ghaction-import-gpg from 6 to 7 by @dependabot[bot] in #4877
    • fix(blob): add subtree roots completeness check in CommitmentProof.Verify() by @rootulp in #4874
    • chore: remove go-libp2p-pubsub fork, use upstream by @walldiss in #4893
    • fix: align go.mod parity between root and tastora by @walldiss in #4891
    • chore(deps): bump go.opentelemetry.io/otel/metric from 1.42.0 to 1.43.0 by @dependabot[bot] in #4903
    • chore(deps): bump codecov/codecov-action from 5.5.3 to 6.0.0 by @dependabot[bot] in #4894
    • chore(deps): bump github.com/go-jose/go-jose/v4 from 4.1.3 to 4.1.4 by @dependabot[bot] in #4899
    • chore(deps): bump go.opentelemetry.io/otel/sdk from 1.42.0 to 1.43.0 by @dependabot[bot] in #4904
    • chore(deps): bump go.opentelemetry.io/otel/sdk/metric from 1.42.0 to 1.43.0 by @dependabot[bot] in #4905
    • chore(deps): bump github.com/celestiaorg/go-header from 0.8.5-rc to 0.8.5 by @dependabot[bot] in #4906
    • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace from 1.42.0 to 1.43.0 by @dependabot[bot] in #4907
    • chore(deps): bump github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream from 1.7.7 to 1.7.8 by @dependabot[bot] in #4917
    • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp from 1.42.0 to 1.43.0 by @dependabot[bot] in #4924
    • fix(p2p): remove broken mocha bootstrappers by @rootulp in #4913
    • chore(shrex/client): change log level in shrex-client by @vgonkivs in #4927
    • chore(make): add mod target to tidy all Go modules by @rach-id in #4925
    • chore: add CLAUDE.md with Hacken bug bounty PR guidelines by @rootulp in #4911
    • feat: add nightly bootstrapper health check by @rootulp in #4922
    • chore(deps): bump actions/checkout from 4 to 6 by @dependabot[bot] in #4938
    • feat(shrex): add resource limitting to shrex server by @Wondertan in #4898
    • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.42.0 to 1.43.0 by @dependabot[bot] in #4908
    • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.97.1 to 1.97.3 by @dependabot[bot] in #4916
    • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.97.1 to 1.97.3 in /nodebuilder/tests/tastora by @dependabot[bot] in #4918
    • chore(deps): bump actions/github-script from 8 to 9 by @dependabot[bot] in #4937
    • refactor!: remove go-fraud dependency and related dead code by @rootulp in #4934
    • docs(adr-013): clarify Upload behavior and rationale for Upload/Submit split by @walldiss in #4947
    • fix!(header): enforce MaxRangeRequestSize in GetRangeByHeight by @vgonkivs in #4945
    • feat(shrex): add per-peer-IP rate limiting to shrex server by @Wondertan in #4900
    • fix(share/shwap/getters): set span err only if all getters truly failed, otherwise just record err in span for single getter failure by @renaynay in #4130
    • refactor(blob)!: use hex encoding for Commitment String() output by @Galoretka in #4413
    • chore(deps): bump github.com/hashicorp/go-getter from 1.7.9 to 1.8.6 by @dependabot[bot] in #4940
    • fix: resubscribe to consensus node in case of dead connection by @vgonkivs in #4948
    • chore(deps): bump node to app v8.0.3-mocha by @vgonkivs in #4950
    • fix(daser): remove duplicated EDS Notification by @vgonkivs in #4959
    • ci: set least-privilege GITHUB_TOKEN permissions by @rootulp in #4956
    • ci: pin third-party actions to commit SHAs by @rootulp in #4957
    • fix(core): use block height value in Exchange.Get error strings by @cuiweixie in #4935
    • fix: correct cleanup usage in pidstore tests by @enlightened88 in #4942
    • chore(deps): bump tastora to v0.19.0 to resolve docker/moby CVEs by @rootulp in #4955
    • fix(share/cmd): bounds-check index parsing in share CLI by @rootulp in #4954
    • fix(header/sync): bump recencyThreshold to 3x blockTime by @vgonkivs in #4966
    • chore: bump node to app v9 commit by @ninabarbakadze in #4970
    • chore(deps): bump go.opentelemetry.io/contrib/bridges/prometheus from 0.67.0 to 0.68.0 by @dependabot[bot] in #4975
    • chore(deps): bump slackapi/slack-github-action from 3.0.1 to 3.0.2 in the patch-updates group by @dependabot[bot] in #4968
    • chore(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.15.1-0.20260318184623-12372d99a0bc to 0.16.0 by @dependabot[bot] in #4973
    • chore(deps): bump goreleaser/goreleaser-action from 7.1.0 to 7.2.1 by @dependabot[bot] in #4969
    • chore(deps): bump the patch-updates group across 1 directory with 2 updates by @dependabot[bot] in #4977
    • chore(deps): bump alpine from 3.23.3 to 3.23.4 in the patch-updates group across 1 directory by @dependabot[bot] in #4952
    • chore(deps): bump slackapi/slack-github-action from 3.0.2 to 3.0.3 in the patch-updates group by @dependabot[bot] in #4979
    • fix(state): include ABCI result code in balance query error by @cuiweixie in #4936
    • chore(headertest): use ErrorIs on original error and NoError for success by @VolodymyrBg in #4535
    • fix: interface compliance check for API struct by @brawncode in #4488
    • chore(deps): bump github.com/ipld/go-ipld-prime from 0.22.0 to 0.23.0 in /nodebuilder/tests/tastora by @dependabot[bot] in #4989
    • docgen: include Authorization header requirement in OpenRPC method de… by @Sushil-19 in #4818
    • chore(deps): bump go.uber.org/zap from 1.27.1 to 1.28.0 in /nodebuilder/tests/tastora by @dependabot[bot] in #4985
    • chore(deps): bump github.com/ipld/go-ipld-prime from 0.22.0 to 0.23.0 by @dependabot[bot] in #4988
    • fix(p2p): re-add DevOps-managed Mocha bootstrappers by @rootulp in #4995
    • chore(deps): bump go.uber.org/zap to v1.28.0 for parity with tastora by @rootulp in #4996
    • fix: close stats file on write error by @Radovenchyk in #4967
    • fix: add teardown logic to clean up Docker networks in tastora tests by @hawkadrian in #4645
    • feat(nodebuilder/node)!: More useful node info (type is string and report network ID) by @renaynay in #4341
    • misc(share/shwap/p2p/shrex): add traces to shrex client/server hotpaths by @renaynay in #4537
    • chore(deps): bump peaceiris/actions-gh-pages from 4.0.0 to 4.1.0 by @dependabot[bot] in #5001
    • fix(test): fix data race during app and node startups by @vgonkivs in #5007
    • feat!(rpc): harden RPC server by @Wondertan in #4909
    • fix(shwap): reject nil inputs in proto decoders by @vgonkivs in #5008
    • chore(deps): bump celestia-app to v9 arabica release by @rach-id in #4999
    • chore(deps): bump the patch-updates group across 2 directories with 2 updates by @dependabot[bot] in #5012
    • chore: bump app to v9.0.1-mocha (#5022) by @ninabarbakadze in #5032
    • fix(shrex/server): raise per-peer service-scope limits for shrex server by @vgonkivs in #5038
    • mics(metrics): add metrics to improve observability (#5011) by @vgonkivs in #5048
    • feat(core): multi-source block ingestion for the bridge listener (#5018) by @vgonkivs in #5049
    • fix(metrics): enable metrics in daser for bridge nodes (#5050) by @vgonkivs in #5051
    • chore: bump app to v9.0.4 by @ninabarbakadze in #5068

    New Contributors

    Note truncated.

    Open source →
  6. v0.31.3-mocha 12 Jun 2026 pre-release
    Release notes

    What's Changed

    Full Changelog: v0.31.2-mocha...v0.31.3-mocha

    Open source →
  7. v0.31.3-arabica 12 Jun 2026 pre-release
    Release notes

    What's Changed

    Full Changelog: v0.31.2-arabica...v0.31.3-arabica

    Open source →
  8. v0.31.2-mocha 10 Jun 2026 pre-release
    Release notes

    What's Changed:

    Highlights:

    Multi-source block ingestion (#5018) — the bridge listener can now ingest blocks from multiple Celestia-Core endpoints concurrently and tolerate any
    single one failing:

    • new blocks are sourced from all configured endpoints but downloaded once (from the source that announces a height first), with no duplicate fetches;
    • per-source sync state and stricter source handling (duplicate endpoints rejected; the node fails fast if the fastest source for a height is on the
      wrong chain);
    • Core.AdditionalCoreEndpoints is now used not only for load-balancing transaction submission but also as additional block sources (config-file only,
      no CLI flag).

    Observability metrics (#5011) — metrics added across key hot paths for diagnostics:

    • RPC server (api/rpc), core listener (block events), store, and pruner;
    • improved node-info metric reporting.

    Action Required (optional):

    To enable multi-source ingestion, add the extra endpoints to your bridge node config file:

    [Core]
      IP = "<primary_ip>"
      Port = "<primary_port>"
      TLSEnabled = false
      XTokenPath = ""
      AdditionalCoreEndpoints = [
      { IP = "<secondary_ip>", Port = "<secondary_port>", TLSEnabled = false, XTokenPath = "" },
    ]

    Full Changelog: v0.31.1-mocha...v0.31.2-mocha

    Open source →
  9. v0.31.2-arabica 10 Jun 2026 pre-release
    Release notes

    What's Changed:

    Highlights:

    Multi-source block ingestion (#5018) — the bridge listener can now ingest blocks from multiple Celestia-Core endpoints concurrently and tolerate any
    single one failing:

    • new blocks are sourced from all configured endpoints but downloaded once (from the source that announces a height first), with no duplicate fetches;
    • per-source sync state and stricter source handling (duplicate endpoints rejected; the node fails fast if the fastest source for a height is on the
      wrong chain);
    • Core.AdditionalCoreEndpoints is now used not only for load-balancing transaction submission but also as additional block sources (config-file only,
      no CLI flag).

    Observability metrics (#5011) — metrics added across key hot paths for diagnostics:

    • RPC server (api/rpc), core listener (block events), store, and pruner;
    • improved node-info metric reporting.

    Action Required (optional):

    To enable multi-source ingestion, add the extra endpoints to your config file:

    [Core]
      IP = "<primary_ip>"
      Port = "<primary_port>"
      TLSEnabled = false
      XTokenPath = ""
      AdditionalCoreEndpoints = [
      { IP = "<secondary_ip>", Port = "<secondary_port>", TLSEnabled = false, XTokenPath = "" },
    ]

    Full Changelog: v0.31.1-arabica...v0.31.2-arabica

    Open source →
  10. v0.31.1-mocha 04 Jun 2026 pre-release
    Release notes

    What's Changed

    • fix(shrex/server): raise per-peer service-scope limits for shrex server by @vgonkivs in #5038

    Full Changelog: v0.31.0-mocha...v0.31.1-mocha

    Open source →
  11. v0.31.1-arabica 04 Jun 2026 pre-release

    Nothing published for this version

  12. v0.31.0-mocha 02 Jun 2026 pre-release

    Nothing published for this version

  13. v0.31.0-arabica.0.20260820091017-ee6b6435e8fb 20 Aug 2026 pre-release

    Nothing published for this version

  14. v0.31.0-arabica.0.20260819155141-6e396e41e00f 19 Aug 2026 pre-release

    Nothing published for this version

  15. v0.31.0-arabica.0.20260819090600-87a0195595ae 19 Aug 2026 pre-release

    Nothing published for this version

  16. v0.31.0-arabica.0.20260812113800-3b8880a508df 12 Aug 2026 pre-release

    Nothing published for this version

  17. v0.31.0-arabica.0.20260805100618-a36af08d0f98 05 Aug 2026 pre-release

    Nothing published for this version

  18. v0.31.0-arabica.0.20260804142242-6c4aa03657c5 04 Aug 2026 pre-release

    Nothing published for this version

  19. v0.31.0-arabica.0.20260803135954-b0528a737115 03 Aug 2026 pre-release

    Nothing published for this version

  20. v0.31.0-arabica.0.20260728095914-19e5541ec909 28 Jul 2026 pre-release

    Nothing published for this version

  21. v0.31.0-arabica.0.20260721144623-00e20298dcb1 21 Jul 2026 pre-release

    Nothing published for this version

  22. v0.31.0-arabica.0.20260715133640-26c5e393e006 15 Jul 2026 pre-release

    Nothing published for this version

  23. v0.31.0-arabica.0.20260713100541-58c50c64c81d 13 Jul 2026 pre-release

    Nothing published for this version

  24. v0.31.0-arabica.0.20260709135753-585230304490 09 Jul 2026 pre-release

    Nothing published for this version

  25. v0.31.0-arabica.0.20260706150636-e04ba209564a 06 Jul 2026 pre-release

    Nothing published for this version

  26. v0.31.0-arabica.0.20260706133443-483482fa4aee 06 Jul 2026 pre-release

    Nothing published for this version

  27. v0.31.0-arabica.0.20260703132032-7449a22ae94e 03 Jul 2026 pre-release

    Nothing published for this version

  28. v0.31.0-arabica.0.20260629134200-3032b2449c30 29 Jun 2026 pre-release

    Nothing published for this version

  29. v0.31.0-arabica.0.20260624212856-a503741c0bd7 24 Jun 2026 pre-release

    Nothing published for this version

  30. v0.31.0-arabica.0.20260623121744-1fba2841d93f 23 Jun 2026 pre-release

    Nothing published for this version

  31. v0.31.0-arabica.0.20260617140024-72d62935bced 17 Jun 2026 pre-release

    Nothing published for this version

  32. v0.31.0-arabica.0.20260612124744-b4738cb8df15 12 Jun 2026 pre-release

    Nothing published for this version

  33. v0.31.0-arabica.0.20260610073341-f694094fb018 10 Jun 2026 pre-release

    Nothing published for this version

  34. v0.31.0-arabica.0.20260608193906-f61ffd47eb24 08 Jun 2026 pre-release

    Nothing published for this version

  35. v0.31.0-arabica.0.20260604121320-fff52cb6689b 04 Jun 2026 pre-release

    Nothing published for this version

  36. v0.31.0-arabica.0.20260602135425-704d69a9acf8 02 Jun 2026 pre-release

    Nothing published for this version

  37. v0.31.0-arabica.0.20260601083314-0c15ed491c95 01 Jun 2026 pre-release

    Nothing published for this version

  38. v0.31.0-arabica.0.20260527100916-388cc825d8bb 27 May 2026 pre-release

    Nothing published for this version

  39. v0.31.0-arabica 25 May 2026 pre-release

    Nothing published for this version

  40. v0.30.2 21 Apr 2026

    Nothing published for this version

  41. v0.30.2-mocha 09 Apr 2026 pre-release

    Nothing published for this version

  42. v0.30.2-arabica 09 Apr 2026 pre-release

    Nothing published for this version

  43. v0.30.1-mocha 08 Apr 2026 pre-release

    Nothing published for this version

  44. v0.30.0-rc0 01 Apr 2026 pre-release

    Nothing published for this version

  45. v0.30.0-mocha 07 Apr 2026 pre-release

    Nothing published for this version

  46. v0.30.0-arabica 07 Apr 2026 pre-release

    Nothing published for this version

  47. v0.29.3-mocha.0.20260519185704-9adc59e08e85 19 May 2026 pre-release

    Nothing published for this version

  48. v0.29.3-mocha.0.20260519071616-7657f952d435 19 May 2026 pre-release

    Nothing published for this version

  49. v0.29.3-mocha.0.20260507190820-7cb333a0cd82 07 May 2026 pre-release

    Nothing published for this version

  50. v0.29.3-mocha.0.20260427115656-23bec13f01a3 27 Apr 2026 pre-release

    Nothing published for this version

  51. v0.29.3-mocha.0.20260423184617-58f9c294701b 23 Apr 2026 pre-release

    Nothing published for this version

  52. v0.29.3-mocha.0.20260423135451-2d4655d08ef3 23 Apr 2026 pre-release

    Nothing published for this version

  53. v0.29.3-mocha.0.20260422212644-723e9b695a0e 22 Apr 2026 pre-release

    Nothing published for this version

  54. v0.29.3-mocha.0.20260415161749-128c6d92f791 15 Apr 2026 pre-release

    Nothing published for this version

  55. v0.29.3-mocha.0.20260401134719-e8c4f70dbea0 01 Apr 2026 pre-release

    Nothing published for this version

  56. v0.29.3-mocha.0.20260325200132-1a4a03fdfe2c 25 Mar 2026 pre-release

    Nothing published for this version

  57. v0.29.3-mocha.0.20260311165717-08aeec7116e7 11 Mar 2026 pre-release

    Nothing published for this version

  58. v0.29.3-mocha 10 Mar 2026 pre-release

    Nothing published for this version

  59. v0.29.3-arabica 10 Mar 2026 pre-release

    Nothing published for this version

  60. v0.29.2-arabica 09 Mar 2026 pre-release

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive