diff --git a/Cargo.lock b/Cargo.lock index 9d1b19eb0e9..2ace92af340 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4669,7 +4669,7 @@ dependencies = [ [[package]] name = "ockam" -version = "0.145.0" +version = "0.146.0" dependencies = [ "hex", "ockam_abac", @@ -4691,7 +4691,7 @@ dependencies = [ [[package]] name = "ockam_abac" -version = "0.76.0" +version = "0.77.0" dependencies = [ "cfg-if", "either", @@ -4722,7 +4722,7 @@ dependencies = [ [[package]] name = "ockam_api" -version = "0.88.0" +version = "0.89.0" dependencies = [ "base64-url", "bytes 1.9.0", @@ -4819,7 +4819,7 @@ dependencies = [ [[package]] name = "ockam_app_lib" -version = "0.145.0" +version = "0.146.0" dependencies = [ "cbindgen", "duct", @@ -4841,7 +4841,7 @@ dependencies = [ [[package]] name = "ockam_command" -version = "0.145.0" +version = "0.146.0" dependencies = [ "arboard", "assert_cmd", @@ -4902,7 +4902,7 @@ dependencies = [ [[package]] name = "ockam_core" -version = "0.122.0" +version = "0.123.0" dependencies = [ "async-trait", "backtrace", @@ -4948,7 +4948,7 @@ dependencies = [ [[package]] name = "ockam_executor" -version = "0.91.0" +version = "0.92.0" dependencies = [ "crossbeam-queue", "futures 0.3.31", @@ -4960,7 +4960,7 @@ dependencies = [ [[package]] name = "ockam_identity" -version = "0.130.0" +version = "0.131.0" dependencies = [ "async-trait", "cfg-if", @@ -5004,7 +5004,7 @@ dependencies = [ [[package]] name = "ockam_multiaddr" -version = "0.67.0" +version = "0.68.0" dependencies = [ "bincode", "miette", @@ -5023,7 +5023,7 @@ dependencies = [ [[package]] name = "ockam_node" -version = "0.135.0" +version = "0.136.0" dependencies = [ "cfg-if", "fs2", @@ -5073,7 +5073,7 @@ dependencies = [ [[package]] name = "ockam_transport_ble" -version = "0.97.0" +version = "0.98.0" dependencies = [ "atsame54_xpro", "bluenrg", @@ -5101,7 +5101,7 @@ dependencies = [ [[package]] name = "ockam_transport_core" -version = "0.99.0" +version = "0.100.0" dependencies = [ "minicbor", "ockam_core", @@ -5111,7 +5111,7 @@ dependencies = [ [[package]] name = "ockam_transport_tcp" -version = "0.133.0" +version = "0.134.0" dependencies = [ "async-trait", "aya", @@ -5143,7 +5143,7 @@ dependencies = [ [[package]] name = "ockam_transport_udp" -version = "0.77.0" +version = "0.78.0" dependencies = [ "cfg-if", "minicbor", @@ -5158,7 +5158,7 @@ dependencies = [ [[package]] name = "ockam_transport_uds" -version = "0.62.0" +version = "0.63.0" dependencies = [ "ockam_core", "ockam_macros", @@ -5172,7 +5172,7 @@ dependencies = [ [[package]] name = "ockam_transport_websocket" -version = "0.124.0" +version = "0.125.0" dependencies = [ "futures-util", "ockam_core", @@ -5187,7 +5187,7 @@ dependencies = [ [[package]] name = "ockam_vault" -version = "0.128.0" +version = "0.129.0" dependencies = [ "aes-gcm", "arrayref", @@ -5219,7 +5219,7 @@ dependencies = [ [[package]] name = "ockam_vault_aws" -version = "0.54.0" +version = "0.55.0" dependencies = [ "aws-config", "aws-sdk-kms", diff --git a/implementations/rust/ockam/ockam/CHANGELOG.md b/implementations/rust/ockam/ockam/CHANGELOG.md index dee3ab88fed..5bb3816a14a 100644 --- a/implementations/rust/ockam/ockam/CHANGELOG.md +++ b/implementations/rust/ockam/ockam/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.146.0 - 2025-01-09 + +### Added + +- Improvements to portals commands arguments +- Updated dependencies + ## 0.145.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam/Cargo.toml b/implementations/rust/ockam/ockam/Cargo.toml index 7b17140ad8d..537f799f860 100644 --- a/implementations/rust/ockam/ockam/Cargo.toml +++ b/implementations/rust/ockam/ockam/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam" -version = "0.145.0" +version = "0.146.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.76.0", default-features = false, optional = true } -ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } -ockam_identity = { path = "../ockam_identity", version = "^0.130.0", default-features = false } +ockam_abac = { path = "../ockam_abac", version = "^0.77.0", default-features = false, optional = true } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } +ockam_identity = { path = "../ockam_identity", version = "^0.131.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.36.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.135.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0", default-features = false } -ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.133.0", default-features = false, optional = true } -ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.77.0", default-features = false, optional = true } -ockam_vault = { path = "../ockam_vault", version = "^0.128.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.136.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.0", default-features = false } +ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.134.0", default-features = false, optional = true } +ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.78.0", default-features = false, optional = true } +ockam_vault = { path = "../ockam_vault", version = "^0.129.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.128.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.129.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 eac56874698..a72dde0fb15 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.145.0" +ockam = "0.146.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_abac/CHANGELOG.md b/implementations/rust/ockam/ockam_abac/CHANGELOG.md index f531223e7a1..80062daa06c 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.77.0 - 2025-01-09 + +### Added + +- Updated dependencies + ## 0.76.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_abac/Cargo.toml b/implementations/rust/ockam/ockam_abac/Cargo.toml index 9ea2c1193f3..3fc46e846c1 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.76.0" +version = "0.77.0" authors = ["Ockam Developers"] categories = ["cryptography"] edition = "2021" @@ -39,15 +39,15 @@ std = [ cfg-if = "1.0.0" either = { version = "1.13.0", default-features = false } minicbor = { version = "0.25.1", default-features = false, features = ["derive"] } -ockam_core = { version = "0.122.0", path = "../ockam_core", default-features = false } -ockam_identity = { version = "0.130.0", path = "../ockam_identity", default-features = false } -ockam_node = { version = "0.135.0", path = "../ockam_node", default-features = false } +ockam_core = { version = "0.123.0", path = "../ockam_core", default-features = false } +ockam_identity = { version = "0.131.0", path = "../ockam_identity", default-features = false } +ockam_node = { version = "0.136.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.91.0", path = "../ockam_executor", default-features = false, optional = true } +ockam_executor = { version = "0.92.0", path = "../ockam_executor", default-features = false, optional = true } regex = { version = "1.10.6", 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 6c7a8c1e6b8..0a741c434a1 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.76.0" +ockam_abac = "0.77.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_api/CHANGELOG.md b/implementations/rust/ockam/ockam_api/CHANGELOG.md index 5c043d5136f..c3c7b3950be 100644 --- a/implementations/rust/ockam/ockam_api/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_api/CHANGELOG.md @@ -4,6 +4,24 @@ 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.89.0 - 2025-01-09 + +### Added + +- Introduce env variables to adjust transport performance +- Simplify `node create` execution +- Improve logs for relay creation +- Improve logs for tcp portals creation +- Add a custom log format to change the fields order +- Session replacer sends notifications on session lost/replaced +- Improvements to portals commands arguments +- Updated dependencies + +### Changed + +- Extract `OCKAM_SQLITE_IN_MEMORY` env var usage up to the cli state initialization +- Rename telemetry env vars + ## 0.88.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_api/Cargo.toml b/implementations/rust/ockam/ockam_api/Cargo.toml index f144dd7bfec..33de0bc99aa 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.88.0" +version = "0.89.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -116,25 +116,25 @@ tracing-opentelemetry = "0.27.0" tracing-subscriber = { version = "0.3", features = ["json"] } url = "2.5.2" -ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.67.0", features = ["cbor", "serde"] } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0" } -ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.133.0", default-features = false, features = ["std"] } +ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.68.0", features = ["cbor", "serde"] } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.0" } +ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.134.0", default-features = false, features = ["std"] } tonic = "0.12" [dependencies.ockam_core] -version = "0.122.0" +version = "0.123.0" path = "../ockam_core" default-features = false features = ["no_std", "alloc"] [dependencies.ockam_node] -version = "0.135.0" +version = "0.136.0" path = "../ockam_node" default-features = false features = ["no_std", "alloc"] [dependencies.ockam_vault] -version = "0.128.0" +version = "0.129.0" path = "../ockam_vault" default-features = false # FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which @@ -142,19 +142,19 @@ default-features = false features = ["std", "storage"] [dependencies.ockam_vault_aws] -version = "0.54.0" +version = "0.55.0" path = "../ockam_vault_aws" default-features = false features = ["std"] [dependencies.ockam] -version = "^0.145.0" +version = "^0.146.0" path = "../ockam" default-features = false features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"] [dependencies.ockam_abac] -version = "0.76.0" +version = "0.77.0" path = "../ockam_abac" default-features = false @@ -166,8 +166,8 @@ indexmap = "2.6.0" mockall = "0.13" multimap = "0.10.0" ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.36.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0" } -ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.133.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.0" } +ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.134.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 9af1f5e1001..c48e0aa98c9 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.88.0" +ockam_api = "0.89.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md index 01473a1971f..04c709ab76c 100644 --- a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md @@ -4,6 +4,18 @@ 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.146.0 - 2025-01-09 + +### Added + +- Simplify `node create` execution +- Improvements to portals commands arguments +- Updated dependencies + +### Changed + +- Extract `OCKAM_SQLITE_IN_MEMORY` env var usage up to the cli state initialization + ## 0.145.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_app_lib/Cargo.toml b/implementations/rust/ockam/ockam_app_lib/Cargo.toml index b3de1f206b6..e182696f814 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.145.0" +version = "0.146.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -37,11 +37,11 @@ rust-crypto = ["ockam_api/rust-crypto"] duct = "0.13.7" miette = { version = "7.2.0", features = ["fancy-no-backtrace"] } minicbor = { version = "0.25.1", default-features = false, features = ["alloc", "derive"] } -ockam = { path = "../ockam", version = "^0.145.0", features = ["software_vault"] } -ockam_api = { path = "../ockam_api", version = "0.88.0", default-features = false, features = ["std"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0" } -ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.67.0", features = ["cbor", "serde"] } -ockam_node = { path = "../ockam_node", version = "^0.135.0" } +ockam = { path = "../ockam", version = "^0.146.0", features = ["software_vault"] } +ockam_api = { path = "../ockam_api", version = "0.89.0", default-features = false, features = ["std"] } +ockam_core = { path = "../ockam_core", version = "^0.123.0" } +ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.68.0", features = ["cbor", "serde"] } +ockam_node = { path = "../ockam_node", version = "^0.136.0" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sqlx = { version = "0.8.3", default-features = false } @@ -50,7 +50,7 @@ tokio = { version = "1.41.0", features = ["full"] } tracing = { version = "0.1", default-features = false } [dev-dependencies] -ockam_api = { path = "../ockam_api", version = "0.88.0", default-features = false, features = ["test-utils"] } +ockam_api = { path = "../ockam_api", version = "0.89.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 098c6b6cc12..33ae9a0dd3f 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.145.0" +ockam_app_lib = "0.146.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_command/CHANGELOG.md b/implementations/rust/ockam/ockam_command/CHANGELOG.md index 165c59a46de..75c95a7c654 100644 --- a/implementations/rust/ockam/ockam_command/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_command/CHANGELOG.md @@ -4,6 +4,33 @@ 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.146.0 - 2025-01-09 + +### Added + +- Simplify `node create` execution +- To reduce memory fragmentation use mimalloc in command and stress-test +- Sort credentials output alphabetically +- Improve logs for relay creation +- Improve stdout output for `node create` +- Improve logs for tcp portals creation +- Add a custom log format to change the fields order +- Session replacer sends notifications on session lost/replaced +- Add "unsafe" tag to commands that are considered unsafe +- Improvements to portals commands arguments +- Updated dependencies + +### Changed + +- Extract `OCKAM_SQLITE_IN_MEMORY` env var usage up to the cli state initialization +- Update cli documentation for the `status` and `reset` commands + +### Fixed + +- `project enroll` command won't issue a credential if run in-memory +- Newlines between commands run in a configuration +- Fix bats test on kafka-inlet args parsing + ## 0.145.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_command/Cargo.toml b/implementations/rust/ockam/ockam_command/Cargo.toml index 84b75c622fb..62fbb57ea2f 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.145.0" +version = "0.146.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -66,13 +66,13 @@ miette = { version = "7.2.0", features = ["fancy-no-backtrace"] } mimalloc = { version = "0.1", features = ["secure"] } minicbor = { version = "0.25.1", default-features = false, features = ["alloc", "derive"] } nix = { version = "0.29", features = ["signal"] } -ockam = { path = "../ockam", version = "^0.145.0", features = ["software_vault"] } -ockam_abac = { path = "../ockam_abac", version = "0.76.0", features = ["std"] } -ockam_api = { path = "../ockam_api", version = "0.88.0", default-features = false, features = ["std"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0" } -ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.67.0", features = ["std"] } -ockam_node = { path = "../ockam_node", version = "^0.135.0" } -ockam_vault = { path = "../ockam_vault", version = "^0.128.0", default-features = false, features = ["storage", "std"] } +ockam = { path = "../ockam", version = "^0.146.0", features = ["software_vault"] } +ockam_abac = { path = "../ockam_abac", version = "0.77.0", features = ["std"] } +ockam_api = { path = "../ockam_api", version = "0.89.0", default-features = false, features = ["std"] } +ockam_core = { path = "../ockam_core", version = "^0.123.0" } +ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.68.0", features = ["std"] } +ockam_node = { path = "../ockam_node", version = "^0.136.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.129.0", default-features = false, features = ["storage", "std"] } once_cell = "1.19" open = "5.3.0" opentelemetry = { version = "0.26.0", features = ["metrics", "trace"] } @@ -101,7 +101,7 @@ which = "6.0.2" [dev-dependencies] assert_cmd = "2" mockito = "1.5.0" -ockam_api = { path = "../ockam_api", version = "0.88.0", default-features = false, features = ["test-utils"] } +ockam_api = { path = "../ockam_api", version = "0.89.0", default-features = false, features = ["test-utils"] } ockam_macros = { path = "../ockam_macros", version = "^0.36.0" } proptest = "1.5.0" serial_test = "3.0.0" diff --git a/implementations/rust/ockam/ockam_command/README.md b/implementations/rust/ockam/ockam_command/README.md index 444a875660f..043b85054ab 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.145.0" +ockam_command = "0.146.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_core/CHANGELOG.md b/implementations/rust/ockam/ockam_core/CHANGELOG.md index 4705b4034af..da05082902d 100644 --- a/implementations/rust/ockam/ockam_core/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_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.123.0 - 2025-01-09 + +### Added + +- Introduce env variables to adjust transport performance +- Updated dependencies + ## 0.122.0 - 2024-12-04 ### Added diff --git a/implementations/rust/ockam/ockam_core/Cargo.toml b/implementations/rust/ockam/ockam_core/Cargo.toml index 17d11801368..45b41fcd234 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.122.0" +version = "0.123.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 be3d5d4b276..56ce396029b 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.122.0" +ockam_core = "0.123.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_executor/CHANGELOG.md b/implementations/rust/ockam/ockam_executor/CHANGELOG.md index c5095961e42..a2bef4d0534 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.92.0 - 2025-01-09 + +### Added + +- Updated dependencies + ## 0.91.0 - 2024-12-04 ### Added diff --git a/implementations/rust/ockam/ockam_executor/Cargo.toml b/implementations/rust/ockam/ockam_executor/Cargo.toml index 6bf1135a36c..5567cdeedf1 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.91.0" +version = "0.92.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.122.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.123.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 783087ded06..0ddca0a007f 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.91.0" +ockam_executor = "0.92.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_identity/CHANGELOG.md b/implementations/rust/ockam/ockam_identity/CHANGELOG.md index a88488a55eb..d968f5617b1 100644 --- a/implementations/rust/ockam/ockam_identity/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_identity/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.131.0 - 2025-01-09 + +### Added + +- Sort credentials output alphabetically +- Improve logs for tcp portals creation +- Updated dependencies + ## 0.130.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_identity/Cargo.toml b/implementations/rust/ockam/ockam_identity/Cargo.toml index d057ba22812..15d3b5c8d8e 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.130.0" +version = "0.131.0" authors = ["Ockam Developers"] categories = ["cryptography", "authentication"] edition = "2021" @@ -79,11 +79,11 @@ chrono = { version = "0.4.38", default-features = false } delegate = "0.13.0" hex = { version = "0.4", default-features = false } minicbor = { version = "0.25.1", default-features = false, features = ["derive"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.36.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.135.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0", default-features = false } -ockam_vault = { path = "../ockam_vault", version = "^0.128.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.136.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.0", default-features = false } +ockam_vault = { path = "../ockam_vault", version = "^0.129.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 2f3a687b599..06492581508 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.130.0" +ockam_identity = "0.131.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_multiaddr/CHANGELOG.md b/implementations/rust/ockam/ockam_multiaddr/CHANGELOG.md index b950d8be318..d4f998fad5c 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.68.0 - 2025-01-09 + +### Added + +- Updated dependencies + ## 0.67.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_multiaddr/Cargo.toml b/implementations/rust/ockam/ockam_multiaddr/Cargo.toml index 0be07ac5fa7..8fe6f682d21 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.67.0" +version = "0.68.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -37,7 +37,7 @@ tinyvec = { version = "1.8.0", features = ["alloc"] } unsigned-varint = "0.8.0" [dependencies.ockam_core] -version = "0.122.0" +version = "0.123.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 c34e231e61b..6841284ae62 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.67.0" +ockam_multiaddr = "0.68.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_node/CHANGELOG.md b/implementations/rust/ockam/ockam_node/CHANGELOG.md index 4526b5f2727..31ce3e5c977 100644 --- a/implementations/rust/ockam/ockam_node/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_node/CHANGELOG.md @@ -4,6 +4,21 @@ 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.136.0 - 2025-01-09 + +### Added + +- Simplify `node create` execution +- Improve logs for tcp portals creation +- Session replacer sends notifications on session lost/replaced +- Simplify the retrieval of the postgres connection url +- Improvements to portals commands arguments +- Updated dependencies + +### Changed + +- Extract `OCKAM_SQLITE_IN_MEMORY` env var usage up to the cli state initialization + ## 0.135.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_node/Cargo.toml b/implementations/rust/ockam/ockam_node/Cargo.toml index 8c749a89b1b..e922edebf22 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.135.0" +version = "0.136.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -92,10 +92,10 @@ futures = { version = "0.3.30", default-features = false } heapless = { version = "0.8", features = ["mpmc_large"], optional = true } minicbor = { version = "0.25.1", default-features = false, features = ["derive"] } nix = { version = "0.29", features = ["signal"], optional = true } -ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } -ockam_executor = { path = "../ockam_executor", version = "^0.91.0", default-features = false, optional = true } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } +ockam_executor = { path = "../ockam_executor", version = "^0.92.0", default-features = false, optional = true } ockam_macros = { path = "../ockam_macros", version = "^0.36.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0", default-features = false, optional = true } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.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 f8e325906d3..80e70e80ff4 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.135.0" +ockam_node = "0.136.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 ad40f1eac34..6db87616941 100644 --- a/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml +++ b/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml @@ -37,10 +37,10 @@ rust-crypto = ["ockam_vault/rust-crypto"] hex = { version = "0.4", default-features = false } lazy_static = "1.5.0" minicbor = { version = "0.25.1", default-features = false, features = ["std", "alloc", "derive"] } -ockam_core = { path = "../ockam_core", default-features = false, features = ["std"], version = "^0.122.0" } -ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"], version = "^0.130.0" } -ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"], version = "^0.128.0" } -ockam_vault_aws = { path = "../ockam_vault_aws", version = "^0.54.0" } +ockam_core = { path = "../ockam_core", default-features = false, features = ["std"], version = "^0.123.0" } +ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"], version = "^0.131.0" } +ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"], version = "^0.129.0" } +ockam_vault_aws = { path = "../ockam_vault_aws", version = "^0.55.0" } # Enable credentials-sso feature in ockam_vault_aws for use on sso environments (like dev machines) rustler = "0.35.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 bf88abd1455..890290ec21c 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.98.0 - 2025-01-09 + +### Added + +- Updated dependencies + ## 0.97.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml index 2ab479349e7..7fdc3216b62 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.97.0" +version = "0.98.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.122.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.135.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.136.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.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.130.0" } -ockam_vault = { path = "../ockam_vault", version = "^0.128.0" } +ockam_identity = { path = "../ockam_identity", version = "^0.131.0" } +ockam_vault = { path = "../ockam_vault", version = "^0.129.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 2d20e148a5b..857a3e74517 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.97.0" +ockam_transport_ble = "0.98.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_core/CHANGELOG.md index 331b2c4ad1f..248566e33b5 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.100.0 - 2025-01-09 + +### Added + +- Improvements to portals commands arguments +- Updated dependencies + ## 0.99.0 - 2024-12-04 ### Added diff --git a/implementations/rust/ockam/ockam_transport_core/Cargo.toml b/implementations/rust/ockam/ockam_transport_core/Cargo.toml index 30192291a7c..195900f9699 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.99.0" +version = "0.100.0" authors = ["Ockam Developers"] categories = ["network-programming", "asynchronous"] edition = "2021" @@ -32,6 +32,6 @@ alloc = ["ockam_core/alloc", "minicbor/alloc"] [dependencies] minicbor = { version = "0.25.1", default-features = false, features = ["derive"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } serde = { version = "1.0.204", default-features = false, features = ["derive"] } url = { version = "2.2", optional = true } diff --git a/implementations/rust/ockam/ockam_transport_core/README.md b/implementations/rust/ockam/ockam_transport_core/README.md index 15d384c47c8..657a2010bc8 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.99.0" +ockam_transport_core = "0.100.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md index d162750336e..9cf804747fb 100644 --- a/implementations/rust/ockam/ockam_transport_tcp/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_tcp/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.134.0 - 2025-01-09 + +### Added + +- Setting `no_delay` in every tcp connection +- Introduce env variables to adjust transport performance +- Improve logs for tcp portals creation +- Improvements to portals commands arguments +- Updated dependencies + ## 0.133.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml b/implementations/rust/ockam/ockam_transport_tcp/Cargo.toml index cbb767e8f08..3d44c2e3e3a 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.133.0" +version = "0.134.0" authors = ["Ockam Developers"] autoexamples = false categories = [ @@ -39,11 +39,11 @@ async-trait = "0.1.82" cfg-if = "1.0.0" log = "0.4.21" minicbor = { version = "0.25.1", default-features = false, features = ["derive"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0" } +ockam_core = { path = "../ockam_core", version = "^0.123.0" } ockam_ebpf = { version = "0.6.0", optional = true } ockam_macros = { path = "../ockam_macros", version = "^0.36.0" } -ockam_node = { path = "../ockam_node", version = "^0.135.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0" } +ockam_node = { path = "../ockam_node", version = "^0.136.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.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 cbd3ad64c06..fa600c3f5d3 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.133.0" +ockam_transport_tcp = "0.134.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md index 8978473c348..1ce29e15da2 100644 --- a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_udp/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.78.0 - 2025-01-09 + +### Added + +- Introduce env variables to adjust transport performance +- Improvements to portals commands arguments +- Updated dependencies + ## 0.77.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_transport_udp/Cargo.toml b/implementations/rust/ockam/ockam_transport_udp/Cargo.toml index 6016a782e24..e1f14de27cf 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.77.0" +version = "0.78.0" authors = ["Ockam Developers"] autoexamples = false categories = [ @@ -31,9 +31,9 @@ alloc = ["minicbor/alloc"] [dependencies] cfg-if = "1.0.0" minicbor = { version = "0.25.1", default-features = false, features = ["derive"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.135.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0" } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.136.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.0" } rand = "0.8" tokio = { version = "1.41.0", 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 7241f82704e..658477ed947 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.77.0" +ockam_transport_udp = "0.78.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_uds/CHANGELOG.md index 390bfd699ae..ae1d65d86c8 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.63.0 - 2025-01-09 + +### Added + +- Improve logs for tcp portals creation +- Updated dependencies + ## 0.62.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_transport_uds/Cargo.toml b/implementations/rust/ockam/ockam_transport_uds/Cargo.toml index c531b0da18b..e16597f4964 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.62.0" +version = "0.63.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -27,10 +27,10 @@ std = ["ockam_macros/std"] alloc = [] [dependencies] -ockam_core = { path = "../ockam_core", version = "^0.122.0" } +ockam_core = { path = "../ockam_core", version = "^0.123.0" } ockam_macros = { path = "../ockam_macros", version = "^0.36.0" } -ockam_node = { path = "../ockam_node", version = "^0.135.0" } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0" } +ockam_node = { path = "../ockam_node", version = "^0.136.0" } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.0" } serde = { version = "1.0", default-features = false, features = ["derive"] } socket2 = "0.5.6" tokio = { version = "1.41", 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 335086af898..2fabfbfe40c 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.62.0" +ockam_transport_uds = "0.63.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_websocket/CHANGELOG.md index e2aeb13b893..dadebdc7942 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.125.0 - 2025-01-09 + +### Added + +- Improve logs for tcp portals creation +- Updated dependencies + ## 0.124.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml b/implementations/rust/ockam/ockam_transport_websocket/Cargo.toml index 7d3f55c383c..ef48428f22c 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.124.0" +version = "0.125.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.122.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.135.0", default-features = false } -ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.136.0", default-features = false } +ockam_transport_core = { path = "../ockam_transport_core", version = "^0.100.0", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } tokio = { version = "1.41", default-features = false, optional = true, features = ["rt-multi-thread", "sync", "net", "macros", "time", "io-std"] } tokio-tungstenite = { version = "0.24.0", 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 c16538c53f0..b33de6538b9 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.124.0" +ockam_transport_websocket = "0.125.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_vault/CHANGELOG.md b/implementations/rust/ockam/ockam_vault/CHANGELOG.md index faca633d71d..3eabda3ed9a 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.129.0 - 2025-01-09 + +### Added + +- Updated dependencies + ## 0.128.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_vault/Cargo.toml b/implementations/rust/ockam/ockam_vault/Cargo.toml index 4dccd41094c..63bb6a7aefd 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.128.0" +version = "0.129.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.25.1", default-features = false, features = ["derive"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.36.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.135.0", default-features = false, optional = true } +ockam_node = { path = "../ockam_node", version = "^0.136.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 713aa253384..88e2914daf4 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.128.0" +ockam_vault = "0.129.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md b/implementations/rust/ockam/ockam_vault_aws/CHANGELOG.md index da5ac56ee34..935d17a9e4a 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.55.0 - 2025-01-09 + +### Added + +- Updated dependencies + ## 0.54.0 - 2024-12-12 ### Added diff --git a/implementations/rust/ockam/ockam_vault_aws/Cargo.toml b/implementations/rust/ockam/ockam_vault_aws/Cargo.toml index 30384ebea33..6dcd7d355e6 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.54.0" +version = "0.55.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -58,10 +58,10 @@ rust-crypto = ["ockam_vault/rust-crypto"] [dependencies] aws-config = { version = "1.5.8", default-features = false, features = ["rustls", "rt-tokio"] } aws-sdk-kms = { version = "1.47.0", default-features = false, features = ["rustls"] } -ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } +ockam_core = { path = "../ockam_core", version = "^0.123.0", default-features = false } ockam_macros = { path = "../ockam_macros", version = "^0.36.0", default-features = false } -ockam_node = { path = "../ockam_node", version = "^0.135.0", default-features = false } -ockam_vault = { path = "../ockam_vault", version = "^0.128.0", default-features = false } +ockam_node = { path = "../ockam_node", version = "^0.136.0", default-features = false } +ockam_vault = { path = "../ockam_vault", version = "^0.129.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 d903da4a1a5..f4bbc0fb367 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.54.0" +ockam_vault_aws = "0.55.0" ``` ## License