diff --git a/Cargo.lock b/Cargo.lock index 8d9e896243f..cb08765e66a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4496,7 +4496,7 @@ dependencies = [ [[package]] name = "ockam" -version = "0.129.0" +version = "0.130.0" dependencies = [ "hex", "ockam_abac", @@ -4518,7 +4518,7 @@ dependencies = [ [[package]] name = "ockam_abac" -version = "0.62.0" +version = "0.63.0" dependencies = [ "cfg-if", "either", @@ -4547,7 +4547,7 @@ dependencies = [ [[package]] name = "ockam_api" -version = "0.72.0" +version = "0.73.0" dependencies = [ "base64-url", "bytes 1.6.1", @@ -4637,7 +4637,7 @@ dependencies = [ [[package]] name = "ockam_app_lib" -version = "0.129.0" +version = "0.130.0" dependencies = [ "cbindgen", "duct", @@ -4659,7 +4659,7 @@ dependencies = [ [[package]] name = "ockam_command" -version = "0.129.0" +version = "0.130.0" dependencies = [ "arboard", "assert_cmd", @@ -4718,7 +4718,7 @@ dependencies = [ [[package]] name = "ockam_core" -version = "0.112.0" +version = "0.113.0" dependencies = [ "async-trait", "backtrace", @@ -4755,7 +4755,7 @@ dependencies = [ [[package]] name = "ockam_executor" -version = "0.81.0" +version = "0.82.0" dependencies = [ "crossbeam-queue", "futures 0.3.30", @@ -4767,7 +4767,7 @@ dependencies = [ [[package]] name = "ockam_identity" -version = "0.116.0" +version = "0.117.0" dependencies = [ "async-trait", "cfg-if", @@ -4809,7 +4809,7 @@ dependencies = [ [[package]] name = "ockam_multiaddr" -version = "0.56.0" +version = "0.57.0" dependencies = [ "bincode", "minicbor", @@ -4827,7 +4827,7 @@ dependencies = [ [[package]] name = "ockam_node" -version = "0.121.0" +version = "0.122.0" dependencies = [ "cfg-if", "fs2", @@ -4876,7 +4876,7 @@ dependencies = [ [[package]] name = "ockam_transport_ble" -version = "0.83.0" +version = "0.84.0" dependencies = [ "atsame54_xpro", "bluenrg", @@ -4904,7 +4904,7 @@ dependencies = [ [[package]] name = "ockam_transport_core" -version = "0.86.0" +version = "0.87.0" dependencies = [ "minicbor", "ockam_core", @@ -4913,7 +4913,7 @@ dependencies = [ [[package]] name = "ockam_transport_tcp" -version = "0.119.0" +version = "0.120.0" dependencies = [ "cfg-if", "minicbor", @@ -4933,7 +4933,7 @@ dependencies = [ [[package]] name = "ockam_transport_udp" -version = "0.63.0" +version = "0.64.0" dependencies = [ "cfg-if", "minicbor", @@ -4948,7 +4948,7 @@ dependencies = [ [[package]] name = "ockam_transport_uds" -version = "0.48.0" +version = "0.49.0" dependencies = [ "ockam_core", "ockam_macros", @@ -4962,7 +4962,7 @@ dependencies = [ [[package]] name = "ockam_transport_websocket" -version = "0.110.0" +version = "0.111.0" dependencies = [ "futures-util", "ockam_core", @@ -4977,7 +4977,7 @@ dependencies = [ [[package]] name = "ockam_vault" -version = "0.114.0" +version = "0.115.0" dependencies = [ "aes-gcm", "arrayref", @@ -5009,7 +5009,7 @@ dependencies = [ [[package]] name = "ockam_vault_aws" -version = "0.40.0" +version = "0.41.0" dependencies = [ "aws-config", "aws-sdk-kms", diff --git a/implementations/rust/ockam/ockam/CHANGELOG.md b/implementations/rust/ockam/ockam/CHANGELOG.md index 61e6e7db581..ee926703a2d 100644 --- a/implementations/rust/ockam/ockam/CHANGELOG.md +++ b/implementations/rust/ockam/ockam/CHANGELOG.md @@ -4,6 +4,17 @@ 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-07-29 + +### Added + +- Improve transport imports +- Expose `RendezvousService` from ockam +- Move rendezvous_server to `ockam rendezvous-server start` +- Converted socket addresses to hostnames in command +- Remove sync operations +- Updated dependencies + ## 0.129.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam/Cargo.toml b/implementations/rust/ockam/ockam/Cargo.toml index 3352b175fc7..d6b3b24ee29 100644 --- a/implementations/rust/ockam/ockam/Cargo.toml +++ b/implementations/rust/ockam/ockam/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam" -version = "0.129.0" +version = "0.130.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.62.0", default-features = false, optional = true } -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } -ockam_identity = { path = "../ockam_identity", version = "^0.116.0", default-features = false } +ockam_abac = { path = "../ockam_abac", version = "^0.63.0", default-features = false, optional = true } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } +ockam_identity = { path = "../ockam_identity", version = "^0.117.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.121.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0", default-features = false } -ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.119.0", default-features = false, optional = true } -ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.63.0", default-features = false, optional = true } -ockam_vault = { path = "../ockam_vault", version = "^0.114.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.122.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.0", default-features = false } +ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.120.0", default-features = false, optional = true } +ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.64.0", default-features = false, optional = true } +ockam_vault = { path = "../ockam_vault", version = "^0.115.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.114.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.115.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 06b4c9823e1..b06a14ebe13 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.129.0" +ockam = "0.130.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_abac/CHANGELOG.md b/implementations/rust/ockam/ockam_abac/CHANGELOG.md index 0b0269d3cbe..58303a52349 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.63.0 - 2024-07-29 + +### Added + +- Updated dependencies + ## 0.62.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_abac/Cargo.toml b/implementations/rust/ockam/ockam_abac/Cargo.toml index 954f176a887..9dafb1cec16 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.62.0" +version = "0.63.0" authors = ["Ockam Developers"] categories = ["cryptography"] edition = "2021" @@ -38,15 +38,15 @@ std = [ 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.112.0", path = "../ockam_core", default-features = false } -ockam_identity = { version = "0.116.0", path = "../ockam_identity", default-features = false } -ockam_node = { version = "0.121.0", path = "../ockam_node", default-features = false } +ockam_core = { version = "0.113.0", path = "../ockam_core", default-features = false } +ockam_identity = { version = "0.117.0", path = "../ockam_identity", default-features = false } +ockam_node = { version = "0.122.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"] } # optional: -ockam_executor = { version = "0.81.0", path = "../ockam_executor", default-features = false, optional = true } +ockam_executor = { version = "0.82.0", path = "../ockam_executor", default-features = false, optional = true } regex = { version = "1.10.5", default-features = false, optional = true } rustyline = { version = "14.0.0", optional = true } rustyline-derive = { version = "0.10.0", optional = true } diff --git a/implementations/rust/ockam/ockam_abac/README.md b/implementations/rust/ockam/ockam_abac/README.md index cad0b823b02..4cef74215f5 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.62.0" +ockam_abac = "0.63.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_api/CHANGELOG.md b/implementations/rust/ockam/ockam_api/CHANGELOG.md index bbd2bab1a73..64289b6c0de 100644 --- a/implementations/rust/ockam/ockam_api/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_api/CHANGELOG.md @@ -4,6 +4,37 @@ 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.73.0 - 2024-07-29 + +### Added + +- Add the possibility to configure the default client timeout +- Display the error when enrolling with a ticket fails +- Wait for the project to be ready before creating an authority client +- Set the default timeout on the background node client +- Don't interpret a bad request status as already enrolled +- Move rendezvous_server to `ockam rendezvous-server start` +- Implicitly resolve outlet addresses during connection +- Converted socket addresses to hostnames in command +- Remove sync operations +- Log commands by default to a file +- Hide actual values for `Token` and `OneTimeCode` in `Debug` +- Increase opentelemetry queue sizes +- Adjust timeouts +- Report more detailed errors +- Stop a previous medic before starting a new one +- Integrate space's subscription data in command +- Handle duplicates in project's egress_allow_list field +- Updated dependencies + +### Changed + +- Always log messages from the terminal if logging is true + +### Fixed + +- Make sure that only one project is the default one + ## 0.72.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_api/Cargo.toml b/implementations/rust/ockam/ockam_api/Cargo.toml index 46abcf55309..4370a5519b2 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.72.0" +version = "0.73.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -106,25 +106,25 @@ tracing-opentelemetry = "0.24.0" tracing-subscriber = { version = "0.3.18", features = ["json"] } url = "2.5.2" -ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.56.0", features = ["cbor", "serde"] } +ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.57.0", features = ["cbor", "serde"] } ockam_transport_core = { path = "../ockam_transport_core" } -ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.119.0", default-features = false, features = ["std"] } +ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.120.0", default-features = false, features = ["std"] } tonic = "0.11" [dependencies.ockam_core] -version = "0.112.0" +version = "0.113.0" path = "../ockam_core" default-features = false features = ["no_std", "alloc"] [dependencies.ockam_node] -version = "0.121.0" +version = "0.122.0" path = "../ockam_node" default-features = false features = ["no_std", "alloc"] [dependencies.ockam_vault] -version = "0.114.0" +version = "0.115.0" path = "../ockam_vault" default-features = false # FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which @@ -132,19 +132,19 @@ default-features = false features = ["std", "storage"] [dependencies.ockam_vault_aws] -version = "0.40.0" +version = "0.41.0" path = "../ockam_vault_aws" default-features = false features = ["std"] [dependencies.ockam] -version = "^0.129.0" +version = "^0.130.0" path = "../ockam" default-features = false features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"] [dependencies.ockam_abac] -version = "0.62.0" +version = "0.63.0" path = "../ockam_abac" default-features = false diff --git a/implementations/rust/ockam/ockam_api/README.md b/implementations/rust/ockam/ockam_api/README.md index a5a8fdf09b0..546022c4db0 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.72.0" +ockam_api = "0.73.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md index 4e413dc13be..aed6d555fdf 100644 --- a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md @@ -4,6 +4,16 @@ 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-07-29 + +### Added + +- Wait for the project to be ready before creating an authority client +- Implicitly resolve outlet addresses during connection +- Converted socket addresses to hostnames in command +- Remove sync operations +- Updated dependencies + ## 0.129.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_app_lib/Cargo.toml b/implementations/rust/ockam/ockam_app_lib/Cargo.toml index 3232c5dc4bf..fad2d0a198b 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.129.0" +version = "0.130.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -37,10 +37,10 @@ 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.129.0", features = ["software_vault"] } -ockam_api = { path = "../ockam_api", version = "0.72.0", default-features = false, features = ["std"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0" } -ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.56.0", features = ["cbor", "serde"] } +ockam = { path = "../ockam", version = "^0.130.0", features = ["software_vault"] } +ockam_api = { path = "../ockam_api", version = "0.73.0", default-features = false, features = ["std"] } +ockam_core = { path = "../ockam_core", version = "^0.113.0" } +ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.57.0", features = ["cbor", "serde"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sqlx-build-trust = { version = "0.7.8" } diff --git a/implementations/rust/ockam/ockam_app_lib/README.md b/implementations/rust/ockam/ockam_app_lib/README.md index 6b65a9a054b..b3f7dac6cc5 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.129.0" +ockam_app_lib = "0.130.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_command/CHANGELOG.md b/implementations/rust/ockam/ockam_command/CHANGELOG.md index f5d88935096..ab220727145 100644 --- a/implementations/rust/ockam/ockam_command/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_command/CHANGELOG.md @@ -4,6 +4,35 @@ 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-07-29 + +### Added + +- Add the possibility to configure the default client timeout +- Wait for the project to be ready before creating an authority client +- Move rendezvous_server to `ockam rendezvous-server start` +- Rename `rendezvous-server start` -> `rendezvous create` +- Implicitly resolve outlet addresses during connection +- Converted socket addresses to hostnames in command +- Remove sync operations +- Avoid ignoring error for `ockam project import` +- Log commands by default to a file +- Don't log to a file for a foreground node command +- Adjust timeouts +- Report more detailed errors +- Integrate space's subscription data in command +- Updated dependencies + +### Changed + +- Rename `enable/disable-` args to follow the convention of `color/no-color` +- Always log messages from the terminal if logging is true + +### Fixed + +- Return the last error for a retried command +- `disable-content-encryption` false by default + ## 0.129.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_command/Cargo.toml b/implementations/rust/ockam/ockam_command/Cargo.toml index 1add6f070cf..0ea67427d2e 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.129.0" +version = "0.130.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -67,13 +67,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.129.0", features = ["software_vault"] } -ockam_abac = { path = "../ockam_abac", version = "0.62.0", features = ["std"] } -ockam_api = { path = "../ockam_api", version = "0.72.0", default-features = false, features = ["std"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0" } -ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.56.0", features = ["std"] } -ockam_node = { path = "../ockam_node", version = "^0.121.0" } -ockam_vault = { path = "../ockam_vault", version = "^0.114.0", default-features = false, features = ["storage", "std"] } +ockam = { path = "../ockam", version = "^0.130.0", features = ["software_vault"] } +ockam_abac = { path = "../ockam_abac", version = "0.63.0", features = ["std"] } +ockam_api = { path = "../ockam_api", version = "0.73.0", default-features = false, features = ["std"] } +ockam_core = { path = "../ockam_core", version = "^0.113.0" } +ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.57.0", features = ["std"] } +ockam_node = { path = "../ockam_node", version = "^0.122.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.115.0", default-features = false, features = ["storage", "std"] } once_cell = "1.19" open = "5.3.0" opentelemetry = { version = "0.23.0", features = ["metrics", "trace"] } diff --git a/implementations/rust/ockam/ockam_command/README.md b/implementations/rust/ockam/ockam_command/README.md index 7fced97e272..1c4e3e91f08 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.129.0" +ockam_command = "0.130.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_core/CHANGELOG.md b/implementations/rust/ockam/ockam_core/CHANGELOG.md index 8d326395bcb..69739045f0a 100644 --- a/implementations/rust/ockam/ockam_core/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_core/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.113.0 - 2024-07-29 + +### Added + +- Updated dependencies + ## 0.112.0 - 2024-07-01 ### Added diff --git a/implementations/rust/ockam/ockam_core/Cargo.toml b/implementations/rust/ockam/ockam_core/Cargo.toml index 27cfff41c08..2d06c957e7f 100644 --- a/implementations/rust/ockam/ockam_core/Cargo.toml +++ b/implementations/rust/ockam/ockam_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_core" -version = "0.112.0" +version = "0.113.0" authors = ["Ockam Developers"] categories = [ "cryptography", diff --git a/implementations/rust/ockam/ockam_core/README.md b/implementations/rust/ockam/ockam_core/README.md index e86cb37e166..fc10d0ca1b4 100644 --- a/implementations/rust/ockam/ockam_core/README.md +++ b/implementations/rust/ockam/ockam_core/README.md @@ -39,7 +39,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_core = "0.112.0" +ockam_core = "0.113.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_executor/CHANGELOG.md b/implementations/rust/ockam/ockam_executor/CHANGELOG.md index 75b8f5bfa6a..8ba168a9deb 100644 --- a/implementations/rust/ockam/ockam_executor/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_executor/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.82.0 - 2024-07-29 + +### Added + +- Updated dependencies + ## 0.81.0 - 2024-07-01 ### Added diff --git a/implementations/rust/ockam/ockam_executor/Cargo.toml b/implementations/rust/ockam/ockam_executor/Cargo.toml index 6c8474ccfa4..431c8528f5d 100644 --- a/implementations/rust/ockam/ockam_executor/Cargo.toml +++ b/implementations/rust/ockam/ockam_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_executor" -version = "0.81.0" +version = "0.82.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -36,6 +36,6 @@ no_std = ["ockam_core/no_std"] crossbeam-queue = { version = "0.3.11", default-features = false, features = ["alloc"] } futures = { version = "0.3.30", default-features = false, features = ["async-await"] } heapless = { version = "0.8", features = ["mpmc_large"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } pin-project-lite = "0.2" tracing = { version = "0.1", default-features = false } diff --git a/implementations/rust/ockam/ockam_executor/README.md b/implementations/rust/ockam/ockam_executor/README.md index 10e3a375ba7..a671e5c630c 100644 --- a/implementations/rust/ockam/ockam_executor/README.md +++ b/implementations/rust/ockam/ockam_executor/README.md @@ -22,7 +22,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_executor = "0.81.0" +ockam_executor = "0.82.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_identity/CHANGELOG.md b/implementations/rust/ockam/ockam_identity/CHANGELOG.md index f782650c2b0..70df95debbd 100644 --- a/implementations/rust/ockam/ockam_identity/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_identity/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.117.0 - 2024-07-29 + +### Added + +- Add the possibility to configure the default client timeout +- Adjust timeouts +- Report more detailed errors +- Updated dependencies + ## 0.116.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_identity/Cargo.toml b/implementations/rust/ockam/ockam_identity/Cargo.toml index 751bd38585d..7ca83f6fe61 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.116.0" +version = "0.117.0" authors = ["Ockam Developers"] categories = ["cryptography", "authentication"] edition = "2021" @@ -78,11 +78,11 @@ chrono = { version = "0.4.38", default-features = false } delegate = "0.12.0" hex = { version = "0.4", default-features = false } minicbor = { version = "0.24.1", features = ["alloc", "derive"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.121.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0", default-features = false } -ockam_vault = { path = "../ockam_vault", version = "^0.114.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.122.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.0", default-features = false } +ockam_vault = { path = "../ockam_vault", version = "^0.115.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 ae90b631aff..125abfdf2a8 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.116.0" +ockam_identity = "0.117.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_multiaddr/CHANGELOG.md b/implementations/rust/ockam/ockam_multiaddr/CHANGELOG.md index f12f100c74e..36948f6279d 100644 --- a/implementations/rust/ockam/ockam_multiaddr/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_multiaddr/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-07-29 + +### Added + +- Updated dependencies + ## 0.56.0 - 2024-07-01 ### Added diff --git a/implementations/rust/ockam/ockam_multiaddr/Cargo.toml b/implementations/rust/ockam/ockam_multiaddr/Cargo.toml index bd52df39604..76f205f4d0f 100644 --- a/implementations/rust/ockam/ockam_multiaddr/Cargo.toml +++ b/implementations/rust/ockam/ockam_multiaddr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_multiaddr" -version = "0.56.0" +version = "0.57.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -36,7 +36,7 @@ tinyvec = { version = "1.8.0", features = ["alloc"] } unsigned-varint = "0.8.0" [dependencies.ockam_core] -version = "0.112.0" +version = "0.113.0" path = "../ockam_core" default-features = false features = ["no_std", "alloc"] diff --git a/implementations/rust/ockam/ockam_multiaddr/README.md b/implementations/rust/ockam/ockam_multiaddr/README.md index 0fb04c1f16a..f545a6a8550 100644 --- a/implementations/rust/ockam/ockam_multiaddr/README.md +++ b/implementations/rust/ockam/ockam_multiaddr/README.md @@ -23,7 +23,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_multiaddr = "0.56.0" +ockam_multiaddr = "0.57.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_node/CHANGELOG.md b/implementations/rust/ockam/ockam_node/CHANGELOG.md index dcca19c51d6..63818983049 100644 --- a/implementations/rust/ockam/ockam_node/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_node/CHANGELOG.md @@ -4,6 +4,20 @@ 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.122.0 - 2024-07-29 + +### Added + +- Converted socket addresses to hostnames in command +- Adjust timeouts +- Report more detailed errors +- Stop a previous medic before starting a new one +- Updated dependencies + +### Fixed + +- Allow the creation of a sqlite database with a relative path + ## 0.121.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_node/Cargo.toml b/implementations/rust/ockam/ockam_node/Cargo.toml index 9d969e0d909..6302b2da461 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.121.0" +version = "0.122.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -87,10 +87,10 @@ fs2 = { version = "0.4.3", optional = true } futures = { version = "0.3.30", default-features = false } heapless = { version = "0.8", features = ["mpmc_large"], optional = true } minicbor = { version = "0.24.1", features = ["derive"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } -ockam_executor = { path = "../ockam_executor", version = "^0.81.0", default-features = false, optional = true } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } +ockam_executor = { path = "../ockam_executor", version = "^0.82.0", default-features = false, optional = true } ockam_macros = { path = "../ockam_macros", version = "^0.34.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0", default-features = false, optional = true } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.0", default-features = false, optional = true } once_cell = { version = "1.19.0", optional = true, default-features = false } opentelemetry = { version = "0.23.0", features = ["logs", "metrics", "trace"], optional = true } regex = { version = "1.10.5", default-features = false, optional = true } diff --git a/implementations/rust/ockam/ockam_node/README.md b/implementations/rust/ockam/ockam_node/README.md index 047b9b0a7e3..e678b1678b4 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.121.0" +ockam_node = "0.122.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md index b5822ee3317..5462f28b454 100644 --- a/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_ble/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.84.0 - 2024-07-29 + +### Added + +- Remove sync operations +- Updated dependencies + ## 0.83.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml index 1053eeafa8b..7e73a53f58e 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.83.0" +version = "0.84.0" authors = ["Ockam Developers"] autoexamples = false categories = ["cryptography", "asynchronous", "authentication", "embedded", "network-programming"] @@ -84,9 +84,9 @@ pic32mx1xxfxxxb = ["pic32", "pic32-hal/pic32mx1xxfxxxb"] pic32mx2xxfxxxb = ["pic32", "pic32-hal/pic32mx2xxfxxxb"] [dependencies] -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.121.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.122.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.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.116.0" } -ockam_vault = { path = "../ockam_vault", version = "^0.114.0" } +ockam_identity = { path = "../ockam_identity", version = "^0.117.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.115.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 1c7f6bec737..c857f7b0cdd 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.83.0" +ockam_transport_ble = "0.84.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md index ffa8d2ce688..2dd4a430c7e 100644 --- a/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_core/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.87.0 - 2024-07-29 + +### Added + +- Implicitly resolve outlet addresses during connection +- Converted socket addresses to hostnames in command +- Remove sync operations +- Updated dependencies + ## 0.86.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_transport_core/Cargo.toml b/implementations/rust/ockam/ockam_transport_core/Cargo.toml index 73c097f26f8..7b79db93b5d 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.86.0" +version = "0.87.0" authors = ["Ockam Developers"] categories = ["network-programming", "asynchronous"] edition = "2021" @@ -32,5 +32,5 @@ alloc = ["ockam_core/alloc"] [dependencies] minicbor = "0.24" -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } serde = { version = "1.0.204", default-features = false, features = ["derive"] } diff --git a/implementations/rust/ockam/ockam_transport_core/README.md b/implementations/rust/ockam/ockam_transport_core/README.md index 15407478624..73c3e746f4b 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.86.0" +ockam_transport_core = "0.87.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md index 22067dbc6c2..25cee0a6e97 100644 --- a/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_tcp/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.120.0 - 2024-07-29 + +### Added + +- Improve transport imports +- Implicitly resolve outlet addresses during connection +- Remove sync operations +- Updated dependencies + ## 0.119.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml b/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml index 8c3c9af828d..f9534f007b6 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.119.0" +version = "0.120.0" authors = ["Ockam Developers"] autoexamples = false categories = [ @@ -33,10 +33,10 @@ ring = ["tokio-rustls/ring"] [dependencies] cfg-if = "1.0.0" minicbor = "0.24" -ockam_core = { path = "../ockam_core", version = "^0.112.0" } +ockam_core = { path = "../ockam_core", version = "^0.113.0" } ockam_macros = { path = "../ockam_macros", version = "^0.34.0" } -ockam_node = { path = "../ockam_node", version = "^0.121.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0" } +ockam_node = { path = "../ockam_node", version = "^0.122.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.0" } opentelemetry = { version = "0.23.0", features = ["logs", "metrics", "trace"], optional = true } rand = "0.8" rustls-native-certs = "0.7" diff --git a/implementations/rust/ockam/ockam_transport_tcp/README.md b/implementations/rust/ockam/ockam_transport_tcp/README.md index b5a21a3cd27..de3bc7473d4 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.119.0" +ockam_transport_tcp = "0.120.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md index f970250b426..0d093e7a076 100644 --- a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md @@ -4,6 +4,16 @@ 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.64.0 - 2024-07-29 + +### Added + +- Implement `UDP` transport segmentation +- Improve transport imports +- Add healthcheck to `Rendezvous` server +- Remove sync operations +- Updated dependencies + ## 0.63.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_transport_udp/Cargo.toml b/implementations/rust/ockam/ockam_transport_udp/Cargo.toml index bccd0c8f021..9305ec73cf3 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.63.0" +version = "0.64.0" authors = ["Ockam Developers"] autoexamples = false categories = [ @@ -31,9 +31,9 @@ alloc = [] [dependencies] cfg-if = "1.0.0" minicbor = "0.24" -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.121.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0" } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.122.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.0" } rand = "0.8" tokio = { version = "1.39.1", 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 3af73405dc1..a96ffaa052b 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.63.0" +ockam_transport_udp = "0.64.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md index caf305d4363..59ec951941d 100644 --- a/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_uds/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.49.0 - 2024-07-29 + +### Added + +- Remove sync operations +- Updated dependencies + ## 0.48.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_transport_uds/Cargo.toml b/implementations/rust/ockam/ockam_transport_uds/Cargo.toml index e4aa0f821be..8a46f8e2377 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.48.0" +version = "0.49.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -27,10 +27,10 @@ std = ["ockam_macros/std"] alloc = [] [dependencies] -ockam_core = { path = "../ockam_core", version = "^0.112.0" } +ockam_core = { path = "../ockam_core", version = "^0.113.0" } ockam_macros = { path = "../ockam_macros", version = "^0.34.0" } -ockam_node = { path = "../ockam_node", version = "^0.121.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0" } +ockam_node = { path = "../ockam_node", version = "^0.122.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.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 12d0f4c909f..fa95cfd34e4 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.48.0" +ockam_transport_uds = "0.49.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md index a2c488525e9..03537f2a561 100644 --- a/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_websocket/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.111.0 - 2024-07-29 + +### Added + +- Remove sync operations +- Updated dependencies + ## 0.110.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml b/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml index 18ac13f4470..54e975ecfdf 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.110.0" +version = "0.111.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -45,9 +45,9 @@ alloc = [ [dependencies] futures-util = { version = "0.3", default-features = false, features = ["tokio-io"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.121.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.86.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.122.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.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 c3080b3b5c9..8cbf7d17449 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.110.0" +ockam_transport_websocket = "0.111.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_vault/CHANGELOG.md b/implementations/rust/ockam/ockam_vault/CHANGELOG.md index 82998932929..d8f26906099 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.115.0 - 2024-07-29 + +### Added + +- Updated dependencies + ## 0.114.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_vault/Cargo.toml b/implementations/rust/ockam/ockam_vault/Cargo.toml index 80a7bfc25ef..a44ff17e0eb 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.114.0" +version = "0.115.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -80,9 +80,9 @@ ed25519-dalek = { version = "2.1", default-features = false, features = ["fast", hex = { version = "0.4", default-features = false } hkdf = { version = "0.12", default-features = false } minicbor = { version = "0.24.1", features = ["derive"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.121.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.122.0", default-features = false, optional = true } # ECDSA providers: p256 = { version = "0.13.2", default-features = false } rand = { version = "0.8", default-features = false } diff --git a/implementations/rust/ockam/ockam_vault/README.md b/implementations/rust/ockam/ockam_vault/README.md index 1171938dd0b..93d776462c3 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.114.0" +ockam_vault = "0.115.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md b/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md index fcfb13c0e8e..d844c147dcc 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.41.0 - 2024-07-29 + +### Added + +- Updated dependencies + ## 0.40.0 - 2024-07-03 ### Added diff --git a/implementations/rust/ockam/ockam_vault_aws/Cargo.toml b/implementations/rust/ockam/ockam_vault_aws/Cargo.toml index cdcd7a37a38..2240b9e120f 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.40.0" +version = "0.41.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -58,10 +58,10 @@ rust-crypto = ["ockam_vault/rust-crypto"] [dependencies] aws-config = { version = "1.5.4", default-features = false, features = ["rustls", "rt-tokio"] } aws-sdk-kms = { version = "1.37.0", default-features = false, features = ["rustls"] } -ockam_core = { path = "../ockam_core", version = "^0.112.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.113.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.121.0", default-features = false } -ockam_vault = { path = "../ockam_vault", version = "^0.114.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.122.0", default-features = false } +ockam_vault = { path = "../ockam_vault", version = "^0.115.0", default-features = false } p256 = { version = "0.13.2", default-features = false } sha2 = { version = "0.10", default-features = false } thiserror = { version = "1.0.63" } diff --git a/implementations/rust/ockam/ockam_vault_aws/README.md b/implementations/rust/ockam/ockam_vault_aws/README.md index 21bcb997721..49244a0efc1 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.40.0" +ockam_vault_aws = "0.41.0" ``` ## License