@blinklabs/dingo 0.25.1 → 0.26.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.
- package/RELEASE_NOTES.md +38 -0
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,6 +1,44 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v0.25.1 (March 13, 2026)
|
|
5
|
+
|
|
6
|
+
**Title:** Configurable storage and smoother sync
|
|
7
|
+
|
|
8
|
+
**Date:** March 13, 2026
|
|
9
|
+
|
|
10
|
+
**Version:** v0.25.1
|
|
11
|
+
|
|
12
|
+
Hi folks! Here’s what we shipped in v0.25.1.
|
|
13
|
+
|
|
14
|
+
### ✨ What's New
|
|
15
|
+
|
|
16
|
+
- **Configurable data directory:** Running in different environments is easier because you can now choose where the node stores its data on disk with `--data-dir`.
|
|
17
|
+
- **Built-in Mithril bootstrap:** Containerized bootstrapping is simpler because Dingo can now spin up Mithril sync without an external client.
|
|
18
|
+
- **Expanded architecture docs:** Understanding the system is easier because `ARCHITECTURE.md` now includes clearer diagrams and explanations.
|
|
19
|
+
|
|
20
|
+
### 💪 Improvements
|
|
21
|
+
|
|
22
|
+
- **Idle connection stability:** Long-running connections are more rock-solid because idle sessions are less likely to be dropped unexpectedly.
|
|
23
|
+
- **Resilient sync across reconnections:** Sync is more rock-solid because chainsync and blockfetch handle connection switches more reliably.
|
|
24
|
+
- **Blockfetch overhead:** Observability is sleeker because blockfetch avoids extra work when no one is listening for events.
|
|
25
|
+
- **Dependencies:** Builds are more solid because dependencies were refreshed for consistency.
|
|
26
|
+
|
|
27
|
+
### 🔧 Fixes
|
|
28
|
+
|
|
29
|
+
- **Release notes alignment:** Tracking changes is easier because release documentation now matches shipped content.
|
|
30
|
+
|
|
31
|
+
### 📋 What You Need to Know
|
|
32
|
+
|
|
33
|
+
- **Upgrade:** You’re all set—no required configuration changes for this release.
|
|
34
|
+
- **Custom storage path:** If you want to store node data somewhere else, pass `--data-dir <path>` at startup.
|
|
35
|
+
|
|
36
|
+
### 🙏 Thank You
|
|
37
|
+
|
|
38
|
+
Thank you for trying!
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
4
42
|
## v0.25.0 (March 12, 2026)
|
|
5
43
|
|
|
6
44
|
**Title:** Trusted replay verification and peer counts
|