You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+17
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,20 @@
1
+
# v0.9.3 - 2022-07-19
2
+
3
+
> This release introduces bugfixes and improvements found in the previous release.
4
+
5
+
The snapshot has been changed and thus the ledger state is fully reset.
6
+
7
+
- Fix remote log collection (#2343)
8
+
- Fix marker walk during tip fishing (#2346)
9
+
- Fix: P2P protocol initialization (#2340)
10
+
- Update default TSC threshold (#2342)
11
+
- Improve tangle time used to calculate active cMana nodes. (#2338)
12
+
- Fix: do not trigger BlockRateLimiter if not bootstrapped (#2341)
13
+
- Notarization: do not care if attachment is booked when dealing with conflict events (#2336)
14
+
- Introduce by epoch index localized BlockID (#2331)
15
+
- Update docker-compose params (#2335)
16
+
- Support additional protocols on top of P2P connection (#2330)
17
+
1
18
# v0.9.2 - 2022-07-14
2
19
3
20
> This release introduces the epoch commitments feature which allows creating proofs-of-inclusion of a block in the tangle. This feature is also the first step to the development of pruning, local snapshots and will allow more efficient way of syncing a node. This release also improves the parameters of rate-setter that should improve user-experience of issuing new blocks. It also contains various bugfixes and improvements, change of terminology e.g. message -> block etc. as well as replacement of grades of finality with confirmation state.
f.log.Infow("Peer is faulty, executing firewall logic to handle the peer", logKVList...)
50
50
f.incrPeerFaultinessCount(peerID)
51
-
nbr, err:=f.gossipMgr.GetNeighbor(peerID)
51
+
nbr, err:=f.p2pManager.GetNeighbor(peerID)
52
52
iferr!=nil {
53
53
f.log.Errorw("Can't get neighbor info from the gossip manager", "peerId", peerID, "err", err)
54
54
return
55
55
}
56
-
ifnbr.Group==gossip.NeighborsGroupAuto {
56
+
ifnbr.Group==p2p.NeighborsGroupAuto {
57
57
iff.autopeering!=nil {
58
58
f.log.Infow(
59
59
"Blocklisting peer in the autopeering selection",
60
60
"peerId", peerID,
61
61
)
62
62
f.autopeering.BlockNeighbor(peerID)
63
63
}
64
-
} elseifnbr.Group==gossip.NeighborsGroupManual {
64
+
} elseifnbr.Group==p2p.NeighborsGroupManual {
65
65
f.log.Warnw("To the node operator. One of neighbors connected via manual peering acts faulty, no automatic actions taken. Consider removing it from the known peers list.",
0 commit comments