@blinklabs/dingo 0.27.5 → 0.28.0

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 +85 -0
  2. package/package.json +1 -1
package/RELEASE_NOTES.md CHANGED
@@ -1,6 +1,91 @@
1
1
  # Release Notes
2
2
 
3
3
 
4
+ ## v0.27.7 (March 24, 2026)
5
+
6
+ **Title:** Steadier sync and leaner storage
7
+
8
+ **Date:** March 24, 2026
9
+
10
+ **Version:** v0.27.7
11
+
12
+ Hi folks! Here’s what we shipped in v0.27.7.
13
+
14
+ ### ✨ What's New
15
+
16
+ - **Configurable network ID:** Connecting to the right Cardano network is more rock-solid because you can now set the network identifier in configuration.
17
+ - **Optional blob-store compression:** Disk usage can be lower because you can now enable compression for blob storage in some environments.
18
+ - **Devnet transaction pump:** Testing transaction flow is easier because development networks now include an additional transaction pump service.
19
+
20
+ ### 💪 Improvements
21
+
22
+ - **More stable chain following:** Sync is more rock-solid because chain following and recovery is now more stable during tip changes and temporary peer issues.
23
+ - **Safer rollbacks and replay:** Reorg handling is more predictable because rollback and ledger replay behavior is now safer.
24
+ - **Lighter rewind pruning:** Larger cleanups are smoother because rewind and pruning operations now put less pressure on storage backends.
25
+ - **Stickier best-peer selection:** Peer churn can be lower because peer selection now better preserves stable connections when multiple peers report equivalent tips.
26
+
27
+ ### 🔧 Fixes
28
+
29
+ - **More consistent blob deletion:** Cleanup is more reliable because blob deletion now better matches transaction behavior.
30
+ - **Graceful missing-blob recovery:** Processing is more resilient because missing blob data is now handled more gracefully in some cases.
31
+
32
+ ### 📋 What You Need to Know
33
+
34
+ - **Multi-network deployments:** If you run against different Cardano networks, review your config to ensure the correct network is selected.
35
+ - **Docker builds:** If you rely on custom Docker build caching, Docker builds may behave differently.
36
+ - **Tooling refreshes:** Routine updates to build tooling and libraries may land as part of keeping the project secure and compatible.
37
+
38
+ ### 🙏 Thank You
39
+
40
+ Thank you for trying!
41
+
42
+ ---
43
+
44
+
45
+ ## v0.27.5 (March 19, 2026)
46
+
47
+ **Title:** Faster UTxO lookups and steadier sync
48
+
49
+ **Date:** March 19, 2026
50
+
51
+ **Version:** v0.27.5
52
+
53
+ Hi folks! Here’s what we shipped in v0.27.5.
54
+
55
+ ### ✨ What's New
56
+
57
+ - **Stable UTxO ordering and address queries:** Wallet and explorer-style queries are more predictable because you can now query UTxOs with a stable ordering and look them up efficiently by address.
58
+ - **Observability-only chain-sync clients:** Metrics are clearer because you can now run observability-only chain-sync clients that are counted in metrics without affecting normal client operation.
59
+ - **Automatic chain realignment on startup:** Recoveries after interruptions are easier because ledger startup can now realign chain state automatically without noisy side effects.
60
+
61
+ ### 💪 Improvements
62
+
63
+ - **More consistent rollback scheduling:** Recovery after chain reorganizations is more reliable because rollback handling now keeps scheduling state more consistent.
64
+ - **Sliding-window chain density:** Chain health signals are more representative because chain density calculations now use a sliding window of recent slots and blocks.
65
+ - **Safer raw block copy resume:** Resuming raw/direct block copying is safer because resume checks are now stricter and reduce accidental skipping or duplication.
66
+ - **Smoother peer governance convergence:** Early runtime is steadier because peer governance now converges faster after startup and follows configuration defaults more consistently.
67
+ - **Better default peer targets:** Peer configuration works out of the box more often because Dingo now falls back to Cardano P2P peer target values when Dingo peer targets aren’t set.
68
+ - **Richer UTxO RPC chain references:** Downstream indexing is easier because UTxO RPC responses now include a more complete reference to chain position.
69
+ - **Clearer stake snapshot errors (SQLite):** Operational debugging is easier because stake snapshot maintenance errors now include clearer context.
70
+ - **Dependency refresh:** Builds are more rock-solid because dependencies were refreshed to keep compatibility and security posture current.
71
+ - **Clearer tests and documentation:** Maintenance is easier because tests and documentation were clarified for long-term readability.
72
+
73
+ ### 🔧 Fixes
74
+
75
+ - **Resilient ledger block processing:** The node is less likely to go down on transient ledger errors because block processing now restarts on non-fatal errors instead of exiting.
76
+ - **Safer block fetch flushing:** Block downloads recover more cleanly after flush failures because block fetch now cleans up state when flushing pending blocks fails.
77
+
78
+ ### 📋 What You Need to Know
79
+
80
+ - **Client-count metrics may shift:** Capacity planning may look different because observability-only chain-sync clients are now tracked separately from eligible clients.
81
+
82
+ ### 🙏 Thank You
83
+
84
+ Thank you for trying!
85
+
86
+ ---
87
+
88
+
4
89
  ## v0.27.4 (March 18, 2026)
5
90
 
6
91
  **Title:** Reliability and usability refinements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinklabs/dingo",
3
- "version": "0.27.5",
3
+ "version": "0.28.0",
4
4
  "description": "Dingo is a Cardano blockchain data node",
5
5
  "main": "index.js",
6
6
  "bin": {