Releases: maidsafe/autonomi
2024.09.2.2 Release Candidate
Binary Versions
faucet
: 0.5.1-rc.2nat-detection
: 0.2.4-rc.2node-launchpad
: 0.3.15-rc.2safe
: 0.95.1-rc.2safenode
: 0.111.2-rc.2safenode-manager
: 0.10.4-rc.2safenode_rpc_client
: 0.6.29-rc.2safenodemand
: 0.10.4-rc.2sn_auditor
: 0.3.1-rc.2
Merged Pull Requests
2024-08-30 #2055 -- refactor: init NonZero values during compile time [@b-zee]
2024-09-02 #2075 -- chore(auditor): switch to width first tracking, instead of depth first [@maqi]
2024-09-02 #2079 -- fix: [#2032] local status
cmd reports status correctly [@jacderida]
2024-09-03 #2081 -- Avoid utxos slow down width first tracking [@maqi]
2024-09-05 #2091 -- chore(client): log spend size [@maqi]
2024-09-06 #2095 -- refactor(cli/faucet): clippy suggestions [@b-zee]
2024-09-10 #2090 -- test(networking): speed up and simplify address sim [@joshuef]
2024-09-10 #2099 -- docs: provide new network keys [@jacderida]
2024-09-10 #2093 -- feat: client API first iteration [@b-zee]
2024-09-10 #2098 -- chore(global): replace allow with expect lint [@b-zee]
2024-09-11 #2102 -- feat(networking): increase circuit bytes limit [@maqi]
2024.09.2.1 Release Candidate
Binary Versions
faucet
: 0.5.1-rc.1nat-detection
: 0.2.4-rc.1node-launchpad
: 0.3.15-rc.1safe
: 0.95.1-rc.1safenode
: 0.111.1-rc.1safenode-manager
: 0.10.4-rc.1safenode_rpc_client
: 0.6.29-rc.1safenodemand
: 0.10.4-rc.1sn_auditor
: 0.3.1-rc.1
Merged Pull Requests
2024-08-30 #2055 -- refactor: init NonZero values during compile time [@b-zee]
2024-09-02 #2075 -- chore(auditor): switch to width first tracking, instead of depth first [@maqi]
2024-09-02 #2079 -- fix: [#2032] local status
cmd reports status correctly [@jacderida]
2024-09-03 #2081 -- Avoid utxos slow down width first tracking [@maqi]
2024-09-05 #2091 -- chore(client): log spend size [@maqi]
2024-09-06 #2095 -- refactor(cli/faucet): clippy suggestions [@b-zee]
2024-09-10 #2090 -- test(networking): speed up and simplify address sim [@joshuef]
2024-09-10 #2099 -- docs: provide new network keys [@jacderida]
2024-09-10 #2093 -- feat: client API first iteration [@b-zee]
2024-09-10 #2098 -- chore(global): replace allow with expect lint [@b-zee]
2024.09.1.3
Binary Versions
faucet
v0.5.0nat-detection
v0.2.3node-launchpad
v0.3.14safe
v0.95.0safenode
v0.111.0safenode-manager
v0.10.3safenodemand
v0.10.3safenode_rpc_client
v0.6.28sn_auditor
v0.3.0
🔦 Highlights
- A redesign and overhaul of the entire transaction system reduces the code size and complexity by an order or magnitude.
- Reduced replication range to improve traffic.
- Improvements to external address management.
- The
node-launchpad
now allows users to switch connection modes and utilise custom ports. This should help more people onboard from behind home routers.
Merged Pull Requests
2024-08-19 #2050 -- chore(node): log record_store storing error [@maqi]
2024-08-20 #2052 -- feat(launchpad): list disks with no access [@mazzi]
2024-08-21 #2044 -- feat(network): External Address manager [@RolandSherwin]
2024-08-21 #2056 -- chore(metrics): add unit to certain metrics [@RolandSherwin]
2024-08-22 #2057 -- chore(node): log setting responsible range [@maqi]
2024-08-26 #2062 -- doc(register): expand sn_registers README.md [@maqi]
2024-08-27 #2061 -- fix(client): fetch register accurately and merge results [@maqi] [BREAKING]
2024-08-27 #2064 -- docs: provide more information on build-time keys [@jacderida]
2024-08-27 #2059 -- Reduce responsible range [@maqi]
2024-08-28 #1989 -- Massive Spend Refactor [@grumbach] [BREAKING]
2024-08-29 #2074 -- feat!: update the pk version string [@RolandSherwin] [BREAKING]
2024-09-02 #2080 -- fix(launchpad): storage mountpoint for node data is not set [@mazzi]
2024-09-02 #2068 -- Revert "chore(metrics): add unit to certain metrics" [@RolandSherwin]
2024-09-03 #2076 -- feat(launchpad): connection mode and fixes [@mazzi]
2024-09-04 #2087 -- chore: refactor store_cost calculation [@maqi]
Detailed Changes
Network
Added
- More logging for storage errors and setting the responsible range.
Changed
- The node's store cost calculation has had various updates:
- The minimum and maximum were previously set to 10 and infinity. They've now been updated to 1 and 1 million, respectively.
- We are now using a sigmoid curve, rather than a linear curve, as the base curve. The previous curve only grew steep when the storage capacity was 40 to 60 percent.
- The overall calculation is simplified.
- We expect the updates to the store cost calculation to prevent 'lottery' payments, where one node would have abnormally high earnings.
- The network version string, which is used when both nodes and clients connect to the network, now uses the version number from the
sn_protocol
crate rather thansn_networking
. This is a breaking change insn_networking
. - External address management is improved. Before, if anyone observed us at a certain public IP+port, we would trust that and add it if it matches our local port. Now, we’re keeping track and making sure we only have a single external address that we set when we’ve been observed as that address a certain amount of times (3 by default). It should even handle cases where our IP changes because of (mobile) roaming.
- The
Spend
network data type has been refactored to make it lighter and simpler. - The entire transaction system has been redesigned; the code size and complexity have been reduced by an order of magnitude.
- In addition, almost 10 types were removed from the transaction code, further reducing the complexity.
- The internals of the
Transfer
andCashNote
types have been reworked. - The replication range has been reduced, which in turn reduces the base traffic for replication.
Client
Fixed
- Registers are fetched and merged correctly.
Launchpad
Added
- A connection mode feature enables users to select whether they want their nodes to connect to the network using automatic NAT detection, upnp, home network, or custom port mappings in their connection. Previously, the launchpad used NAT detection on the user’s behalf. By providing the ability to explore more connection modes, hopefully this will get more users connected.
Changed
- On the drive selection dialog, drives to which the user does not have read or write access are marked as such.
Documentation
Added
- A README was provided for the
sn_registers
crate. It intends to give a comprehensive understanding of the register data type and how it can be used by developers.
Changed
- Provided more information on connecting to the network using the four keys related to funds, fees and royalties.
2024.09.1.3 Release Candidate
Binary Versions
faucet
v0.5.0-rc.3nat-detection
v0.2.3-rc.3node-launchpad
v0.3.14-rc.3safe
v0.95.0-rc.3safenode
v0.111.0-rc.3safenode-manager
v0.10.3-rc.3safenodemand
v0.10.3-rc.3safenode_rpc_client
v0.6.28-rc.3sn_auditor
v0.3.0-rc.3
Merged Pull Requests
2024-08-19 #2050 -- chore(node): log record_store storing error [@maqi]
2024-08-20 #2052 -- feat(launchpad): list disks with no access [@mazzi]
2024-08-21 #2044 -- feat(network): External Address manager [@RolandSherwin]
2024-08-21 #2056 -- chore(metrics): add unit to certain metrics [@RolandSherwin]
2024-08-22 #2057 -- chore(node): log setting responsible range [@maqi]
2024-08-26 #2062 -- doc(register): expand sn_registers README.md [@maqi]
2024-08-27 #2061 -- fix(client): fetch register accurately and merge results [@maqi] [BREAKING]
2024-08-27 #2064 -- docs: provide more information on build-time keys [@jacderida]
2024-08-27 #2059 -- Reduce responsible range [@maqi]
2024-08-28 #1989 -- Massive Spend Refactor [@grumbach] [BREAKING]
2024-08-29 #2074 -- feat!: update the pk version string [@RolandSherwin] [BREAKING]
2024-09-02 #2068 -- Revert "chore(metrics): add unit to certain metrics" [@RolandSherwin]
2024-09-02 #2080 -- fix(launchpad): storage mountpoint for node data is not set [@mazzi]
2024-09-03 #2076 -- feat(launchpad): connection mode and fixes [@mazzi]
2024-09-04 #2087 -- chore: refactor store_cost calculation [@maqi]
2024.08.2.4
Binary Versions
faucet
v0.4.32nat-detection
v0.2.2node-launchpad
v0.3.13safe
v0.94.1safenode
v0.110.1safenode-manager
v0.10.2safenodemand
v0.10.2safenode_rpc_client
v0.6.27sn_auditor
v0.2.4
Merged Pull Requests
2024-09-02 #2080 -- fix(launchpad): storage mountpoint for node data is not set [@mazzi]
Detailed Changes
Launchpad
Fixed
- Some users encountered an error when the launchpad started, related to the storage mountpoint not
being set. We fix the error by providing default values for the mountpoint settings when the
app_data.json
file doesn't exist (fresh install). In the case where it does exist, we validate
the contents.
2024.09.1.2 Release Candidate
Binary Versions
faucet
v0.5.0-rc.2nat-detection
v0.2.3-rc.2node-launchpad
v0.3.14-rc.2safe
v0.95.0-rc.2safenode
v0.111.0-rc.2safenode-manager
v0.10.3-rc.2safenodemand
v0.10.3-rc.2safenode_rpc_client
v0.6.28-rc.2sn_auditor
v0.3.0-rc.2
Merged Pull Requests
2024-08-19 #2050 -- chore(node): log record_store storing error [@maqi]
2024-08-20 #2052 -- feat(launchpad): list disks with no access [@mazzi]
2024-08-21 #2044 -- feat(network): External Address manager [@RolandSherwin]
2024-08-21 #2056 -- chore(metrics): add unit to certain metrics [@RolandSherwin]
2024-08-22 #2057 -- chore(node): log setting responsible range [@maqi]
2024-08-26 #2062 -- doc(register): expand sn_registers README.md [@maqi]
2024-08-27 #2061 -- fix(client): fetch register accurately and merge results [@maqi] [BREAKING]
2024-08-27 #2064 -- docs: provide more information on build-time keys [@jacderida]
2024-08-27 #2059 -- Reduce responsible range [@maqi]
2024-08-28 #1989 -- Massive Spend Refactor [@grumbach] [BREAKING]
2024-08-29 #2074 -- feat!: update the pk version string [@RolandSherwin] [BREAKING]
2024-09-02 #2068 -- Revert "chore(metrics): add unit to certain metrics" [@RolandSherwin]
2024-09-02 #2080 -- fix(launchpad): storage mountpoint for node data is not set [@mazzi]
2024.09.1.1 Release Candidate
2024-08-29
Binary Versions
faucet
v0.5.0-rc.1nat-detection
v0.2.3-rc.1node-launchpad
v0.3.13-rc.1safe
v0.95.0-rc.1safenode
v0.111.0-rc.1safenode-manager
v0.10.3-rc.1safenodemand
v0.10.3-rc.1safenode_rpc_client
v0.6.28-rc.1sn_auditor
v0.3.0-rc.1
Merged Pull Requests
2024-08-19 #2050 -- chore(node): log record_store storing error [@maqi]
2024-08-20 #2052 -- feat(launchpad): list disks with no access [@mazzi]
2024-08-21 #2044 -- feat(network): External Address manager [@RolandSherwin]
2024-08-21 #2056 -- chore(metrics): add unit to certain metrics [@RolandSherwin]
2024-08-22 #2057 -- chore(node): log setting responsible range [@maqi]
2024-08-26 #2062 -- doc(register): expand sn_registers README.md [@maqi]
2024-08-27 #2061 -- fix(client): fetch register accurately and merge results [@maqi] [BREAKING]
2024-08-27 #2064 -- docs: provide more information on build-time keys [@jacderida]
2024-08-27 #2059 -- Reduce responsible range [@maqi]
2024-08-28 #1989 -- Massive Spend Refactor [@grumbach] [BREAKING]
2024-08-29 #2074 -- feat!: update the pk version string [@RolandSherwin] [BREAKING]
2024.08.2.3
Binary Versions
faucet
v0.4.32nat-detection
v0.2.2node-launchpad
v0.3.12safe
v0.94.1safenode
v0.110.1safenode-manager
v0.10.2safenodemand
v0.10.2safenode_rpc_client
v0.6.27sn_auditor
v0.2.4
🔦 Highlights
- Increasing the relay server's circuit bytes limit reduces incoming connection errors. We expect this to improve earnings for home nodes.
- The Launchpad has several new features:
- The user can choose a different drive for the node's data directory.
- New sections in the UI:
Options
andHelp
. - A navigation bar has been added with
Status
,Options
andHelp
sections. - The node's logs can be viewed from the
Options
section.
- The node manager
start
command waits for the node to connect to the network before attempting to start the next node. See the detailed changelog for further details. - Several new metrics are available for the node. See the detailed changelog for more information.
Merged Pull Requests
2024-07-23 #2001 -- chore: remove push triggers for release workflow [@jacderida]
2024-07-23 #2000 -- chore(node): increase bad node & bootstrap interval [@RolandSherwin]
2024-07-26 #1981 -- LocalFirst Swarm [@joshuef]
2024-07-29 #2006 -- refactor: remove some lazy_static deps; unused dep [@b-zee]
2024-07-29 #2008 -- feat(launchpad): user interface tweaks [@mazzi]
2024-07-29 #1997 -- feat(manager): optionally set the different ports when running local network [@RolandSherwin]
2024-07-29 #2009 -- chore(launchpad): popup crate and del unused code [@mazzi]
2024-07-29 #2005 -- chore(client): debug resend spend [@maqi]
2024-07-31 #2015 -- chore: correct logging of cash_note and confirmed_spend disk ops [@maqi]
2024-07-31 #2018 -- chore(cli): [#2014] explicitly show the uploaded file's address [@mickvandijke]
2024-07-31 #2017 -- fix(node): check whether already received an incoming payment [@maqi]
2024-07-31 #2016 -- chore(cli): [#2012] show download time per file [@mickvandijke]
2024-08-01 #2007 -- chore(node): trust a parent spend with majority [@maqi]
2024-08-02 #2020 -- chore(node): check confirmed_spend existence [@maqi]
2024-08-05 #2022 -- fix(ci): clean out target directory to save space [@RolandSherwin]
2024-08-05 #2003 -- chore(node): [#1999] panic on upnp event GatewayNotFound
[@mickvandijke]
2024-08-05 #2021 -- feat(metrics): track the bad node count [@RolandSherwin]
2024-08-05 #2023 -- fix(node): terminate make_payment process during unrecoverable error [@maqi]
2024-08-06 #2024 -- docs: update readme about transfers [@grumbach]
2024-08-06 #2013 -- fix(manager): dynamic sleep interval during start and upgrade [@RolandSherwin]
2024-08-07 #2026 -- fix(network): add peer to blocklist only after informing it [@RolandSherwin]
2024-08-07 #2027 -- fix(node): avoid deserialise error cause a confirmed_spend to be non-exist [@maqi]
2024-08-07 #2029 -- fix(metrics): update current wallet balance after forwarding rewards [@RolandSherwin]
2024-08-07 #2028 -- refactor(network): remove some unused network events [@RolandSherwin]
2024-08-08 #2031 -- feat(network): expose bandwidth per transport protocol [@RolandSherwin]
2024-08-12 #2034 -- test: verification involving child key [@maqi]
2024-08-15 #2043 -- feat(node): prune unrelevant records if accumulated too many [@maqi]
2024-08-16 #2047 -- fix: save node registry on every upgrade [@jacderida]
2024-08-19 #2041 -- feat(launchpad): new layout sections and features [@mazzi]
2024-08-19 #2040 -- feat(metrics): export metadata via the metrics port [@RolandSherwin]
2024-08-19 #2051 -- feat(metrics): expose values from QuotingMetrics [@RolandSherwin]
2024-08-21 #2053 -- feat(networking): increase circuit bytes limit [@b-zee]
2024-08-26 #2063 -- refactor(metrics): revert store cost metrics breaking change [@RolandSherwin]
Detailed Changes
Network
Added
- The node will now report its bandwidth usage through the metrics endpoint.
- The metrics server has a new
/metadata
path which will provide static information about the node, including peer ID and version. - The metrics server exposes more metrics on store cost derivation. These include relevant record count and number of payments received.
- The metrics server exposes metrics related to bad node detection.
- Test to confirm main key can’t verify signature signed by child key.
- Avoid excessively high quotes by pruning records that are not relevant.
Changed
- Bad node detection and bootstrap intervals have been increased. This should reduce the number of messages being sent.
- The spend parent verification strategy was refactored to be more aligned with the public network.
- Nodes now prioritize local work over new work from the network, which reduces memory footprint.
- Multiple GET queries to the same address are now de-duplicated and will result in a single query being processed.
- Improve efficiency of command handling and the record store cache.
- A parent spend is now trusted with a majority of close group nodes, rather than all of them. This increases the chance of the spend being stored successfully when some percentage of nodes are slow to respond.
Fixed
- The amount of bytes a home node could send and receive per relay connection is increased. This solves a problem where transmission of data is interrupted, causing home nodes to malfunction.
- Fetching the network contacts now times out and retries. Previously we would wait for an excessive amount of time, which could cause the node to hang during start up.
- If a node has been shunned, we inform that node before blocking all communication to it.
- The current wallet balance metric is updated more frequently and will now reflect the correct state.
- Avoid burnt spend during forwarding by correctly handling repeated CashNotes and confirmed spends.
- Fix logging for CashNote and confirmed spend disk ops
- Check whether a CashNote has already been received to avoid duplicate CashNotes in the wallet.
Node Manager
Added
- The
local run
command supports--metrics-port
,--node-port
and--rpc-port
arguments. - The
start
command waits for the node to connect to the network before attempting to start the next node. If it takes more than 300 seconds to connect, we consider that a failure and move to the next node. The--connection-timeout
argument can be used to vary the timeout. If you prefer the old behaviour, you can use the--interval
argument, which will continue to apply a static, time-based interval.
Changed
- On an upgrade, the node registry is saved after each node is processed, as opposed to waiting until the end. This means if there is an unexpected failure, the registry will have the information about which nodes have already been upgraded.
Launchpad
Added
- The user can choose a different drive for the node's data directory.
- New sections in the UI:
Options
andHelp
. - A navigation bar has been added with
Status
,Options
andHelp
sections. - The node's logs can be viewed from the
Options
section.
Changed
- Increased spacing for title and paragraphs.
- Increased spacing on footer.
- Increased spacing on box titles.
- Moved
Discord Username
from the top title into theDevice Status
section. - Made the general layout of
Device Status
more compact.
Client
Added
- The
safe files download
command now displays duration per file.
Changed
- Adjust the put and get configuration scheme to align the client with a more realistic network which would have some percentage of slow nodes.
- Improved spend logging to help debug the upload process.
Fixed
- Avoid a corrupt wallet by terminating the payment process during an unrecoverable error.
2024.08.2.3 Release Candidate
2024-08-26
Binaries
faucet
v0.4.32-rc.3nat-detection
v0.2.2-rc.3node-launchpad
v0.3.12-rc.3safe
v0.94.1-rc.3safenode
v0.110.1-rc.3safenode-manager
v0.10.2-rc.3safenodemand
v0.10.2-rc.3safenode_rpc_client
v0.6.27-rc.3sn_auditor
v0.2.4-rc.3
Merged Pull Requests
2024-07-23 #2001 -- chore: remove push triggers for release workflow [@jacderida]
2024-07-23 #2000 -- chore(node): increase bad node & bootstrap interval [@RolandSherwin]
2024-07-26 #1981 -- LocalFirst Swarm [@joshuef]
2024-07-29 #2006 -- refactor: remove some lazy_static deps; unused dep [@b-zee]
2024-07-29 #2008 -- feat(launchpad): user interface tweaks [@mazzi]
2024-07-29 #1997 -- feat(manager): optionally set the different ports when running local network [@RolandSherwin]
2024-07-29 #2009 -- chore(launchpad): popup crate and del unused code [@mazzi]
2024-07-29 #2005 -- chore(client): debug resend spend [@maqi]
2024-07-31 #2015 -- chore: correct logging of cash_note and confirmed_spend disk ops [@maqi]
2024-07-31 #2018 -- chore(cli): [#2014] explicitly show the uploaded file's address [@mickvandijke]
2024-07-31 #2017 -- fix(node): check whether already received an incoming payment [@maqi]
2024-07-31 #2016 -- chore(cli): [#2012] show download time per file [@mickvandijke]
2024-08-01 #2007 -- chore(node): trust a parent spend with majority [@maqi]
2024-08-02 #2020 -- chore(node): check confirmed_spend existence [@maqi]
2024-08-05 #2022 -- fix(ci): clean out target directory to save space [@RolandSherwin]
2024-08-05 #2003 -- chore(node): [#1999] panic on upnp event GatewayNotFound
[@mickvandijke]
2024-08-05 #2021 -- feat(metrics): track the bad node count [@RolandSherwin]
2024-08-05 #2023 -- fix(node): terminate make_payment process during unrecoverable error [@maqi]
2024-08-06 #2024 -- docs: update readme about transfers [@grumbach]
2024-08-06 #2013 -- fix(manager): dynamic sleep interval during start and upgrade [@RolandSherwin]
2024-08-07 #2026 -- fix(network): add peer to blocklist only after informing it [@RolandSherwin]
2024-08-07 #2027 -- fix(node): avoid deserialise error cause a confirmed_spend to be non-exist [@maqi]
2024-08-07 #2029 -- fix(metrics): update current wallet balance after forwarding rewards [@RolandSherwin]
2024-08-07 #2028 -- refactor(network): remove some unused network events [@RolandSherwin]
2024-08-08 #2031 -- feat(network): expose bandwidth per transport protocol [@RolandSherwin]
2024-08-12 #2034 -- test: verification involving child key [@maqi]
2024-08-15 #2043 -- feat(node): prune unrelevant records if accumulated too many [@maqi]
2024-08-16 #2047 -- fix: save node registry on every upgrade [@jacderida]
2024-08-19 #2041 -- feat(launchpad): new layout sections and features [@mazzi]
2024-08-19 #2040 -- feat(metrics): export metadata via the metrics port [@RolandSherwin]
2024-08-19 #2051 -- feat(metrics): expose values from QuotingMetrics [@RolandSherwin]
2024-08-21 #2053 -- feat(networking): increase circuit bytes limit [@b-zee]
2024-08-26 #2063 -- refactor(metrics): revert store cost metrics breaking change [@RolandSherwin]
2024.08.2.2 Release Candidate
2024-08-21
Binaries
faucet
v0.4.32-rc.2nat-detection
v0.2.2-rc.2node-launchpad
v0.3.12-rc.2safe
v0.94.1-rc.2safenode
v0.110.1-rc.2safenode-manager
v0.10.2-rc.2safenodemand
v0.10.2-rc.2safenode_rpc_client
v0.6.27-rc.2sn_auditor
v0.2.4-rc.2
Merged Pull Requests
2024-07-23 #2001 -- chore: remove push triggers for release workflow [@jacderida]
2024-07-23 #2000 -- chore(node): increase bad node & bootstrap interval [@RolandSherwin]
2024-07-26 #1981 -- LocalFirst Swarm [@joshuef]
2024-07-29 #2006 -- refactor: remove some lazy_static deps; unused dep [@b-zee]
2024-07-29 #2008 -- feat(launchpad): user interface tweaks [@mazzi]
2024-07-29 #1997 -- feat(manager): optionally set the different ports when running local network [@RolandSherwin]
2024-07-29 #2009 -- chore(launchpad): popup crate and del unused code [@mazzi]
2024-07-29 #2005 -- chore(client): debug resend spend [@maqi]
2024-07-31 #2015 -- chore: correct logging of cash_note and confirmed_spend disk ops [@maqi]
2024-07-31 #2018 -- chore(cli): [#2014] explicitly show the uploaded file's address [@mickvandijke]
2024-07-31 #2017 -- fix(node): check whether already received an incoming payment [@maqi]
2024-07-31 #2016 -- chore(cli): [#2012] show download time per file [@mickvandijke]
2024-08-01 #2007 -- chore(node): trust a parent spend with majority [@maqi]
2024-08-02 #2020 -- chore(node): check confirmed_spend existence [@maqi]
2024-08-05 #2022 -- fix(ci): clean out target directory to save space [@RolandSherwin]
2024-08-05 #2003 -- chore(node): [#1999] panic on upnp event GatewayNotFound
[@mickvandijke]
2024-08-05 #2021 -- feat(metrics): track the bad node count [@RolandSherwin]
2024-08-05 #2023 -- fix(node): terminate make_payment process during unrecoverable error [@maqi]
2024-08-06 #2024 -- docs: update readme about transfers [@grumbach]
2024-08-06 #2013 -- fix(manager): dynamic sleep interval during start and upgrade [@RolandSherwin]
2024-08-07 #2026 -- fix(network): add peer to blocklist only after informing it [@RolandSherwin]
2024-08-07 #2027 -- fix(node): avoid deserialise error cause a confirmed_spend to be non-exist [@maqi]
2024-08-07 #2029 -- fix(metrics): update current wallet balance after forwarding rewards [@RolandSherwin]
2024-08-07 #2028 -- refactor(network): remove some unused network events [@RolandSherwin]
2024-08-08 #2031 -- feat(network): expose bandwidth per transport protocol [@RolandSherwin]
2024-08-12 #2034 -- test: verification involving child key [@maqi]
2024-08-15 #2043 -- feat(node): prune unrelevant records if accumulated too many [@maqi]
2024-08-16 #2047 -- fix: save node registry on every upgrade [@jacderida]
2024-08-19 #2041 -- feat(launchpad): new layout sections and features [@mazzi]
2024-08-19 #2040 -- feat(metrics): export metadata via the metrics port [@RolandSherwin]
2024-08-19 #2051 -- feat(metrics): expose values from QuotingMetrics [@RolandSherwin]
2024-08-21 #2053 -- feat(networking): increase circuit bytes limit [@b-zee]