From 93640fa890e86b679920bad38bb2ccb32a40bd84 Mon Sep 17 00:00:00 2001 From: Agntcy Build Bot Date: Fri, 10 Jul 2026 16:04:05 +0200 Subject: [PATCH] chore: release --- Cargo.lock | 30 ++++++++++++++--------------- Cargo.toml | 30 ++++++++++++++--------------- crates/auth/CHANGELOG.md | 6 ++++++ crates/auth/Cargo.toml | 2 +- crates/channel-manager/CHANGELOG.md | 6 ++++++ crates/config/CHANGELOG.md | 10 ++++++++++ crates/config/Cargo.toml | 2 +- crates/control-plane/CHANGELOG.md | 10 ++++++++++ crates/controller/CHANGELOG.md | 6 ++++++ crates/controller/Cargo.toml | 2 +- crates/datapath/CHANGELOG.md | 7 +++++++ crates/datapath/Cargo.toml | 2 +- crates/mls/CHANGELOG.md | 6 ++++++ crates/mls/Cargo.toml | 2 +- crates/proto/CHANGELOG.md | 12 ++++++++++++ crates/proto/Cargo.toml | 2 +- crates/service/CHANGELOG.md | 6 ++++++ crates/service/Cargo.toml | 2 +- crates/session/CHANGELOG.md | 7 +++++++ crates/session/Cargo.toml | 2 +- crates/signal/CHANGELOG.md | 6 ++++++ crates/signal/Cargo.toml | 2 +- crates/tracing/CHANGELOG.md | 6 ++++++ crates/tracing/Cargo.toml | 2 +- 24 files changed, 128 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a28ffa76..6b19e7ef3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agntcy-slim" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" dependencies = [ "agntcy-slim-config", "agntcy-slim-service", @@ -29,7 +29,7 @@ dependencies = [ [[package]] name = "agntcy-slim-auth" -version = "0.11.0" +version = "0.11.1" dependencies = [ "agntcy-slim-config", "agntcy-slim-testing", @@ -80,7 +80,7 @@ dependencies = [ [[package]] name = "agntcy-slim-channel-manager" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" dependencies = [ "agntcy-slim", "agntcy-slim-auth", @@ -106,7 +106,7 @@ dependencies = [ [[package]] name = "agntcy-slim-config" -version = "0.12.0" +version = "0.12.1" dependencies = [ "agntcy-slim-auth", "agntcy-slim-testing", @@ -163,7 +163,7 @@ dependencies = [ [[package]] name = "agntcy-slim-control-plane" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" dependencies = [ "agntcy-slim-auth", "agntcy-slim-config", @@ -208,7 +208,7 @@ dependencies = [ [[package]] name = "agntcy-slim-controller" -version = "0.10.0" +version = "0.11.0" dependencies = [ "agntcy-slim-auth", "agntcy-slim-config", @@ -240,7 +240,7 @@ dependencies = [ [[package]] name = "agntcy-slim-datapath" -version = "0.16.1" +version = "0.16.2" dependencies = [ "agntcy-slim-config", "agntcy-slim-proto", @@ -294,7 +294,7 @@ dependencies = [ [[package]] name = "agntcy-slim-mls" -version = "0.2.1" +version = "0.2.2" dependencies = [ "agntcy-slim-auth", "agntcy-slim-version", @@ -316,7 +316,7 @@ dependencies = [ [[package]] name = "agntcy-slim-proto" -version = "0.2.0" +version = "0.3.0" dependencies = [ "agntcy-slim-config", "agntcy-slim-version", @@ -334,7 +334,7 @@ dependencies = [ [[package]] name = "agntcy-slim-service" -version = "0.11.0" +version = "0.11.1" dependencies = [ "agntcy-slim-auth", "agntcy-slim-config", @@ -362,7 +362,7 @@ dependencies = [ [[package]] name = "agntcy-slim-session" -version = "0.5.0" +version = "0.5.1" dependencies = [ "agntcy-slim-auth", "agntcy-slim-datapath", @@ -396,7 +396,7 @@ dependencies = [ [[package]] name = "agntcy-slim-signal" -version = "0.1.10" +version = "0.1.11" dependencies = [ "agntcy-slim-version", "tokio", @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "agntcy-slim-tracing" -version = "0.4.2" +version = "0.4.3" dependencies = [ "agntcy-slim-config", "agntcy-slim-version", @@ -458,11 +458,11 @@ dependencies = [ [[package]] name = "agntcy-slim-version" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" [[package]] name = "agntcy-slimctl" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" dependencies = [ "agntcy-slim", "agntcy-slim-auth", diff --git a/Cargo.toml b/Cargo.toml index 86742a563..258213b47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,21 +38,21 @@ resolver = "2" [workspace.dependencies] # Local dependencies -agntcy-slim = { path = "crates/slim", version = "2.0.0-alpha.2" } -agntcy-slim-auth = { path = "crates/auth", version = "0.11.0" } -agntcy-slim-config = { path = "crates/config", version = "0.12.0" } -agntcy-slim-control-plane = { path = "crates/control-plane", version = "2.0.0-alpha.2" } -agntcy-slim-controller = { path = "crates/controller", version = "0.10.0" } -agntcy-slim-datapath = { path = "crates/datapath", version = "0.16.1" } -agntcy-slim-mls = { path = "crates/mls", version = "0.2.1" } -agntcy-slim-proto = { path = "crates/proto", version = "0.2.0" } -agntcy-slim-service = { path = "crates/service", version = "0.11.0", default-features = false } -agntcy-slim-session = { path = "crates/session", version = "0.5.0" } -agntcy-slim-signal = { path = "crates/signal", version = "0.1.10" } +agntcy-slim = { path = "crates/slim", version = "2.0.0-alpha.3" } +agntcy-slim-auth = { path = "crates/auth", version = "0.11.1" } +agntcy-slim-config = { path = "crates/config", version = "0.12.1" } +agntcy-slim-control-plane = { path = "crates/control-plane", version = "2.0.0-alpha.3" } +agntcy-slim-controller = { path = "crates/controller", version = "0.11.0" } +agntcy-slim-datapath = { path = "crates/datapath", version = "0.16.2" } +agntcy-slim-mls = { path = "crates/mls", version = "0.2.2" } +agntcy-slim-proto = { path = "crates/proto", version = "0.3.0" } +agntcy-slim-service = { path = "crates/service", version = "0.11.1", default-features = false } +agntcy-slim-session = { path = "crates/session", version = "0.5.1" } +agntcy-slim-signal = { path = "crates/signal", version = "0.1.11" } agntcy-slim-testing = { path = "crates/testing" } -agntcy-slim-tracing = { path = "crates/tracing", version = "0.4.2" } -agntcy-slim-version = { path = "crates/version", version = "2.0.0-alpha.2" } -agntcy-slimctl = { path = "crates/slimctl", version = "2.0.0-alpha.2" } +agntcy-slim-tracing = { path = "crates/tracing", version = "0.4.3" } +agntcy-slim-version = { path = "crates/version", version = "2.0.0-alpha.3" } +agntcy-slimctl = { path = "crates/slimctl", version = "2.0.0-alpha.3" } anyhow = "1.0.103" arc-swap = "1.9.1" @@ -213,7 +213,7 @@ wiremock = "0.6" x25519-dalek = { version = "2", default-features = false, features = ["static_secrets"] } [workspace.package] -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" license = "Apache-2.0" edition = "2024" repository = "https://github.com/agntcy/slim" diff --git a/crates/auth/CHANGELOG.md b/crates/auth/CHANGELOG.md index ffcd22b40..eac2cb0d3 100644 --- a/crates/auth/CHANGELOG.md +++ b/crates/auth/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.1](https://github.com/agntcy/slim/compare/slim-auth-v0.11.0...slim-auth-v0.11.1) - 2026-07-10 + +### Added + +- add websocket supports for the browser ([#1775](https://github.com/agntcy/slim/pull/1775)) + ## [0.11.0](https://github.com/agntcy/slim/compare/slim-auth-v0.10.0...slim-auth-v0.11.0) - 2026-07-01 ### Added diff --git a/crates/auth/Cargo.toml b/crates/auth/Cargo.toml index 78b664a1d..6dc1a5caf 100644 --- a/crates/auth/Cargo.toml +++ b/crates/auth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-auth" -version = "0.11.0" +version = "0.11.1" license = { workspace = true } edition = { workspace = true } description = "Authentication utilities for the Agntcy Slim framework" diff --git a/crates/channel-manager/CHANGELOG.md b/crates/channel-manager/CHANGELOG.md index b0b472cf1..9064299e9 100644 --- a/crates/channel-manager/CHANGELOG.md +++ b/crates/channel-manager/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0-alpha.3](https://github.com/agntcy/slim/compare/slim-channel-manager-v2.0.0-alpha.2...slim-channel-manager-v2.0.0-alpha.3) - 2026-07-10 + +### Other + +- update Cargo.lock dependencies + ## [2.0.0-alpha.2](https://github.com/agntcy/slim/releases/tag/slim-channel-manager-v2.0.0-alpha.2) - 2026-07-06 ### Added diff --git a/crates/config/CHANGELOG.md b/crates/config/CHANGELOG.md index 297e49ec4..e3cd96d74 100644 --- a/crates/config/CHANGELOG.md +++ b/crates/config/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.1](https://github.com/agntcy/slim/compare/slim-config-v0.12.0...slim-config-v0.12.1) - 2026-07-10 + +### Added + +- add websocket supports for the browser ([#1775](https://github.com/agntcy/slim/pull/1775)) + +### Fixed + +- separate server connection config ([#1778](https://github.com/agntcy/slim/pull/1778)) + ## [0.12.0](https://github.com/agntcy/slim/compare/slim-config-v0.11.1...slim-config-v0.12.0) - 2026-07-06 ### Added diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 22cb8224c..0dba2e87c 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-config" -version = "0.12.0" +version = "0.12.1" edition = { workspace = true } license = { workspace = true } description = "Configuration utilities" diff --git a/crates/control-plane/CHANGELOG.md b/crates/control-plane/CHANGELOG.md index 13fb525d2..c11db3284 100644 --- a/crates/control-plane/CHANGELOG.md +++ b/crates/control-plane/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0-alpha.3](https://github.com/agntcy/slim/compare/slim-control-plane-v2.0.0-alpha.2...slim-control-plane-v2.0.0-alpha.3) - 2026-07-10 + +### Added + +- group registration via slimctl ([#1795](https://github.com/agntcy/slim/pull/1795)) + +### Fixed + +- separate server connection config ([#1778](https://github.com/agntcy/slim/pull/1778)) + ## [2.0.0-alpha.2](https://github.com/agntcy/slim/releases/tag/slim-control-plane-v2.0.0-alpha.2) - 2026-07-01 ### Added diff --git a/crates/controller/CHANGELOG.md b/crates/controller/CHANGELOG.md index f7f4f9241..3646c4c26 100644 --- a/crates/controller/CHANGELOG.md +++ b/crates/controller/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0](https://github.com/agntcy/slim/compare/slim-controller-v0.10.0...slim-controller-v0.11.0) - 2026-07-10 + +### Fixed + +- separate server connection config ([#1778](https://github.com/agntcy/slim/pull/1778)) + ## [0.10.0](https://github.com/agntcy/slim/compare/slim-controller-v0.9.0...slim-controller-v0.10.0) - 2026-07-06 ### Added diff --git a/crates/controller/Cargo.toml b/crates/controller/Cargo.toml index 3b6f43eb2..8944f6b0c 100644 --- a/crates/controller/Cargo.toml +++ b/crates/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-controller" -version = "0.10.0" +version = "0.11.0" edition = { workspace = true } license = { workspace = true } description = "Controller service and control API to configure the SLIM data plane through the control plane." diff --git a/crates/datapath/CHANGELOG.md b/crates/datapath/CHANGELOG.md index 53d9ba034..23ce8f66c 100644 --- a/crates/datapath/CHANGELOG.md +++ b/crates/datapath/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.2](https://github.com/agntcy/slim/compare/slim-datapath-v0.16.1...slim-datapath-v0.16.2) - 2026-07-10 + +### Added + +- *(session)* use uuid for channel ids ([#1809](https://github.com/agntcy/slim/pull/1809)) +- add websocket supports for the browser ([#1775](https://github.com/agntcy/slim/pull/1775)) + ## [0.16.1](https://github.com/agntcy/slim/compare/slim-datapath-v0.16.0...slim-datapath-v0.16.1) - 2026-07-06 ### Other diff --git a/crates/datapath/Cargo.toml b/crates/datapath/Cargo.toml index 1c8e74bed..d42be7696 100644 --- a/crates/datapath/Cargo.toml +++ b/crates/datapath/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-datapath" -version = "0.16.1" +version = "0.16.2" edition = { workspace = true } license = { workspace = true } description = "Core data plane functionality for SLIM" diff --git a/crates/mls/CHANGELOG.md b/crates/mls/CHANGELOG.md index 8a9cf8aec..90a2fc6b4 100644 --- a/crates/mls/CHANGELOG.md +++ b/crates/mls/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/agntcy/slim/compare/slim-mls-v0.2.1...slim-mls-v0.2.2) - 2026-07-10 + +### Other + +- updated the following local packages: agntcy-slim-version, agntcy-slim-auth + ## [0.2.1](https://github.com/agntcy/slim/compare/slim-mls-v0.2.0...slim-mls-v0.2.1) - 2026-07-01 ### Added diff --git a/crates/mls/Cargo.toml b/crates/mls/Cargo.toml index 9c19dcc0a..d199a1bf1 100644 --- a/crates/mls/Cargo.toml +++ b/crates/mls/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-mls" edition = { workspace = true } license = { workspace = true } -version = "0.2.1" +version = "0.2.2" description = "Messaging Layer Security for SLIM data plane." [lib] diff --git a/crates/proto/CHANGELOG.md b/crates/proto/CHANGELOG.md index 480cd0aa2..c3f0e2a59 100644 --- a/crates/proto/CHANGELOG.md +++ b/crates/proto/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/agntcy/slim/compare/slim-proto-v0.2.0...slim-proto-v0.3.0) - 2026-07-10 + +### Added + +- *(session)* use uuid for channel ids ([#1809](https://github.com/agntcy/slim/pull/1809)) +- add websocket supports for the browser ([#1775](https://github.com/agntcy/slim/pull/1775)) +- group registration via slimctl ([#1795](https://github.com/agntcy/slim/pull/1795)) + +### Fixed + +- separate server connection config ([#1778](https://github.com/agntcy/slim/pull/1778)) + ## [0.2.0](https://github.com/agntcy/slim/compare/slim-proto-v0.1.0...slim-proto-v0.2.0) - 2026-07-06 ### Added diff --git a/crates/proto/Cargo.toml b/crates/proto/Cargo.toml index 4f3a37e5f..c37dacf50 100644 --- a/crates/proto/Cargo.toml +++ b/crates/proto/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "agntcy-slim-proto" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "Apache-2.0" description = "Consolidated protobuf/gRPC generated code for SLIM" diff --git a/crates/service/CHANGELOG.md b/crates/service/CHANGELOG.md index 72bc14d8d..63e38f3c7 100644 --- a/crates/service/CHANGELOG.md +++ b/crates/service/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.1](https://github.com/agntcy/slim/compare/slim-service-v0.11.0...slim-service-v0.11.1) - 2026-07-10 + +### Added + +- *(session)* use uuid for channel ids ([#1809](https://github.com/agntcy/slim/pull/1809)) + ## [0.11.0](https://github.com/agntcy/slim/compare/slim-service-v0.10.1...slim-service-v0.11.0) - 2026-07-06 ### Added diff --git a/crates/service/Cargo.toml b/crates/service/Cargo.toml index 651ba1a40..018c0f6bd 100644 --- a/crates/service/Cargo.toml +++ b/crates/service/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-service" edition = { workspace = true } license = { workspace = true } -version = "0.11.0" +version = "0.11.1" description = "Main service and public API to interact with SLIM data plane." [lib] diff --git a/crates/session/CHANGELOG.md b/crates/session/CHANGELOG.md index b737a8256..d8cf13bad 100644 --- a/crates/session/CHANGELOG.md +++ b/crates/session/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/agntcy/slim/compare/slim-session-v0.5.0...slim-session-v0.5.1) - 2026-07-10 + +### Added + +- *(session)* use uuid for channel ids ([#1809](https://github.com/agntcy/slim/pull/1809)) +- add websocket supports for the browser ([#1775](https://github.com/agntcy/slim/pull/1775)) + ## [0.5.0](https://github.com/agntcy/slim/compare/slim-session-v0.4.0...slim-session-v0.5.0) - 2026-07-06 ### Other diff --git a/crates/session/Cargo.toml b/crates/session/Cargo.toml index dcc4cea89..d5efd9c80 100644 --- a/crates/session/Cargo.toml +++ b/crates/session/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-session" edition = { workspace = true } license = { workspace = true } -version = "0.5.0" +version = "0.5.1" description = "SLIM session internal implementation." [lib] diff --git a/crates/signal/CHANGELOG.md b/crates/signal/CHANGELOG.md index 6d75592da..f8a1f1d71 100644 --- a/crates/signal/CHANGELOG.md +++ b/crates/signal/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/agntcy/slim/compare/slim-signal-v0.1.10...slim-signal-v0.1.11) - 2026-07-10 + +### Other + +- updated the following local packages: agntcy-slim-version + ## [0.1.10](https://github.com/agntcy/slim/compare/slim-signal-v0.1.9...slim-signal-v0.1.10) - 2026-06-17 ### Added diff --git a/crates/signal/Cargo.toml b/crates/signal/Cargo.toml index 7b83f7c6c..ba4976e88 100644 --- a/crates/signal/Cargo.toml +++ b/crates/signal/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-signal" edition = { workspace = true } license = { workspace = true } -version = "0.1.10" +version = "0.1.11" description = "Small library to handle OS signals." [lib] diff --git a/crates/tracing/CHANGELOG.md b/crates/tracing/CHANGELOG.md index 7e2ba39a0..c21c539a8 100644 --- a/crates/tracing/CHANGELOG.md +++ b/crates/tracing/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.3](https://github.com/agntcy/slim/compare/slim-tracing-v0.4.2...slim-tracing-v0.4.3) - 2026-07-10 + +### Added + +- add websocket supports for the browser ([#1775](https://github.com/agntcy/slim/pull/1775)) + ## [0.4.2](https://github.com/agntcy/slim/compare/slim-tracing-v0.4.1...slim-tracing-v0.4.2) - 2026-07-06 ### Other diff --git a/crates/tracing/Cargo.toml b/crates/tracing/Cargo.toml index 948082ef0..b226923e3 100644 --- a/crates/tracing/Cargo.toml +++ b/crates/tracing/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-tracing" edition = { workspace = true } license = { workspace = true } -version = "0.4.2" +version = "0.4.3" description = "Observability for SLIM data plane: logs, traces and metrics infrastructure." [lib]