Binary Versions
antnode
: v0.3.9antctld
: v0.12.2antctl
: v0.12.2ant
: v0.3.11nat-detection
: v0.2.19node-launchpad
: v0.5.7
Merged Pull Requests
2025-03-28 #2844 -- fix(node): lookup addrs from local when input is empty [@maqi]
2025-03-28 #2846 -- fix(node): only check self quotes' expiration [@maqi]
2025-03-28 #2848 -- fix(node): using distance_range to verify payment payee as well [@maqi]
2025-03-28 #2853 -- chore(network): remove logging on too many faults on listener [@RolandSherwin]
2025-03-28 #2856 -- enhanced RT refresh scheme with liveness check [@maqi]
2025-03-28 #2857 -- chore(node): logging peer add/removal with more details [@maqi]
2025-03-28 #2859 -- fix(network): error out on network get_closest timed out [@maqi]
2025-03-28 #2865 -- fix(network): make identify client skip check accurate [@maqi]
Detailed Changes
Network
Added
- Improve logging for the addition and removal of peers from the routing table.
Changed
- Enhanced strategy for refreshing the node's routing table that aims to maintain an accurate
picture of the network. It incorporates periodic liveness checks and will remove inactive nodes. - Incorporate the use of distance range to verify payments. The payee could have been blocked or
churned out, but we should still consider the payment valid if the payee is close enough. - Stop logging too many faults on the node listeners. This produced a lot of spam in the logs.
Fixed
- Issue with version upgrades not being detected correctly during periodic version checks.
- Do not add client peers to the routing table.
- Only check the expiry date on quotes from the current node. Checking the date on a quote from
another node can fail due to differences in the operating system's clock. - During re-attempts for requests, when the address of the target is not provided, e.g., in
replication-related requests, the addresses will be provided from the local node.