@blinklabs/dingo 0.27.7 → 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.
- package/RELEASE_NOTES.md +41 -0
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,6 +1,47 @@
|
|
|
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
|
+
|
|
4
45
|
## v0.27.5 (March 19, 2026)
|
|
5
46
|
|
|
6
47
|
**Title:** Faster UTxO lookups and steadier sync
|