@blinklabs/dingo 0.27.4 → 0.27.7
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.
- package/RELEASE_NOTES.md +80 -0
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,6 +1,86 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v0.27.5 (March 19, 2026)
|
|
5
|
+
|
|
6
|
+
**Title:** Faster UTxO lookups and steadier sync
|
|
7
|
+
|
|
8
|
+
**Date:** March 19, 2026
|
|
9
|
+
|
|
10
|
+
**Version:** v0.27.5
|
|
11
|
+
|
|
12
|
+
Hi folks! Here’s what we shipped in v0.27.5.
|
|
13
|
+
|
|
14
|
+
### ✨ What's New
|
|
15
|
+
|
|
16
|
+
- **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.
|
|
17
|
+
- **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.
|
|
18
|
+
- **Automatic chain realignment on startup:** Recoveries after interruptions are easier because ledger startup can now realign chain state automatically without noisy side effects.
|
|
19
|
+
|
|
20
|
+
### 💪 Improvements
|
|
21
|
+
|
|
22
|
+
- **More consistent rollback scheduling:** Recovery after chain reorganizations is more reliable because rollback handling now keeps scheduling state more consistent.
|
|
23
|
+
- **Sliding-window chain density:** Chain health signals are more representative because chain density calculations now use a sliding window of recent slots and blocks.
|
|
24
|
+
- **Safer raw block copy resume:** Resuming raw/direct block copying is safer because resume checks are now stricter and reduce accidental skipping or duplication.
|
|
25
|
+
- **Smoother peer governance convergence:** Early runtime is steadier because peer governance now converges faster after startup and follows configuration defaults more consistently.
|
|
26
|
+
- **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.
|
|
27
|
+
- **Richer UTxO RPC chain references:** Downstream indexing is easier because UTxO RPC responses now include a more complete reference to chain position.
|
|
28
|
+
- **Clearer stake snapshot errors (SQLite):** Operational debugging is easier because stake snapshot maintenance errors now include clearer context.
|
|
29
|
+
- **Dependency refresh:** Builds are more rock-solid because dependencies were refreshed to keep compatibility and security posture current.
|
|
30
|
+
- **Clearer tests and documentation:** Maintenance is easier because tests and documentation were clarified for long-term readability.
|
|
31
|
+
|
|
32
|
+
### 🔧 Fixes
|
|
33
|
+
|
|
34
|
+
- **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.
|
|
35
|
+
- **Safer block fetch flushing:** Block downloads recover more cleanly after flush failures because block fetch now cleans up state when flushing pending blocks fails.
|
|
36
|
+
|
|
37
|
+
### 📋 What You Need to Know
|
|
38
|
+
|
|
39
|
+
- **Client-count metrics may shift:** Capacity planning may look different because observability-only chain-sync clients are now tracked separately from eligible clients.
|
|
40
|
+
|
|
41
|
+
### 🙏 Thank You
|
|
42
|
+
|
|
43
|
+
Thank you for trying!
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
## v0.27.4 (March 18, 2026)
|
|
49
|
+
|
|
50
|
+
**Title:** Reliability and usability refinements
|
|
51
|
+
|
|
52
|
+
**Date:** March 18, 2026
|
|
53
|
+
|
|
54
|
+
**Version:** v0.27.4
|
|
55
|
+
|
|
56
|
+
Hi folks! Here’s what we shipped in v0.27.4.
|
|
57
|
+
|
|
58
|
+
### ✨ What's New
|
|
59
|
+
|
|
60
|
+
- **Rock-solid chain-sync recovery:** Sync stays more rock-solid because chain-sync recovers more reliably from stalled or unstable network connections.
|
|
61
|
+
- **Solid chain selection:** Sync wastes less time on poor candidates because chain selection now takes peer suitability into account.
|
|
62
|
+
|
|
63
|
+
### 💪 Improvements
|
|
64
|
+
|
|
65
|
+
- **Simpler config loading:** Configuration stays under your control because config loading no longer fills in a default Cardano configuration path.
|
|
66
|
+
- **Sleeker block downloads:** Block downloads are more consistent because header processing no longer gets blocked by duplicate headers.
|
|
67
|
+
- **More robust intersections:** Synchronization starts from the right place more often because intersection point selection is now more robust.
|
|
68
|
+
|
|
69
|
+
### 🔧 Fixes
|
|
70
|
+
|
|
71
|
+
- **No missing boundary blocks:** Historical imports are more complete because older-era boundary blocks are no longer skipped during block loading.
|
|
72
|
+
|
|
73
|
+
### 📋 What You Need to Know
|
|
74
|
+
|
|
75
|
+
- **Inbound peers excluded from chain choice:** Chain selection behavior may change in mixed inbound/outbound topologies because inbound peers no longer influence which chain is selected.
|
|
76
|
+
- **Documentation-only change:** This release includes a release-notes update with no runtime impact.
|
|
77
|
+
|
|
78
|
+
### 🙏 Thank You
|
|
79
|
+
|
|
80
|
+
Thank you for trying!
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
4
84
|
## v0.27.3 (March 17, 2026)
|
|
5
85
|
|
|
6
86
|
**Title:** Safer rollbacks and steadier leader election
|