Skip to content

Commit

Permalink
chore(release): sn_auditor-v0.1.18/sn_client-v0.107.0/sn_networking-v…
Browse files Browse the repository at this point in the history
…0.16.0/sn_protocol-v0.17.0/sn_transfers-v0.18.2/sn_peers_acquisition-v0.3.0/sn_cli-v0.93.0/sn_faucet-v0.4.20/sn_metrics-v0.1.8/sn_node-v0.107.0/sn_service_management-v0.3.1/node-launchpad-v0.3.0/sn-node-manager-v0.9.0/sn_node_rpc_client-v0.6.19
  • Loading branch information
joshuef committed Jun 3, 2024
1 parent 31053ae commit 871f62c
Show file tree
Hide file tree
Showing 30 changed files with 279 additions and 72 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nat-detection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ libp2p = { version = "0.53", features = [
"macros",
"upnp",
] }
sn_networking = { path = "../sn_networking", version = "0.15.3" }
sn_networking = { path = "../sn_networking", version = "0.16.0" }
tokio = { version = "1.32.0", features = ["full"] }
tracing = { version = "~0.1.26" }
tracing-log = "0.2.0"
Expand Down
40 changes: 40 additions & 0 deletions node-launchpad/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,46 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/joshuef/safe_network/compare/node-launchpad-v0.2.0...node-launchpad-v0.3.0) - 2024-06-03

### Added
- provide `--autostart` flag for `add` command
- configure winsw in `node-launchpad`
- *(launchpad)* use nat detection server to determine the nat status
- *(launchpad)* update the start stop node popup
- *(launchpad)* keep track of the nodes to start
- *(launchpad)* update manage nodes ui
- *(launchpad)* implement help pop up
- *(launchpad)* revamp the beta programme flow
- *(launchpad)* update footer to include two lines of commands
- *(launchpad)* setup the basic device status table
- *(launchpad)* set a new header for the home scene
- *(launchpad)* set new discord id on change
- *(manager)* implement nat detection during safenode add
- *(node)* make payment forward optional
- *(network)* [**breaking**] move network versioning away from sn_protocol
- configure winsw in node manager
- *(node_manager)* add unit tests and modify docs

### Fixed
- *(launchpad)* make the bg colors work better
- *(manager)* update nat detection exit code

### Other
- *(launchpad)* typo fix, use program
- *(launchpad)* fixes for white terminal theme
- *(launchpad)* disable unused stats
- *(launchpad)* disable start stop if node count not set
- *(launchpad)* use the correct styling throughout
- *(launchpad)* update scene variant name to BetaProgramme
- *(launchpad)* removed the splash screen on discord id submition
- *(launchpad)* set new color scheme for home
- *(launchpad)* update node status box
- *(manager)* move nat detection out of add subcommand
- *(release)* sn_auditor-v0.1.17/sn_client-v0.106.3/sn_networking-v0.15.3/sn_transfers-v0.18.1/sn_logging-v0.2.27/sn_cli-v0.92.0/sn_faucet-v0.4.19/sn_node-v0.106.5/sn_service_management-v0.3.0/node-launchpad-v0.2.0/sn-node-manager-v0.8.0/sn_protocol-v0.16.7/sn_node_rpc_client-v0.6.18
- use new version of `service-manager` crate
- update NodeInfo struct inside the tests

## [0.2.0](https://github.com/joshuef/safe_network/compare/node-launchpad-v0.1.5...node-launchpad-v0.2.0) - 2024-05-24

