@blinklabs/dingo 0.24.0 → 0.24.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/RELEASE_NOTES.md +46 -0
  2. package/package.json +1 -1
package/RELEASE_NOTES.md CHANGED
@@ -1,6 +1,52 @@
1
1
  # Release Notes
2
2
 
3
3
 
4
+ ## v0.24.0 (March 11, 2026)
5
+
6
+ **Title:** Peer sharing controls and import visibility
7
+
8
+ **Date:** March 11, 2026
9
+
10
+ **Version:** v0.24.0
11
+
12
+ Hi folks! Here’s what we shipped in v0.24.0.
13
+
14
+ ### ✨ What's New
15
+
16
+ - **Peer sharing controls:** Networking is easier to lock down because you can now explicitly enable or disable peer sharing.
17
+ - **CLI help text:** Running the tool is easier because the root command now includes clearer Short and Long help text.
18
+ - **Import progress reporting:** Large data setup runs feel less like a black box because Mithril and ledger/UTxO imports now emit rate-limited progress updates.
19
+ - **Benchmark suite:** Performance testing is more consistent because the benchmark tooling now includes a baseline and detailed ingestion benchmarks.
20
+
21
+ ### 💪 Improvements
22
+
23
+ - **Docs:** Evaluating Dingo is safer because the README now includes expanded usage, deployment, and DevNet guidance plus a clear “not for production” warning.
24
+ - **Dev mode:** Local runs are less surprising because dev mode now forces storage mode to API and logs when it overrides your configured value.
25
+ - **Connection manager:** Peer connectivity is more rock-solid because inbound connections are treated as the bidirectional link and expected transition timeouts are handled without tearing down peers.
26
+ - **Storage tuning and logging:** Troubleshooting storage is easier because cache defaults were reset and configured cache sizes are now logged on open, with additional Badger and SQLite tuning.
27
+ - **Era-aware validation:** Cross-era validation is more accurate because protocol parameter extraction is now era-aware and governance-state decoding uses raw-element parsing.
28
+ - **Overlay-aware acceptance:** Transaction validity is more consistent because ledger and mempool validation now uses a temporary UTxO overlay with descendant pruning.
29
+ - **CI and publishing:** Releases are more repeatable because CI and publishing workflows were refreshed with Node.js 24.x and newer pinned Docker and GitHub Actions.
30
+ - **Dependencies:** Compatibility is better because key dependencies were updated, including OpenTelemetry Go and gouroboros.
31
+ - **Go toolchain:** Builds are more up to date because the minimum Go version is now 1.25 and CI was updated to match.
32
+ - **Release notes:** Scanning changes is easier because release notes were expanded for recent versions.
33
+
34
+ ### 🔧 Fixes
35
+
36
+ - **Connection cleanup tests:** Network tests are less flaky because keepalive timeouts are deterministic and connection cleanup is safer.
37
+ - **Block caching and reconciliation:** Sync is more reliable because block caching now uses fixed-size typed hash keys and reconciliation compares hashes consistently.
38
+
39
+ ### 📋 What You Need to Know
40
+
41
+ - **Go version:** If you build from source, you’ll need Go 1.25 or newer.
42
+ - **Dev mode:** If you run dev mode, Dingo will force storage mode to the API option.
43
+
44
+ ### 🙏 Thank You
45
+
46
+ Thank you for trying!
47
+
48
+ ---
49
+
4
50
  ## v0.23.1 (March 11, 2026)
5
51
 
6
52
  **Title:** Clearer release notes and rock-solid Docker publishing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinklabs/dingo",
3
- "version": "0.24.0",
3
+ "version": "0.24.1",
4
4
  "description": "Dingo is a Cardano blockchain data node",
5
5
  "main": "index.js",
6
6
  "bin": {