Skip to content

Commit

Permalink
Merge branch 'rc-2024.09.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jacderida committed Sep 23, 2024
2 parents 43577b7 + d555c43 commit 0aedf80
Show file tree
Hide file tree
Showing 26 changed files with 257 additions and 109 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

*When editing this file, please respect a line length of 100.*

## 2024-09-24

### Network

#### Fixed

- The auditor now uses width-first tracking, to bring it in alignment with the new wallet.

### Client

#### Added

- The client will perform quote validation to avoid invalid quotes.
- A new high-level client API, `autonomi`. The crate provides most of the features necessary to
build apps for the Autonomi network.

### Node Manager

#### Fixed

- The node manager status command was not functioning correctly when used with a local network. The
mechanism for determining whether a node was running was changed to use the path of the service
process, but this did not work for a local network. The status command now differentiates between
a local and a service-based network, and the command now behaves as expected when using a local
network.

### Documentation

- In the main README for the repository, the four network keys were updated to reflect the keys
being used by the new stable network.

## 2024-09-12

### Network
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

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

16 changes: 11 additions & 5 deletions autonomi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
[package]
authors = ["MaidSafe Developers <[email protected]>"]
description = "Autonomi client API"
name = "autonomi"
license = "GPL-3.0"
version = "0.1.0"
edition = "2021"
homepage = "https://maidsafe.net"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"

[features]
default = ["data"]
Expand All @@ -23,11 +29,11 @@ rand = "0.8.5"
rmp-serde = "1.1.1"
self_encryption = "~0.29.0"
serde = { version = "1.0.133", features = ["derive", "rc"] }
sn_client = { path = "../sn_client" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.0" }
sn_protocol = { version = "0.17.5", path = "../sn_protocol" }
sn_registers = { path = "../sn_registers", version = "0.3.18" }
sn_transfers = { path = "../sn_transfers", version = "0.19.0" }
sn_client = { path = "../sn_client", version = "0.110.1" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.1" }
sn_protocol = { version = "0.17.9", path = "../sn_protocol" }
sn_registers = { path = "../sn_registers", version = "0.3.19" }
sn_transfers = { path = "../sn_transfers", version = "0.19.1" }
thiserror = "1.0.23"
tokio = { version = "1.35.0", features = ["sync", "fs"] }
tracing = { version = "~0.1.26" }
Expand Down
4 changes: 2 additions & 2 deletions nat-detection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "nat-detection"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
version = "0.2.4"
version = "0.2.5"

[[bin]]
name = "nat-detection"
Expand All @@ -28,7 +28,7 @@ libp2p = { version = "0.54.1", features = [
"macros",
"upnp",
] }
sn_networking = { path = "../sn_networking", version = "0.18.1" }
sn_networking = { path = "../sn_networking", version = "0.18.2" }
tokio = { version = "1.32.0", features = ["full"] }
tracing = { version = "~0.1.26" }
tracing-log = "0.2.0"
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.3.14"
version = "0.3.15"
edition = "2021"
license = "GPL-3.0"
homepage = "https://maidsafe.net"
Expand Down Expand Up @@ -48,10 +48,10 @@ reqwest = { version = "0.12.2", default-features = false, features = [
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
signal-hook = "0.3.17"
sn-node-manager = { version = "0.10.3", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.5.0", path = "../sn_peers_acquisition" }
sn-node-manager = { version = "0.10.4", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.5.1", path = "../sn_peers_acquisition" }
sn-releases = "~0.2.6"
sn_service_management = { version = "0.3.11", path = "../sn_service_management" }
sn_service_management = { version = "0.3.12", path = "../sn_service_management" }
strip-ansi-escapes = "0.2.0"
strum = { version = "0.26.1", features = ["derive"] }
sysinfo = "0.30.12"
Expand Down
4 changes: 2 additions & 2 deletions release-cycle-info
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# number for all the released binaries.
release-year: 2024
release-month: 09
release-cycle: 1
release-cycle-counter: 4
release-cycle: 2
release-cycle-counter: 3
5 changes: 5 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ changelog_update = false
git_release_enable = false
semver_check = false

[[package]]
name = "autonomi"
publish = false
release = false

[[package]]
name = "test_utils"
release = false
Loading

0 comments on commit 0aedf80

Please sign in to comment.