@blinklabs/dingo 0.27.3 → 0.27.4

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 +45 -0
  2. package/package.json +1 -1
package/RELEASE_NOTES.md CHANGED
@@ -1,6 +1,51 @@
1
1
  # Release Notes
2
2
 
3
3
 
4
+ ## v0.27.3 (March 17, 2026)
5
+
6
+ **Title:** Safer rollbacks and steadier leader election
7
+
8
+ **Date:** March 17, 2026
9
+
10
+ **Version:** v0.27.3
11
+
12
+ Hi folks! Here’s what we shipped in v0.27.3.
13
+
14
+ ### ✨ What's New
15
+
16
+ - **Follow-tip reset and rollback:** Tip tracking is easier to manage because the follow-tip API now supports safe reset and rollback with clearer metadata about what changed.
17
+ - **Leader election readiness:** Block producer readiness is easier to track because leader election now surfaces epoch-nonce readiness and carries schedule state more reliably across restarts.
18
+
19
+ ### 💪 Improvements
20
+
21
+ - **More consistent cache sizing:** Sizing runs are easier to tune because cache defaults are more consistent and the BP/PI sizing script now supports explicit memory limits and optional cache overrides.
22
+ - **Predictable KES period semantics:** Operational certificate (KES) periods are more predictable because KES endpoints now standardize on absolute periods while translating internally from the certificate start period.
23
+ - **Preserved original block bytes:** Downstream tooling can retain exact block bytes because API block objects now include the original encoded bytes.
24
+ - **Standard network identifiers from genesis:** Network identification is simpler because genesis reads now return a standard CAIP-2 network identifier derived from network magic.
25
+ - **Smoother peer switching:** Sync stays more rock-solid because chain-sync now preserves its state while only swapping the active connection during a peer switch.
26
+ - **More consistent Mithril imports:** Mithril snapshot imports are more consistent across epochs because imports now normalize snapshot types and centralize persistence and epoch-summary handling.
27
+ - **Protocol dependency validation:** Modern-era transaction handling is more reliable because protocol dependencies were updated and regression tests now guard transaction size behavior.
28
+ - **Safer default containers:** Default containers are safer because the main Docker image now runs as a non-root `dingo` user.
29
+
30
+ ### 🔧 Fixes
31
+
32
+ - **Resilient background monitoring:** Long-running monitoring is more rock-solid because the stall checker now recovers from panics instead of crashing its background loop.
33
+ - **Robust block fetch batching:** Block fetch serving is more robust because batching now handles iterator errors and connection closes correctly.
34
+ - **Clearer unexpected event handling:** Event processing is easier to debug because chain-sync and block fetch now log unexpected event payload types instead of failing silently.
35
+ - **Reliable shutdown error reporting:** Shutdowns are easier to troubleshoot because node and metrics server shutdown now propagates errors instead of exiting abruptly.
36
+ - **Clear tx-submission failures:** Transaction submission fails more clearly because the tx-submission handlers now return an explicit error when no mempool consumer exists.
37
+
38
+ ### 📋 What You Need to Know
39
+
40
+ - **Docker volume permissions:** If you run Dingo in Docker with mounted volumes, make sure the data directory is writable by the `dingo` user inside the container.
41
+ - **API integrations:** If you integrate with follow-tip or KES APIs, give your client code a quick check for the updated reset/rollback and period semantics.
42
+
43
+ ### 🙏 Thank You
44
+
45
+ Thank you for trying!
46
+
47
+ ---
48
+
4
49
  ## v0.27.2 (March 16, 2026)
5
50
 
6
51
  **Title:** Snapshot events and safer services
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinklabs/dingo",
3
- "version": "0.27.3",
3
+ "version": "0.27.4",
4
4
  "description": "Dingo is a Cardano blockchain data node",
5
5
  "main": "index.js",
6
6
  "bin": {