Skip to content

Commit

Permalink
chore(release): sn_cli-v0.89.83/sn_client-v0.104.29/sn_networking-v0.…
Browse files Browse the repository at this point in the history
…13.33/sn_protocol-v0.15.4/sn_transfers-v0.16.4/sn_peers_acquisition-v0.2.8/sn_logging-v0.2.23/sn_faucet-v0.3.84/sn_node-v0.104.39/sn_service_management-v/sn-node-manager-v0.6.0/sn_node_rpc_client-v0.5.0/token_supplies-v0.1.44
  • Loading branch information
joshuef committed Mar 14, 2024
1 parent a3e36ae commit 9143aff
Show file tree
Hide file tree
Showing 28 changed files with 222 additions and 58 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

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

## [Unreleased]

## [0.89.83](https://github.com/joshuef/safe_network/compare/sn_cli-v0.89.82...sn_cli-v0.89.83) - 2024-03-14

### Added
- self in import change
- moved param to outside calc
- refactor spend validation

### Fixed
- *(cli)* allow to upload chunks from acc-packet using chunked files local cache
- *(cli)* use chunk-mgr with iterator skipping tracking info files

### Other
- *(acc-packet)* adding verifications to compare tracking info generated on acc-packets cloned
- *(acc-packet)* adding verifications to compare the files/dirs stored on acc-packets cloned
- *(acc-packet)* testing sync empty root dirs
- *(acc-packet)* testing mutations syncing across clones of an acc-packet
- *(acc-packet)* adding automated tests to sn_cli::AccountPacket
- *(cli)* chunk-mgr to report files chunked/uploaded rather than bailing out
- improve code quality
- new `sn_service_management` crate

## [0.89.82-alpha.1](https://github.com/joshuef/safe_network/compare/sn_cli-v0.89.82-alpha.0...sn_cli-v0.89.82-alpha.1) - 2024-03-08

### Added
Expand Down
12 changes: 6 additions & 6 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.89.82"
version = "0.89.83"

[[bin]]
path="src/main.rs"
Expand Down Expand Up @@ -47,9 +47,9 @@ reqwest = { version="0.11.18", default-features=false, features = ["rustls"] }
rmp-serde = "1.1.1"
serde = { version = "1.0.133", features = [ "derive"]}
sn_build_info = { path="../sn_build_info", version = "0.1.5" }
sn_client = { path = "../sn_client", version = "0.104.29-alpha.1" }
sn_logging = { path = "../sn_logging", version = "0.2.21" }
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.6" }
sn_client = { path = "../sn_client", version = "0.104.29" }
sn_logging = { path = "../sn_logging", version = "0.2.23" }
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.8" }
tempfile = "3.6.0"
tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "fs"] }
tracing = { version = "~0.1.26" }
Expand All @@ -63,8 +63,8 @@ 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.104.29-alpha.1", features = ["test-utils"] }
sn_protocol = { path = "../sn_protocol", version = "0.15.2-alpha.0" }
sn_client = { path = "../sn_client", version = "0.104.29", features = ["test-utils"] }
sn_protocol = { path = "../sn_protocol", version = "0.15.4" }

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

## [Unreleased]

## [0.104.29-alpha.2](https://github.com/joshuef/safe_network/compare/sn_client-v0.104.29-alpha.1...sn_client-v0.104.29-alpha.2) - 2024-03-14

### Added
- moved param to outside calc
- refactor spend validation

### Fixed
- dont stop spend verification at spend error, generalise spend serde

### Other
- store test utils under a new crate
- *(acc-packet)* adding automated tests to sn_cli::AccountPacket
- improve code quality
- new `sn_service_management` crate
- *(release)* sn_transfers-v0.16.3/sn_cli-v0.89.82

## [0.104.29-alpha.1](https://github.com/joshuef/safe_network/compare/sn_client-v0.104.29-alpha.0...sn_client-v0.104.29-alpha.1) - 2024-03-08

### Other
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.104.29-alpha.1"
version = "0.104.29"

[features]
default=[]
Expand Down Expand Up @@ -36,18 +36,18 @@ 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.13.32" }
sn_protocol = { path = "../sn_protocol", version = "0.15.3" }
sn_networking = { path = "../sn_networking", version = "0.13.33" }
sn_protocol = { path = "../sn_protocol", version = "0.15.4" }
serde_json = "1.0"
sn_registers = { path = "../sn_registers", version = "0.3.10" }
sn_transfers = { path = "../sn_transfers", version = "0.16.3" }
sn_transfers = { path = "../sn_transfers", version = "0.16.4" }
tempfile = "3.6.0"
thiserror = "1.0.23"
tiny-keccak = "~2.0.2"
tokio = { version = "1.35.0", features = ["io-util", "macros", "rt", "sync", "time"] }
tracing = { version = "~0.1.26" }
xor_name = "5.0.0"
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.6", optional = true }
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.8", optional = true }
eyre = { version = "0.6.8", optional = true }
lazy_static = { version = "~1.4.0", optional = true }

