diff --git a/Cargo.lock b/Cargo.lock index 8558e13e6c..07bd7f6571 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4272,7 +4272,7 @@ dependencies = [ [[package]] name = "sn_node" -version = "0.80.3" +version = "0.80.4" dependencies = [ "assert_matches", "base64 0.13.1", diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md index c192b7d7e8..d9b0b4ef99 100644 --- a/sn_node/CHANGELOG.md +++ b/sn_node/CHANGELOG.md @@ -5,27 +5,55 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.80.4 (2023-03-24) + +### Chore + + - parse network knowledge members from logs + +### Commit Statistics + + + + - 1 commit contributed to the release. + - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - Parse network knowledge members from logs ([`142dd14`](https://github.com/maidsafe/safe_network/commit/142dd14fe1fb99a301e65adc72b739788015c959)) +
+ ## v0.80.3 (2023-03-23) +### Chore + + - sn_testnet-0.1.4/sn_interface-0.20.9/sn_node-0.80.3 + ### New Features - exposing a gRPC interface on safenode bin/app - The safenode RPC service is exposed only when built with 'rpc-service' feature. - - The safenode RPC service code is generated automatically using gRPC (`tonic` crate) +- The safenode RPC service code is generated automatically using gRPC (`tonic` crate) from a `proto` file with messages definitions added to sn_interface. - - The RPC is exposed at the same address as the node's address used for network connections, +- The RPC is exposed at the same address as the node's address used for network connections, but using the subsequent port number. - - A new final step was implemented for the sn_testnet tool, to run a check on the launched nodes, +- A new final step was implemented for the sn_testnet tool, to run a check on the launched nodes, verifying their names and network knowledge are the expected for the launched testnet. - - The new sn_testnet tool step is run only if built with 'verify-nodes' feature. - - Running the `verify-nodes` check of sn_testnet in CI previous to sn_client e2e tests. +- The new sn_testnet tool step is run only if built with 'verify-nodes' feature. +- Running the `verify-nodes` check of sn_testnet in CI previous to sn_client e2e tests. ### Commit Statistics - - 1 commit contributed to the release. - - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 2 commits contributed to the release. + - 2 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages ### Commit Details @@ -35,12 +63,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Sn_testnet-0.1.4/sn_interface-0.20.9/sn_node-0.80.3 ([`358174a`](https://github.com/maidsafe/safe_network/commit/358174ab1503fc8cf1b07ab66be397f3e853a14c)) - Exposing a gRPC interface on safenode bin/app ([`16bb338`](https://github.com/maidsafe/safe_network/commit/16bb3389cdd665fe9a577587d9b7a6e8d21a3028))
## v0.80.2 (2023-03-23) + ### Chore diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml index c19fea62aa..a9fdf1f49c 100644 --- a/sn_node/Cargo.toml +++ b/sn_node/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "sn_node" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.80.3" +version = "0.80.4" [[bin]] name = "safenode"