diff --git a/Cargo.lock b/Cargo.lock index a81fb34a7ff..128d216a23d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4588,7 +4588,7 @@ dependencies = [ [[package]] name = "ockam" -version = "0.138.0" +version = "0.139.0" dependencies = [ "hex", "ockam_abac", @@ -4610,7 +4610,7 @@ dependencies = [ [[package]] name = "ockam_abac" -version = "0.70.0" +version = "0.71.0" dependencies = [ "cfg-if", "either", @@ -4640,7 +4640,7 @@ dependencies = [ [[package]] name = "ockam_api" -version = "0.81.0" +version = "0.82.0" dependencies = [ "base64-url", "bytes 1.7.2", @@ -4735,7 +4735,7 @@ dependencies = [ [[package]] name = "ockam_app_lib" -version = "0.138.0" +version = "0.139.0" dependencies = [ "cbindgen", "duct", @@ -4756,7 +4756,7 @@ dependencies = [ [[package]] name = "ockam_command" -version = "0.138.0" +version = "0.139.0" dependencies = [ "arboard", "assert_cmd", @@ -4863,7 +4863,7 @@ dependencies = [ [[package]] name = "ockam_identity" -version = "0.124.0" +version = "0.125.0" dependencies = [ "async-trait", "cfg-if", @@ -4923,7 +4923,7 @@ dependencies = [ [[package]] name = "ockam_node" -version = "0.129.0" +version = "0.130.0" dependencies = [ "cfg-if", "fs2", @@ -4973,7 +4973,7 @@ dependencies = [ [[package]] name = "ockam_transport_ble" -version = "0.91.0" +version = "0.92.0" dependencies = [ "atsame54_xpro", "bluenrg", @@ -5001,7 +5001,7 @@ dependencies = [ [[package]] name = "ockam_transport_core" -version = "0.94.0" +version = "0.95.0" dependencies = [ "minicbor", "ockam_core", @@ -5011,7 +5011,7 @@ dependencies = [ [[package]] name = "ockam_transport_tcp" -version = "0.127.0" +version = "0.128.0" dependencies = [ "aya", "aya-log", @@ -5044,7 +5044,7 @@ dependencies = [ [[package]] name = "ockam_transport_udp" -version = "0.71.0" +version = "0.72.0" dependencies = [ "cfg-if", "minicbor", @@ -5059,7 +5059,7 @@ dependencies = [ [[package]] name = "ockam_transport_uds" -version = "0.56.0" +version = "0.57.0" dependencies = [ "ockam_core", "ockam_macros", @@ -5073,7 +5073,7 @@ dependencies = [ [[package]] name = "ockam_transport_websocket" -version = "0.118.0" +version = "0.119.0" dependencies = [ "futures-util", "ockam_core", @@ -5088,7 +5088,7 @@ dependencies = [ [[package]] name = "ockam_vault" -version = "0.122.0" +version = "0.123.0" dependencies = [ "aes-gcm", "arrayref", @@ -5119,7 +5119,7 @@ dependencies = [ [[package]] name = "ockam_vault_aws" -version = "0.48.0" +version = "0.49.0" dependencies = [ "aws-config", "aws-sdk-kms", diff --git a/implementations/rust/ockam/ockam/CHANGELOG.md b/implementations/rust/ockam/ockam/CHANGELOG.md index 2e6cbfd8adb..77552891d76 100644 --- a/implementations/rust/ockam/ockam/CHANGELOG.md +++ b/implementations/rust/ockam/ockam/CHANGELOG.md @@ -4,6 +4,12 @@ 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.139.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.138.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam/Cargo.toml b/implementations/rust/ockam/ockam/Cargo.toml index 06ce30e8698..675c5e8bc5a 100644 --- a/implementations/rust/ockam/ockam/Cargo.toml +++ b/implementations/rust/ockam/ockam/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam" -version = "0.138.0" +version = "0.139.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -89,21 +89,21 @@ path = "tests/main.rs" [dependencies] hex = { version = "0.4", default-features = false } -ockam_abac = { path = "../ockam_abac", version = "^0.70.0", default-features = false, optional = true } +ockam_abac = { path = "../ockam_abac", version = "^0.71.0", default-features = false, optional = true } ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } -ockam_identity = { path = "../ockam_identity", version = "^0.124.0", default-features = false } +ockam_identity = { path = "../ockam_identity", version = "^0.125.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.35.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.129.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0", default-features = false } -ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.127.0", default-features = false, optional = true } -ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.71.0", default-features = false, optional = true } -ockam_vault = { path = "../ockam_vault", version = "^0.122.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.130.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0", default-features = false } +ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.128.0", default-features = false, optional = true } +ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.72.0", default-features = false, optional = true } +ockam_vault = { path = "../ockam_vault", version = "^0.123.0", default-features = false, optional = true } rand = { version = "0.8", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } tracing = { version = "0.1", default-features = false } [dev-dependencies] -ockam_vault = { path = "../ockam_vault", version = "^0.122.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.123.0" } rand_xorshift = "0.3" serde_json = "1.0" trybuild = { version = "1.0", features = ["diff"] } diff --git a/implementations/rust/ockam/ockam/README.md b/implementations/rust/ockam/ockam/README.md index 018dc4f9a89..8e83ae2f4c4 100644 --- a/implementations/rust/ockam/ockam/README.md +++ b/implementations/rust/ockam/ockam/README.md @@ -49,7 +49,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam = "0.138.0" +ockam = "0.139.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_abac/CHANGELOG.md b/implementations/rust/ockam/ockam_abac/CHANGELOG.md index a39b55ec8ee..19af443591a 100644 --- a/implementations/rust/ockam/ockam_abac/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_abac/CHANGELOG.md @@ -4,6 +4,12 @@ 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.71.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.70.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_abac/Cargo.toml b/implementations/rust/ockam/ockam_abac/Cargo.toml index 724e4e19c8e..d943c07c1e3 100644 --- a/implementations/rust/ockam/ockam_abac/Cargo.toml +++ b/implementations/rust/ockam/ockam_abac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_abac" -version = "0.70.0" +version = "0.71.0" authors = ["Ockam Developers"] categories = ["cryptography"] edition = "2021" @@ -39,8 +39,8 @@ cfg-if = "1.0.0" either = { version = "1.13.0", default-features = false } minicbor = { version = "0.24.1", features = ["derive", "alloc"] } ockam_core = { version = "0.119.0", path = "../ockam_core", default-features = false } -ockam_identity = { version = "0.124.0", path = "../ockam_identity", default-features = false } -ockam_node = { version = "0.129.0", path = "../ockam_node", default-features = false } +ockam_identity = { version = "0.125.0", path = "../ockam_identity", default-features = false } +ockam_node = { version = "0.130.0", path = "../ockam_node", default-features = false } once_cell = { version = "1.19.0", default-features = false, features = ["alloc"] } serde = { version = "1", default-features = false, features = ["derive"] } strum = { version = "0.26.3", default-features = false, features = ["derive"] } diff --git a/implementations/rust/ockam/ockam_abac/README.md b/implementations/rust/ockam/ockam_abac/README.md index 575dcedfb70..272e6fdcb19 100644 --- a/implementations/rust/ockam/ockam_abac/README.md +++ b/implementations/rust/ockam/ockam_abac/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_abac = "0.70.0" +ockam_abac = "0.71.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_api/CHANGELOG.md b/implementations/rust/ockam/ockam_api/CHANGELOG.md index e5a8397bb7c..2cd767e392d 100644 --- a/implementations/rust/ockam/ockam_api/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_api/CHANGELOG.md @@ -4,6 +4,15 @@ 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.82.0 - 2024-10-24 + +### Added + +- Pretty json output by default, and colored if possible +- Add more granular scopes for command logs +- Allow relay connection failure without failing relay creation +- Updated dependencies + ## 0.81.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_api/Cargo.toml b/implementations/rust/ockam/ockam_api/Cargo.toml index cd8452cce38..eefb1c8bf6e 100644 --- a/implementations/rust/ockam/ockam_api/Cargo.toml +++ b/implementations/rust/ockam/ockam_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_api" -version = "0.81.0" +version = "0.82.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -115,8 +115,8 @@ tracing-subscriber = { version = "0.3", features = ["json"] } url = "2.5.2" ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.63.0", features = ["cbor", "serde"] } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0" } -ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.127.0", default-features = false, features = ["std"] } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0" } +ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.128.0", default-features = false, features = ["std"] } tonic = "0.12" [dependencies.ockam_core] @@ -126,13 +126,13 @@ default-features = false features = ["no_std", "alloc"] [dependencies.ockam_node] -version = "0.129.0" +version = "0.130.0" path = "../ockam_node" default-features = false features = ["no_std", "alloc"] [dependencies.ockam_vault] -version = "0.122.0" +version = "0.123.0" path = "../ockam_vault" default-features = false # FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which @@ -140,19 +140,19 @@ default-features = false features = ["std", "storage"] [dependencies.ockam_vault_aws] -version = "0.48.0" +version = "0.49.0" path = "../ockam_vault_aws" default-features = false features = ["std"] [dependencies.ockam] -version = "^0.138.0" +version = "^0.139.0" path = "../ockam" default-features = false features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"] [dependencies.ockam_abac] -version = "0.70.0" +version = "0.71.0" path = "../ockam_abac" default-features = false @@ -164,8 +164,8 @@ indexmap = "2.6.0" mockall = "0.13" multimap = "0.10.0" ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.35.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0" } -ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.127.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0" } +ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.128.0" } opentelemetry_sdk = { version = "0.26.0", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false } pretty_assertions = "1.4.1" proptest = "1.5.0" diff --git a/implementations/rust/ockam/ockam_api/README.md b/implementations/rust/ockam/ockam_api/README.md index 2ce1a289198..fb806483c25 100644 --- a/implementations/rust/ockam/ockam_api/README.md +++ b/implementations/rust/ockam/ockam_api/README.md @@ -32,7 +32,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_api = "0.81.0" +ockam_api = "0.82.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md index c22f280c0b2..fc2b2ad34f3 100644 --- a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md @@ -4,6 +4,14 @@ 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.139.0 - 2024-10-24 + +### Added + +- Add more granular scopes for command logs +- Allow relay connection failure without failing relay creation +- Updated dependencies + ## 0.138.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_app_lib/Cargo.toml b/implementations/rust/ockam/ockam_app_lib/Cargo.toml index ee37eea9532..8b7d696b9d7 100644 --- a/implementations/rust/ockam/ockam_app_lib/Cargo.toml +++ b/implementations/rust/ockam/ockam_app_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_app_lib" -version = "0.138.0" +version = "0.139.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -37,8 +37,8 @@ rust-crypto = ["ockam_api/rust-crypto"] duct = "0.13.7" miette = { version = "7.2.0", features = ["fancy-no-backtrace"] } minicbor = { version = "0.24.1", features = ["alloc", "derive"] } -ockam = { path = "../ockam", version = "^0.138.0", features = ["software_vault"] } -ockam_api = { path = "../ockam_api", version = "0.81.0", default-features = false, features = ["std"] } +ockam = { path = "../ockam", version = "^0.139.0", features = ["software_vault"] } +ockam_api = { path = "../ockam_api", version = "0.82.0", default-features = false, features = ["std"] } ockam_core = { path = "../ockam_core", version = "^0.119.0" } ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.63.0", features = ["cbor", "serde"] } serde = { version = "1.0", features = ["derive"] } @@ -49,7 +49,7 @@ tokio = { version = "1.39.2", features = ["full"] } tracing = { version = "0.1", default-features = false } [dev-dependencies] -ockam_api = { path = "../ockam_api", version = "0.81.0", default-features = false, features = ["test-utils"] } +ockam_api = { path = "../ockam_api", version = "0.82.0", default-features = false, features = ["test-utils"] } tempfile = { version = "3.10.1" } [build-dependencies] diff --git a/implementations/rust/ockam/ockam_app_lib/README.md b/implementations/rust/ockam/ockam_app_lib/README.md index dafec5ab6ac..0f2a007a23d 100644 --- a/implementations/rust/ockam/ockam_app_lib/README.md +++ b/implementations/rust/ockam/ockam_app_lib/README.md @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_app_lib = "0.138.0" +ockam_app_lib = "0.139.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_command/CHANGELOG.md b/implementations/rust/ockam/ockam_command/CHANGELOG.md index 578bcdb992a..52baa836e65 100644 --- a/implementations/rust/ockam/ockam_command/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_command/CHANGELOG.md @@ -4,6 +4,15 @@ 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.139.0 - 2024-10-24 + +### Added + +- Pretty json output by default, and colored if possible +- Add more granular scopes for command logs +- Allow relay connection failure without failing relay creation +- Updated dependencies + ## 0.138.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_command/Cargo.toml b/implementations/rust/ockam/ockam_command/Cargo.toml index a21ed0afa16..71cd15cc151 100644 --- a/implementations/rust/ockam/ockam_command/Cargo.toml +++ b/implementations/rust/ockam/ockam_command/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_command" -version = "0.138.0" +version = "0.139.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -70,13 +70,13 @@ indicatif = "0.17.8" indoc = "2.0.5" miette = { version = "7.2.0", features = ["fancy-no-backtrace"] } minicbor = { version = "0.24.1", features = ["derive", "alloc", "half"] } -ockam = { path = "../ockam", version = "^0.138.0", features = ["software_vault"] } -ockam_abac = { path = "../ockam_abac", version = "0.70.0", features = ["std"] } -ockam_api = { path = "../ockam_api", version = "0.81.0", default-features = false, features = ["std"] } +ockam = { path = "../ockam", version = "^0.139.0", features = ["software_vault"] } +ockam_abac = { path = "../ockam_abac", version = "0.71.0", features = ["std"] } +ockam_api = { path = "../ockam_api", version = "0.82.0", default-features = false, features = ["std"] } ockam_core = { path = "../ockam_core", version = "^0.119.0" } ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.63.0", features = ["std"] } -ockam_node = { path = "../ockam_node", version = "^0.129.0" } -ockam_vault = { path = "../ockam_vault", version = "^0.122.0", default-features = false, features = ["storage", "std"] } +ockam_node = { path = "../ockam_node", version = "^0.130.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.123.0", default-features = false, features = ["storage", "std"] } once_cell = "1.19" open = "5.3.0" opentelemetry = { version = "0.26.0", features = ["metrics", "trace"] } @@ -107,7 +107,7 @@ which = "6.0.2" [dev-dependencies] assert_cmd = "2" mockito = "1.5.0" -ockam_api = { path = "../ockam_api", version = "0.81.0", default-features = false, features = ["test-utils"] } +ockam_api = { path = "../ockam_api", version = "0.82.0", default-features = false, features = ["test-utils"] } ockam_macros = { path = "../ockam_macros", version = "^0.35.0" } proptest = "1.5.0" tempfile = "3.10.1" diff --git a/implementations/rust/ockam/ockam_command/README.md b/implementations/rust/ockam/ockam_command/README.md index a2a48459a25..c73cb8170f8 100644 --- a/implementations/rust/ockam/ockam_command/README.md +++ b/implementations/rust/ockam/ockam_command/README.md @@ -33,7 +33,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_command = "0.138.0" +ockam_command = "0.139.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_identity/CHANGELOG.md b/implementations/rust/ockam/ockam_identity/CHANGELOG.md index 69d3011a112..0398048e89b 100644 --- a/implementations/rust/ockam/ockam_identity/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_identity/CHANGELOG.md @@ -4,6 +4,12 @@ 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.125.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.124.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_identity/Cargo.toml b/implementations/rust/ockam/ockam_identity/Cargo.toml index 2afb85152e1..13669844835 100644 --- a/implementations/rust/ockam/ockam_identity/Cargo.toml +++ b/implementations/rust/ockam/ockam_identity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_identity" -version = "0.124.0" +version = "0.125.0" authors = ["Ockam Developers"] categories = ["cryptography", "authentication"] edition = "2021" @@ -80,9 +80,9 @@ hex = { version = "0.4", default-features = false } minicbor = { version = "0.24.1", features = ["alloc", "derive"] } ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.35.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.129.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0", default-features = false } -ockam_vault = { path = "../ockam_vault", version = "^0.122.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.130.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0", default-features = false } +ockam_vault = { path = "../ockam_vault", version = "^0.123.0", default-features = false, optional = true } rand = { version = "0.8", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } serde_bare = { version = "0.5.0", default-features = false, features = ["alloc"] } diff --git a/implementations/rust/ockam/ockam_identity/README.md b/implementations/rust/ockam/ockam_identity/README.md index 06998713308..7ebd08abf0c 100644 --- a/implementations/rust/ockam/ockam_identity/README.md +++ b/implementations/rust/ockam/ockam_identity/README.md @@ -31,7 +31,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_identity = "0.124.0" +ockam_identity = "0.125.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_node/CHANGELOG.md b/implementations/rust/ockam/ockam_node/CHANGELOG.md index 68796bfd0c1..0e711a6ed99 100644 --- a/implementations/rust/ockam/ockam_node/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_node/CHANGELOG.md @@ -4,6 +4,12 @@ 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.130.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.129.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_node/Cargo.toml b/implementations/rust/ockam/ockam_node/Cargo.toml index 26ee775866a..bcc1c06064a 100644 --- a/implementations/rust/ockam/ockam_node/Cargo.toml +++ b/implementations/rust/ockam/ockam_node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_node" -version = "0.129.0" +version = "0.130.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -95,7 +95,7 @@ nix = { version = "0.29", features = ["signal"], optional = true } ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } ockam_executor = { path = "../ockam_executor", version = "^0.88.0", default-features = false, optional = true } ockam_macros = { path = "../ockam_macros", version = "^0.35.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0", default-features = false, optional = true } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0", default-features = false, optional = true } once_cell = { version = "1.19.0", optional = true, default-features = false } opentelemetry = { version = "0.26.0", features = ["logs", "metrics", "trace"], optional = true } regex = { version = "1.10.6", default-features = false, optional = true } diff --git a/implementations/rust/ockam/ockam_node/README.md b/implementations/rust/ockam/ockam_node/README.md index 0b200e7028e..c4ab4f8f498 100644 --- a/implementations/rust/ockam/ockam_node/README.md +++ b/implementations/rust/ockam/ockam_node/README.md @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_node = "0.129.0" +ockam_node = "0.130.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml b/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml index 27e61a3e01d..af1a0983a47 100644 --- a/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml +++ b/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml @@ -38,9 +38,9 @@ hex = { version = "0.4", default-features = false } lazy_static = "1.5.0" minicbor = { version = "0.24.1", features = ["alloc", "derive"] } ockam_core = { path = "../ockam_core", default-features = false, features = ["std"], version = "^0.119.0" } -ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"], version = "^0.124.0" } -ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"], version = "^0.122.0" } -ockam_vault_aws = { path = "../ockam_vault_aws", version = "^0.48.0" } +ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"], version = "^0.125.0" } +ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"], version = "^0.123.0" } +ockam_vault_aws = { path = "../ockam_vault_aws", version = "^0.49.0" } # Enable credentials-sso feature in ockam_vault_aws for use on sso environments (like dev machines) rustler = "=0.33.0" time = "0.3.36" diff --git a/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md index b7e5578cf4f..d75ddf65d3c 100644 --- a/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md @@ -4,6 +4,12 @@ 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.92.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.91.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml index a735909a9b9..494bc062f30 100644 --- a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_ble" -version = "0.91.0" +version = "0.92.0" authors = ["Ockam Developers"] autoexamples = false categories = ["cryptography", "asynchronous", "authentication", "embedded", "network-programming"] @@ -85,8 +85,8 @@ pic32mx2xxfxxxb = ["pic32", "pic32-hal/pic32mx2xxfxxxb"] [dependencies] ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.129.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.130.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0", default-features = false } futures = { version = "0.3.30", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } @@ -123,8 +123,8 @@ cortex-m = "0.7.7" riscv = "0.10.0" [dev-dependencies] -ockam_identity = { path = "../ockam_identity", version = "^0.124.0" } -ockam_vault = { path = "../ockam_vault", version = "^0.122.0" } +ockam_identity = { path = "../ockam_identity", version = "^0.125.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.123.0" } [[example]] name = "04-routing-over-ble-transport-initiator" diff --git a/implementations/rust/ockam/ockam_transport_ble/README.md b/implementations/rust/ockam/ockam_transport_ble/README.md index d0b00607d4b..960d832aab0 100644 --- a/implementations/rust/ockam/ockam_transport_ble/README.md +++ b/implementations/rust/ockam/ockam_transport_ble/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_ble = "0.91.0" +ockam_transport_ble = "0.92.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md index fd1a746ecc9..fc4af231658 100644 --- a/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md @@ -4,6 +4,13 @@ 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.95.0 - 2024-10-24 + +### Added + +- Check capabilities before using ebpf portals +- Updated dependencies + ## 0.94.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_transport_core/Cargo.toml b/implementations/rust/ockam/ockam_transport_core/Cargo.toml index 64b47dbdd22..06d5d5c1ce9 100644 --- a/implementations/rust/ockam/ockam_transport_core/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_core" -version = "0.94.0" +version = "0.95.0" authors = ["Ockam Developers"] categories = ["network-programming", "asynchronous"] edition = "2021" diff --git a/implementations/rust/ockam/ockam_transport_core/README.md b/implementations/rust/ockam/ockam_transport_core/README.md index c4bd200bae1..bdced6c00a8 100644 --- a/implementations/rust/ockam/ockam_transport_core/README.md +++ b/implementations/rust/ockam/ockam_transport_core/README.md @@ -27,7 +27,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_core = "0.94.0" +ockam_transport_core = "0.95.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md index 9d5b2f228a5..d55b9182f55 100644 --- a/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md @@ -4,6 +4,13 @@ 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.128.0 - 2024-10-24 + +### Added + +- Check capabilities before using ebpf portals +- Updated dependencies + ## 0.127.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml b/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml index 6e46eb4c12f..cf89b0f92b9 100644 --- a/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_tcp" -version = "0.127.0" +version = "0.128.0" authors = ["Ockam Developers"] autoexamples = false categories = [ @@ -40,8 +40,8 @@ log = "0.4.21" minicbor = "0.24" ockam_core = { path = "../ockam_core", version = "^0.119.0" } ockam_macros = { path = "../ockam_macros", version = "^0.35.0" } -ockam_node = { path = "../ockam_node", version = "^0.129.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0" } +ockam_node = { path = "../ockam_node", version = "^0.130.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0" } opentelemetry = { version = "0.26.0", features = ["logs", "metrics", "trace"], optional = true } rand = "0.8" rustls = { version = "0.23", default-features = false } diff --git a/implementations/rust/ockam/ockam_transport_tcp/README.md b/implementations/rust/ockam/ockam_transport_tcp/README.md index 05f7e42c603..789164e3f7d 100644 --- a/implementations/rust/ockam/ockam_transport_tcp/README.md +++ b/implementations/rust/ockam/ockam_transport_tcp/README.md @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_tcp = "0.127.0" +ockam_transport_tcp = "0.128.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md index 81978a7f84f..7083d0b180c 100644 --- a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md @@ -4,6 +4,12 @@ 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.72.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.71.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_transport_udp/Cargo.toml b/implementations/rust/ockam/ockam_transport_udp/Cargo.toml index 4399d2a3eba..445f9afb7e4 100644 --- a/implementations/rust/ockam/ockam_transport_udp/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_udp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_udp" -version = "0.71.0" +version = "0.72.0" authors = ["Ockam Developers"] autoexamples = false categories = [ @@ -32,8 +32,8 @@ alloc = [] cfg-if = "1.0.0" minicbor = "0.24" ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.129.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0" } +ockam_node = { path = "../ockam_node", version = "^0.130.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0" } rand = "0.8" tokio = { version = "1.39.2", features = ["rt-multi-thread", "sync", "net", "macros", "time", "io-util"] } tracing = { version = "0.1", default-features = false } diff --git a/implementations/rust/ockam/ockam_transport_udp/README.md b/implementations/rust/ockam/ockam_transport_udp/README.md index e0643fcd4ff..8dda490db28 100644 --- a/implementations/rust/ockam/ockam_transport_udp/README.md +++ b/implementations/rust/ockam/ockam_transport_udp/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_udp = "0.71.0" +ockam_transport_udp = "0.72.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md index 8e54f132bad..21616e69e45 100644 --- a/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md @@ -4,6 +4,12 @@ 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.57.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.56.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_transport_uds/Cargo.toml b/implementations/rust/ockam/ockam_transport_uds/Cargo.toml index 9c910d8b0d0..44c4c1e29d3 100644 --- a/implementations/rust/ockam/ockam_transport_uds/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_uds/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_uds" -version = "0.56.0" +version = "0.57.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -29,8 +29,8 @@ alloc = [] [dependencies] ockam_core = { path = "../ockam_core", version = "^0.119.0" } ockam_macros = { path = "../ockam_macros", version = "^0.35.0" } -ockam_node = { path = "../ockam_node", version = "^0.129.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0" } +ockam_node = { path = "../ockam_node", version = "^0.130.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0" } serde = { version = "1.0", default-features = false, features = ["derive"] } socket2 = "0.5.6" tokio = { version = "1.39", features = ["rt-multi-thread", "sync", "net", "macros", "time", "io-util"] } diff --git a/implementations/rust/ockam/ockam_transport_uds/README.md b/implementations/rust/ockam/ockam_transport_uds/README.md index 7b035fb72e2..b94569a8fd1 100644 --- a/implementations/rust/ockam/ockam_transport_uds/README.md +++ b/implementations/rust/ockam/ockam_transport_uds/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_uds = "0.56.0" +ockam_transport_uds = "0.57.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md index e278a894268..5e053ebf3bb 100644 --- a/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md @@ -4,6 +4,12 @@ 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.119.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.118.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml b/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml index 900fde2a4ab..8c6c61c05ed 100644 --- a/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_websocket" -version = "0.118.0" +version = "0.119.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -46,8 +46,8 @@ alloc = [ [dependencies] futures-util = { version = "0.3", default-features = false, features = ["tokio-io"] } ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.129.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.94.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.130.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.95.0", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } tokio = { version = "1.39", default-features = false, optional = true, features = ["rt-multi-thread", "sync", "net", "macros", "time", "io-std"] } tokio-tungstenite = { version = "0.23.1", default-features = false, optional = true, features = ["connect"] } diff --git a/implementations/rust/ockam/ockam_transport_websocket/README.md b/implementations/rust/ockam/ockam_transport_websocket/README.md index c5d190d0066..0d75185eba6 100644 --- a/implementations/rust/ockam/ockam_transport_websocket/README.md +++ b/implementations/rust/ockam/ockam_transport_websocket/README.md @@ -84,7 +84,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_websocket = "0.118.0" +ockam_transport_websocket = "0.119.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_vault/CHANGELOG.md b/implementations/rust/ockam/ockam_vault/CHANGELOG.md index f489e72875c..a63ac36ce61 100644 --- a/implementations/rust/ockam/ockam_vault/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_vault/CHANGELOG.md @@ -4,6 +4,12 @@ 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.123.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.122.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_vault/Cargo.toml b/implementations/rust/ockam/ockam_vault/Cargo.toml index bac3e7a3cd4..67e4398cf88 100644 --- a/implementations/rust/ockam/ockam_vault/Cargo.toml +++ b/implementations/rust/ockam/ockam_vault/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_vault" -version = "0.122.0" +version = "0.123.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -80,7 +80,7 @@ hkdf = { version = "0.12", default-features = false } minicbor = { version = "0.24.1", features = ["derive"] } ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.35.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.129.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.130.0", default-features = false, optional = true } # ECDSA providers: p256 = { version = "0.13.2", default-features = false } rand_pcg = { version = "0.3.1", default-features = false, optional = true } diff --git a/implementations/rust/ockam/ockam_vault/README.md b/implementations/rust/ockam/ockam_vault/README.md index e9f56fbbefe..afa87dad6a5 100644 --- a/implementations/rust/ockam/ockam_vault/README.md +++ b/implementations/rust/ockam/ockam_vault/README.md @@ -27,7 +27,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_vault = "0.122.0" +ockam_vault = "0.123.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md b/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md index 00a1800ac9e..cd817ca2b64 100644 --- a/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md @@ -4,6 +4,12 @@ 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.49.0 - 2024-10-24 + +### Added + +- Updated dependencies + ## 0.48.0 - 2024-10-23 ### Added diff --git a/implementations/rust/ockam/ockam_vault_aws/Cargo.toml b/implementations/rust/ockam/ockam_vault_aws/Cargo.toml index f7890208ebd..a636f0f20fb 100644 --- a/implementations/rust/ockam/ockam_vault_aws/Cargo.toml +++ b/implementations/rust/ockam/ockam_vault_aws/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_vault_aws" -version = "0.48.0" +version = "0.49.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -60,8 +60,8 @@ aws-config = { version = "1.5.8", default-features = false, features = ["rustls" aws-sdk-kms = { version = "1.47.0", default-features = false, features = ["rustls"] } ockam_core = { path = "../ockam_core", version = "^0.119.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.35.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.129.0", default-features = false } -ockam_vault = { path = "../ockam_vault", version = "^0.122.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.130.0", default-features = false } +ockam_vault = { path = "../ockam_vault", version = "^0.123.0", default-features = false } p256 = { version = "0.13.2", default-features = false } sha2 = { version = "0.10", default-features = false } thiserror = { version = "1.0.64" } diff --git a/implementations/rust/ockam/ockam_vault_aws/README.md b/implementations/rust/ockam/ockam_vault_aws/README.md index 9631fc732d2..768b7b6f0ea 100644 --- a/implementations/rust/ockam/ockam_vault_aws/README.md +++ b/implementations/rust/ockam/ockam_vault_aws/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_vault_aws = "0.48.0" +ockam_vault_aws = "0.49.0" ``` ## License