Expand All @@ -68,7 +68,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.7" }
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.8" }
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2.1"
wasmtimer = "0.2.0"
Expand Down
5 changes: 5 additions & 0 deletions sn_faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.84](https://github.com/joshuef/safe_network/compare/sn_faucet-v0.3.83...sn_faucet-v0.3.84) - 2024-03-14

### Other
- *(release)* sn_transfers-v0.16.3/sn_cli-v0.89.82

## [0.3.83](https://github.com/joshuef/safe_network/compare/sn_faucet-v0.3.82-alpha.0...sn_faucet-v0.3.83) - 2024-03-08

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

[features]
default = []
Expand All @@ -31,10 +31,10 @@ indicatif = { version = "0.17.5", features = ["tokio"] }
minreq = { version = "2.11.0", features = ["https-rustls"], optional = true}
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sn_client = { path = "../sn_client", version = "0.104.29-alpha.1" }
sn_logging = { path = "../sn_logging", version = "0.2.21" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.6" }
sn_transfers = { path = "../sn_transfers", version = "0.16.3" }
sn_client = { path = "../sn_client", version = "0.104.29" }
sn_logging = { path = "../sn_logging", version = "0.2.23" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.8" }
sn_transfers = { path = "../sn_transfers", version = "0.16.4" }
tiny_http = { version="0.12", features = ["ssl-rustls"] }
tokio = { version = "1.32.0", features = ["parking_lot", "rt"] }
tracing = { version = "~0.1.26" }
Expand Down
5 changes: 5 additions & 0 deletions sn_logging/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.23](https://github.com/joshuef/safe_network/compare/sn_logging-v0.2.22...sn_logging-v0.2.23) - 2024-03-14

### Other
- *(api)* make logging::Error public

## [0.2.21](https://github.com/maidsafe/safe_network/compare/sn_logging-v0.2.20...sn_logging-v0.2.21) - 2024-02-08

### Other
Expand Down
2 changes: 1 addition & 1 deletion sn_logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_logging"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.2.22"
version = "0.2.23"

[dependencies]
chrono = "~0.4.19"
Expand Down
14 changes: 14 additions & 0 deletions sn_networking/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.13.33](https://github.com/joshuef/safe_network/compare/sn_networking-v0.13.32...sn_networking-v0.13.33) - 2024-03-14

### Added
- refactor spend validation

### Fixed
- *(test)* use unqiue dir during test
- dont stop spend verification at spend error, generalise spend serde
- put validation network spends errors management

### Other
- improve code quality
- *(release)* sn_transfers-v0.16.3/sn_cli-v0.89.82

## [0.13.32](https://github.com/joshuef/safe_network/compare/sn_networking-v0.13.31-alpha.0...sn_networking-v0.13.32) - 2024-03-08

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

[features]
default = ["libp2p/quic"]
Expand Down Expand Up @@ -50,8 +50,8 @@ rand = { version = "~0.8.5", features = ["small_rng"] }
rayon = "1.8.0"
rmp-serde = "1.1.1"
serde = { version = "1.0.133", features = [ "derive", "rc" ]}
sn_protocol = { path = "../sn_protocol", version = "0.15.3" }
sn_transfers = { path = "../sn_transfers", version = "0.16.3" }
sn_protocol = { path = "../sn_protocol", version = "0.15.4" }
sn_transfers = { path = "../sn_transfers", version = "0.16.4" }
sn_registers = { path = "../sn_registers", version = "0.3.9" }
sysinfo = { version = "0.29.0", default-features = false, optional = true }
thiserror = "1.0.23"
Expand Down
17 changes: 17 additions & 0 deletions sn_node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ 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).

## [0.104.39](https://github.com/joshuef/safe_network/compare/sn_node-v0.104.38...sn_node-v0.104.39) - 2024-03-14

### Added
- refactor spend validation

### Fixed
- *(test)* await on the restart node rpc call
- dont stop spend verification at spend error, generalise spend serde
- put validation network spends errors management

### Other
- store test utils under a new crate
- move DeploymentInventory to test utils
- improve code quality
- new `sn_service_management` crate
- *(release)* sn_transfers-v0.16.3/sn_cli-v0.89.82

## [0.104.38](https://github.com/joshuef/safe_network/compare/sn_node-v0.104.37-alpha.0...sn_node-v0.104.38) - 2024-03-08

### Other
Expand Down
14 changes: 7 additions & 7 deletions sn_node/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 Node"
name = "sn_node"
version = "0.104.38"
version = "0.104.39"
edition = "2021"
license = "GPL-3.0"
homepage = "https://maidsafe.net"
Expand Down Expand Up @@ -51,13 +51,13 @@ rayon = "1.8.0"
self_encryption = "~0.29.0"
serde = { version = "1.0.133", features = [ "derive", "rc" ]}
sn_build_info = { path="../sn_build_info", version = "0.1.5" }
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.6" }
sn_client = { path = "../sn_client", version = "0.104.29-alpha.1" }
sn_logging = { path = "../sn_logging", version = "0.2.21" }
sn_networking = { path = "../sn_networking", version = "0.13.32" }
sn_protocol = { path = "../sn_protocol", version = "0.15.3", features = ["rpc"]}
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.8" }
sn_client = { path = "../sn_client", version = "0.104.29" }
sn_logging = { path = "../sn_logging", version = "0.2.23" }
sn_networking = { path = "../sn_networking", version = "0.13.33" }
sn_protocol = { path = "../sn_protocol", version = "0.15.4", features = ["rpc"]}
sn_registers = { path = "../sn_registers", version = "0.3.10" }
sn_transfers = { path = "../sn_transfers", version = "0.16.3" }
sn_transfers = { path = "../sn_transfers", version = "0.16.4" }
sn_service_management = { path = "../sn_service_management", version = "0.1.0" }
thiserror = "1.0.23"
tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "signal"] }
Expand Down
Loading

0 comments on commit 9143aff

Please sign in to comment.