### Added
Expand Down
8 changes: 4 additions & 4 deletions node-launchpad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["MaidSafe Developers <[email protected]>"]
description = "Node Launchpad"
name = "node-launchpad"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "GPL-3.0"
homepage = "https://maidsafe.net"
Expand Down Expand Up @@ -47,10 +47,10 @@ ratatui = { version = "0.26.0", features = ["serde", "macros", "unstable-widget-
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
signal-hook = "0.3.17"
sn-node-manager = { version = "0.8.0", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.2.12", path = "../sn_peers_acquisition", features = ["network-contacts"]}
sn-node-manager = { version = "0.9.0", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.3.0", path = "../sn_peers_acquisition", features = ["network-contacts"]}
sn-releases = "~0.2.6"
sn_service_management = { version = "0.3.0", path = "../sn_service_management" }
sn_service_management = { version = "0.3.1", path = "../sn_service_management" }
strip-ansi-escapes = "0.2.0"
strum = { version = "0.26.1", features = ["derive"] }
sysinfo = "0.30.12"
Expand Down
12 changes: 12 additions & 0 deletions sn_auditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.18](https://github.com/joshuef/safe_network/compare/sn_auditor-v0.1.17...sn_auditor-v0.1.18) - 2024-06-03

### Added
- *(auditor)* measuring beta tracking performance
- integrate DAG crawling fixes from Josh and Qi

### Fixed
- *(auditor)* check unknown hash when add new participant

### Other
- spend verification error management

## [0.1.17](https://github.com/joshuef/safe_network/compare/sn_auditor-v0.1.16...sn_auditor-v0.1.17) - 2024-05-24

### Added
Expand Down
8 changes: 4 additions & 4 deletions sn_auditor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["MaidSafe Developers <[email protected]>"]
description = "Safe Network Auditor"
name = "sn_auditor"
version = "0.1.17"
version = "0.1.18"
edition = "2021"
homepage = "https://maidsafe.net"
repository = "https://github.com/maidsafe/safe_network"
Expand All @@ -29,9 +29,9 @@ dirs-next = "~2.0.0"
graphviz-rust = { version = "0.9.0", optional = true }
serde = { version = "1.0.133", features = ["derive", "rc"] }
serde_json = "1.0.108"
sn_client = { path = "../sn_client", version = "0.106.3" }
sn_client = { path = "../sn_client", version = "0.107.0" }
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.12" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
tiny_http = { version = "0.12", features = ["ssl-rustls"] }
tracing = { version = "~0.1.26" }
tokio = { version = "1.32.0", features = [
Expand All @@ -43,4 +43,4 @@ tokio = { version = "1.32.0", features = [
"time",
"fs",
] }
urlencoding = "2.1.3"
urlencoding = "2.1.3"
23 changes: 23 additions & 0 deletions sn_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.93.0](https://github.com/joshuef/safe_network/compare/sn_cli-v0.92.0...sn_cli-v0.93.0) - 2024-06-03

### Added
- integrate DAG crawling fixes from Josh and Qi
- *(faucet)* write foundation cash note to disk
- *(client)* read existing mnemonic from disk if avilable
- *(networking)* add UPnP metrics
- *(network)* [**breaking**] move network versioning away from sn_protocol
- *(keys)* enable compile or runtime override of keys
- *(launchpad)* use nat detection server to determine the nat status

### Fixed
- *(networking)* upnp feature gates for metrics
- *(networking)* conditional upnp metrics

### Other
- *(cli)* showing cli final execution result explicitly
- rename DAG building to crawling
- spend verification error management
- *(networking)* cargo fmt
- use secrets during build process
- *(release)* sn_auditor-v0.1.17/sn_client-v0.106.3/sn_networking-v0.15.3/sn_transfers-v0.18.1/sn_logging-v0.2.27/sn_cli-v0.92.0/sn_faucet-v0.4.19/sn_node-v0.106.5/sn_service_management-v0.3.0/node-launchpad-v0.2.0/sn-node-manager-v0.8.0/sn_protocol-v0.16.7/sn_node_rpc_client-v0.6.18

## [0.92.0](https://github.com/joshuef/safe_network/compare/sn_cli-v0.91.4...sn_cli-v0.92.0) - 2024-05-24

### Added
Expand Down
10 changes: 5 additions & 5 deletions sn_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_cli"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.92.0"
version = "0.93.0"

[[bin]]
path = "src/bin/main.rs"
Expand Down Expand Up @@ -58,10 +58,10 @@ reqwest = { version = "0.12.2", default-features = false, features = [
rmp-serde = "1.1.1"
serde = { version = "1.0.133", features = ["derive"] }
sn_build_info = { path = "../sn_build_info", version = "0.1.7" }
sn_client = { path = "../sn_client", version = "0.106.3" }
sn_client = { path = "../sn_client", version = "0.107.0" }
sn_logging = { path = "../sn_logging", version = "0.2.27" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.12" }
sn_protocol = { path = "../sn_protocol", version = "0.16.7" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
tempfile = "3.6.0"
tiny-keccak = "~2.0.2"
tokio = { version = "1.32.0", features = [
Expand All @@ -83,7 +83,7 @@ eyre = "0.6.8"
criterion = "0.5.1"
tempfile = "3.6.0"
rand = { version = "~0.8.5", features = ["small_rng"] }
sn_client = { path = "../sn_client", version = "0.106.3", features = [
sn_client = { path = "../sn_client", version = "0.107.0", features = [
"test-utils",
] }

Expand Down
22 changes: 22 additions & 0 deletions sn_client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.107.0](https://github.com/joshuef/safe_network/compare/sn_client-v0.106.3...sn_client-v0.107.0) - 2024-06-03

### Added
- *(faucet)* write foundation cash note to disk
- *(client)* read existing mnemonic from disk if avilable
- integrate DAG crawling fixes from Josh and Qi
- *(networking)* add UPnP metrics
- *(network)* [**breaking**] move network versioning away from sn_protocol
- *(keys)* enable compile or runtime override of keys
- *(launchpad)* use nat detection server to determine the nat status

### Fixed
- *(networking)* upnp feature gates for metrics
- *(networking)* conditional upnp metrics

### Other
- rename DAG building to crawling
- spend verification error management
- *(networking)* cargo fmt
- use secrets during build process
- *(release)* sn_auditor-v0.1.17/sn_client-v0.106.3/sn_networking-v0.15.3/sn_transfers-v0.18.1/sn_logging-v0.2.27/sn_cli-v0.92.0/sn_faucet-v0.4.19/sn_node-v0.106.5/sn_service_management-v0.3.0/node-launchpad-v0.2.0/sn-node-manager-v0.8.0/sn_protocol-v0.16.7/sn_node_rpc_client-v0.6.18

## [0.106.3](https://github.com/joshuef/safe_network/compare/sn_client-v0.106.2...sn_client-v0.106.3) - 2024-05-24

### Added
Expand Down
12 changes: 6 additions & 6 deletions sn_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_client"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.106.3"
version = "0.107.0"

[features]
default = []
Expand Down Expand Up @@ -49,17 +49,17 @@ rayon = "1.8.0"
rmp-serde = "1.1.1"
self_encryption = "~0.29.0"
serde = { version = "1.0.133", features = ["derive", "rc"] }
sn_networking = { path = "../sn_networking", version = "0.15.3" }
sn_protocol = { path = "../sn_protocol", version = "0.16.7" }
sn_networking = { path = "../sn_networking", version = "0.16.0" }
sn_protocol = { path = "../sn_protocol", version = "0.17.0" }
serde_json = "1.0"
sn_registers = { path = "../sn_registers", version = "0.3.13" }
sn_transfers = { path = "../sn_transfers", version = "0.18.1" }
sn_transfers = { path = "../sn_transfers", version = "0.18.2" }
tempfile = "3.6.0"
thiserror = "1.0.23"
tiny-keccak = "~2.0.2"
tracing = { version = "~0.1.26" }
xor_name = "5.0.0"
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.12", optional = true }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0", optional = true }
eyre = { version = "0.6.8", optional = true }
lazy_static = { version = "~1.4.0", optional = true }

Expand All @@ -85,7 +85,7 @@ crate-type = ["cdylib", "rlib"]
getrandom = { version = "0.2.12", features = ["js"] }
wasm-bindgen = "0.2.90"
wasm-bindgen-futures = "0.4.40"
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.12" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.3.0" }
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2.1"
wasmtimer = "0.2.0"
Expand Down
9 changes: 9 additions & 0 deletions sn_faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.20](https://github.com/joshuef/safe_network/compare/sn_faucet-v0.4.19...sn_faucet-v0.4.20) - 2024-06-03

### Added
- *(faucet_server)* upload sample files and print head_addresses
- *(faucet_server)* download some iso files during startup

### Other
- no openssl dep for faucet

## [0.4.19](https://github.com/joshuef/safe_network/compare/sn_faucet-v0.4.18...sn_faucet-v0.4.19) - 2024-05-24

### Added
Expand Down
Loading

0 comments on commit 871f62c

Please sign in to comment.