From be9f109ceff3bde1a118b47c025f5b2c73a82fcb Mon Sep 17 00:00:00 2001 From: Agntcy Build Bot Date: Thu, 29 Jan 2026 09:27:34 -0600 Subject: [PATCH] chore: release --- data-plane/Cargo.lock | 22 +++++++++--------- data-plane/Cargo.toml | 22 +++++++++--------- data-plane/bindings/rust/CHANGELOG.md | 24 ++++++++++++++++++++ data-plane/core/auth/CHANGELOG.md | 14 ++++++++++++ data-plane/core/auth/Cargo.toml | 2 +- data-plane/core/config/CHANGELOG.md | 13 +++++++++++ data-plane/core/config/Cargo.toml | 2 +- data-plane/core/controller/CHANGELOG.md | 20 ++++++++++++++++ data-plane/core/controller/Cargo.toml | 2 +- data-plane/core/datapath/CHANGELOG.md | 25 ++++++++++++++++++++ data-plane/core/datapath/Cargo.toml | 2 +- data-plane/core/mls/CHANGELOG.md | 10 ++++++++ data-plane/core/mls/Cargo.toml | 2 +- data-plane/core/service/CHANGELOG.md | 24 ++++++++++++++++++++ data-plane/core/service/Cargo.toml | 2 +- data-plane/core/session/CHANGELOG.md | 29 ++++++++++++++++++++++++ data-plane/core/session/Cargo.toml | 2 +- data-plane/core/signal/CHANGELOG.md | 6 +++++ data-plane/core/signal/Cargo.toml | 2 +- data-plane/core/slim/CHANGELOG.md | 17 ++++++++++++++ data-plane/core/slim/Cargo.toml | 2 +- data-plane/core/tracing/CHANGELOG.md | 10 ++++++++ data-plane/core/tracing/Cargo.toml | 2 +- data-plane/slimrpc-compiler/CHANGELOG.md | 6 +++++ data-plane/slimrpc-compiler/Cargo.toml | 2 +- 25 files changed, 231 insertions(+), 33 deletions(-) create mode 100644 data-plane/bindings/rust/CHANGELOG.md diff --git a/data-plane/Cargo.lock b/data-plane/Cargo.lock index 1ce4287bf..b122c7aef 100644 --- a/data-plane/Cargo.lock +++ b/data-plane/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agntcy-protoc-slimrpc-plugin" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "heck 0.5.0", @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "agntcy-slim" -version = "0.7.1" +version = "0.7.2" dependencies = [ "agntcy-slim-config", "agntcy-slim-service", @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "agntcy-slim-auth" -version = "0.4.1" +version = "0.5.0" dependencies = [ "agntcy-slim-config", "agntcy-slim-testing", @@ -106,7 +106,7 @@ dependencies = [ [[package]] name = "agntcy-slim-config" -version = "0.4.3" +version = "0.5.0" dependencies = [ "agntcy-slim-auth", "agntcy-slim-testing", @@ -150,7 +150,7 @@ dependencies = [ [[package]] name = "agntcy-slim-controller" -version = "0.4.3" +version = "0.4.4" dependencies = [ "agntcy-slim-auth", "agntcy-slim-config", @@ -183,7 +183,7 @@ dependencies = [ [[package]] name = "agntcy-slim-datapath" -version = "0.10.3" +version = "0.11.0" dependencies = [ "agntcy-slim-config", "agntcy-slim-tracing", @@ -215,7 +215,7 @@ dependencies = [ [[package]] name = "agntcy-slim-mls" -version = "0.1.5" +version = "0.1.6" dependencies = [ "agntcy-slim-auth", "agntcy-slim-datapath", @@ -235,7 +235,7 @@ dependencies = [ [[package]] name = "agntcy-slim-service" -version = "0.8.2" +version = "0.8.3" dependencies = [ "agntcy-slim-auth", "agntcy-slim-config", @@ -260,7 +260,7 @@ dependencies = [ [[package]] name = "agntcy-slim-session" -version = "0.1.2" +version = "0.1.3" dependencies = [ "agntcy-slim-auth", "agntcy-slim-datapath", @@ -281,7 +281,7 @@ dependencies = [ [[package]] name = "agntcy-slim-signal" -version = "0.1.3" +version = "0.1.4" dependencies = [ "tokio", "tracing", @@ -318,7 +318,7 @@ dependencies = [ [[package]] name = "agntcy-slim-tracing" -version = "0.2.7" +version = "0.3.0" dependencies = [ "agntcy-slim-config", "once_cell", diff --git a/data-plane/Cargo.toml b/data-plane/Cargo.toml index 6d1d12601..4f62c6752 100644 --- a/data-plane/Cargo.toml +++ b/data-plane/Cargo.toml @@ -34,18 +34,18 @@ resolver = "2" [workspace.dependencies] # Local dependencies -agntcy-slim = { path = "core/slim", version = "0.7.1" } -agntcy-slim-auth = { path = "core/auth", version = "0.4.1" } -agntcy-slim-bindings = { path = "bindings/rust", version = "0.7.0" } -agntcy-slim-config = { path = "core/config", version = "0.4.3" } -agntcy-slim-controller = { path = "core/controller", version = "0.4.3" } -agntcy-slim-datapath = { path = "core/datapath", version = "0.10.3" } -agntcy-slim-mls = { path = "core/mls", version = "0.1.5" } -agntcy-slim-service = { path = "core/service", version = "0.8.2", default-features = false } -agntcy-slim-session = { path = "core/session", version = "0.1.2" } -agntcy-slim-signal = { path = "core/signal", version = "0.1.3" } +agntcy-slim = { path = "core/slim", version = "0.7.2" } +agntcy-slim-auth = { path = "core/auth", version = "0.5.0" } +agntcy-slim-bindings = { path = "bindings/rust", version = "1.0.0-rc.0" } +agntcy-slim-config = { path = "core/config", version = "0.5.0" } +agntcy-slim-controller = { path = "core/controller", version = "0.4.4" } +agntcy-slim-datapath = { path = "core/datapath", version = "0.11.0" } +agntcy-slim-mls = { path = "core/mls", version = "0.1.6" } +agntcy-slim-service = { path = "core/service", version = "0.8.3", default-features = false } +agntcy-slim-session = { path = "core/session", version = "0.1.3" } +agntcy-slim-signal = { path = "core/signal", version = "0.1.4" } agntcy-slim-testing = { path = "testing" } -agntcy-slim-tracing = { path = "core/tracing", version = "0.2.7" } +agntcy-slim-tracing = { path = "core/tracing", version = "0.3.0" } anyhow = "1.0.98" diff --git a/data-plane/bindings/rust/CHANGELOG.md b/data-plane/bindings/rust/CHANGELOG.md new file mode 100644 index 000000000..db639cf24 --- /dev/null +++ b/data-plane/bindings/rust/CHANGELOG.md @@ -0,0 +1,24 @@ +# Changelog + +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). + +## [Unreleased] + +## [1.0.0-rc.0](https://github.com/agntcy/slim/releases/tag/slim-bindings-v1.0.0-rc.0) - 2026-01-29 + +### Added + +- *(bindings)* set release candidate 1.0.0-rc.0 ([#1135](https://github.com/agntcy/slim/pull/1135)) +- *(bindings)* move to new python bindings ([#1116](https://github.com/agntcy/slim/pull/1116)) +- *(session)* Add direction to slim app to control message flow ([#1121](https://github.com/agntcy/slim/pull/1121)) +- generate python bindings with uniffi ([#1046](https://github.com/agntcy/slim/pull/1046)) + +### Other + +- *(Taskfile)* move zig installation to global tools ([#1120](https://github.com/agntcy/slim/pull/1120)) +- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110)) +- *(bindings)* allow multiple global services ([#1106](https://github.com/agntcy/slim/pull/1106)) +- *(bindings)* rename BindingsAdapter into App and BindingsSessionContext into Session ([#1104](https://github.com/agntcy/slim/pull/1104)) diff --git a/data-plane/core/auth/CHANGELOG.md b/data-plane/core/auth/CHANGELOG.md index 66fef9023..5ca4a58bb 100644 --- a/data-plane/core/auth/CHANGELOG.md +++ b/data-plane/core/auth/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/agntcy/slim/compare/slim-auth-v0.4.1...slim-auth-v0.5.0) - 2026-01-29 + +### Added + +- Support different trust domains in auto route setup ([#1001](https://github.com/agntcy/slim/pull/1001)) + +### Fixed + +- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042)) + +### Other + +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.4.1](https://github.com/agntcy/slim/compare/slim-auth-v0.4.0...slim-auth-v0.4.1) - 2025-11-17 ### Added diff --git a/data-plane/core/auth/Cargo.toml b/data-plane/core/auth/Cargo.toml index 491bdc004..fab1c24f6 100644 --- a/data-plane/core/auth/Cargo.toml +++ b/data-plane/core/auth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-auth" -version = "0.4.1" +version = "0.5.0" license = { workspace = true } edition = { workspace = true } description = "Authentication utilities for the Agntcy Slim framework" diff --git a/data-plane/core/config/CHANGELOG.md b/data-plane/core/config/CHANGELOG.md index 2bd661070..77edb6568 100644 --- a/data-plane/core/config/CHANGELOG.md +++ b/data-plane/core/config/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/agntcy/slim/compare/slim-config-v0.4.3...slim-config-v0.5.0) - 2026-01-29 + +### Added + +- Support different trust domains in auto route setup ([#1001](https://github.com/agntcy/slim/pull/1001)) +- *(bindings)* expose identity configuration ([#1092](https://github.com/agntcy/slim/pull/1092)) +- *(bindings)* expose complete configuration for auth and creating clients, servers ([#1084](https://github.com/agntcy/slim/pull/1084)) +- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991)) + +### Other + +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.4.3](https://github.com/agntcy/slim/compare/slim-config-v0.4.2...slim-config-v0.4.3) - 2025-11-21 ### Fixed diff --git a/data-plane/core/config/Cargo.toml b/data-plane/core/config/Cargo.toml index 70ef84562..d63235d86 100644 --- a/data-plane/core/config/Cargo.toml +++ b/data-plane/core/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-config" -version = "0.4.3" +version = "0.5.0" edition = { workspace = true } license = { workspace = true } description = "Configuration utilities" diff --git a/data-plane/core/controller/CHANGELOG.md b/data-plane/core/controller/CHANGELOG.md index 2bf450546..db9b77e79 100644 --- a/data-plane/core/controller/CHANGELOG.md +++ b/data-plane/core/controller/CHANGELOG.md @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.4](https://github.com/agntcy/slim/compare/slim-controller-v0.4.3...slim-controller-v0.4.4) - 2026-01-29 + +### Added + +- Support different trust domains in auto route setup ([#1001](https://github.com/agntcy/slim/pull/1001)) +- *(bindings)* expose identity configuration ([#1092](https://github.com/agntcy/slim/pull/1092)) +- send group acknowledge from the session ([#1050](https://github.com/agntcy/slim/pull/1050)) +- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991)) + +### Fixed + +- *(controller)* start the controller service only if the related config is provided ([#1054](https://github.com/agntcy/slim/pull/1054)) +- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042)) + +### Other + +- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110)) +- *(lint)* use latest version of tools ([#1067](https://github.com/agntcy/slim/pull/1067)) +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.4.3](https://github.com/agntcy/slim/compare/slim-controller-v0.4.2...slim-controller-v0.4.3) - 2025-11-21 ### Fixed diff --git a/data-plane/core/controller/Cargo.toml b/data-plane/core/controller/Cargo.toml index 27a4f51ff..2791aa3b6 100644 --- a/data-plane/core/controller/Cargo.toml +++ b/data-plane/core/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-controller" -version = "0.4.3" +version = "0.4.4" 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/data-plane/core/datapath/CHANGELOG.md b/data-plane/core/datapath/CHANGELOG.md index 41d8193db..f59aae31d 100644 --- a/data-plane/core/datapath/CHANGELOG.md +++ b/data-plane/core/datapath/CHANGELOG.md @@ -7,6 +7,31 @@ 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-datapath-v0.10.3...slim-datapath-v0.11.0) - 2026-01-29 + +### Added + +- add reference count to subscription table ([#1143](https://github.com/agntcy/slim/pull/1143)) +- generate python bindings with uniffi ([#1046](https://github.com/agntcy/slim/pull/1046)) +- *(bindings)* configuration file support ([#1099](https://github.com/agntcy/slim/pull/1099)) +- *(bindings)* expose participant list to the application ([#1089](https://github.com/agntcy/slim/pull/1089)) +- *(session)* handle moderator unexpected stop ([#1024](https://github.com/agntcy/slim/pull/1024)) +- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991)) +- Update group state on unexpected application stop ([#1014](https://github.com/agntcy/slim/pull/1014)) +- detect and handle unexpected participant disconnections ([#1004](https://github.com/agntcy/slim/pull/1004)) + +### Fixed + +- match all function send only to local applications ([#1132](https://github.com/agntcy/slim/pull/1132)) +- *(session)* route dataplane errors to correct session ([#1056](https://github.com/agntcy/slim/pull/1056)) +- *(session)* correctly remove routes on session close ([#1039](https://github.com/agntcy/slim/pull/1039)) + +### Other + +- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110)) +- *(lint)* use latest version of tools ([#1067](https://github.com/agntcy/slim/pull/1067)) +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.10.3](https://github.com/agntcy/slim/compare/slim-datapath-v0.10.2...slim-datapath-v0.10.3) - 2025-11-21 ### Added diff --git a/data-plane/core/datapath/Cargo.toml b/data-plane/core/datapath/Cargo.toml index 35f8f775d..39ffe5d33 100644 --- a/data-plane/core/datapath/Cargo.toml +++ b/data-plane/core/datapath/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim-datapath" -version = "0.10.3" +version = "0.11.0" edition = { workspace = true } license = { workspace = true } description = "Core data plane functionality for SLIM" diff --git a/data-plane/core/mls/CHANGELOG.md b/data-plane/core/mls/CHANGELOG.md index e612e002e..e19d6f294 100644 --- a/data-plane/core/mls/CHANGELOG.md +++ b/data-plane/core/mls/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/agntcy/slim/compare/slim-mls-v0.1.5...slim-mls-v0.1.6) - 2026-01-29 + +### Fixed + +- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042)) + +### Other + +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.1.5](https://github.com/agntcy/slim/compare/slim-mls-v0.1.4...slim-mls-v0.1.5) - 2025-11-21 ### Other diff --git a/data-plane/core/mls/Cargo.toml b/data-plane/core/mls/Cargo.toml index 24eeef949..a618492aa 100644 --- a/data-plane/core/mls/Cargo.toml +++ b/data-plane/core/mls/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-mls" edition = { workspace = true } license = { workspace = true } -version = "0.1.5" +version = "0.1.6" description = "Messaging Layer Security for SLIM data plane." [lib] diff --git a/data-plane/core/service/CHANGELOG.md b/data-plane/core/service/CHANGELOG.md index 8ee2f4ee7..50354a057 100644 --- a/data-plane/core/service/CHANGELOG.md +++ b/data-plane/core/service/CHANGELOG.md @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.3](https://github.com/agntcy/slim/compare/slim-service-v0.8.2...slim-service-v0.8.3) - 2026-01-29 + +### Added + +- *(session)* Add direction to slim app to control message flow ([#1121](https://github.com/agntcy/slim/pull/1121)) +- generate python bindings with uniffi ([#1046](https://github.com/agntcy/slim/pull/1046)) +- *(bindings)* configuration file support ([#1099](https://github.com/agntcy/slim/pull/1099)) +- *(bindings)* expose participant list to the application ([#1089](https://github.com/agntcy/slim/pull/1089)) +- Go bindings generation using uniffi ([#979](https://github.com/agntcy/slim/pull/979)) +- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991)) + +### Fixed + +- *(session)* route dataplane errors to correct session ([#1056](https://github.com/agntcy/slim/pull/1056)) +- *(controller)* start the controller service only if the related config is provided ([#1054](https://github.com/agntcy/slim/pull/1054)) +- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042)) + +### Other + +- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110)) +- *(bindings)* allow multiple global services ([#1106](https://github.com/agntcy/slim/pull/1106)) +- feature flag for session layer ([#1102](https://github.com/agntcy/slim/pull/1102)) +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.8.2](https://github.com/agntcy/slim/compare/slim-service-v0.8.1...slim-service-v0.8.2) - 2025-11-21 ### Added diff --git a/data-plane/core/service/Cargo.toml b/data-plane/core/service/Cargo.toml index d37594e10..42fedcfed 100644 --- a/data-plane/core/service/Cargo.toml +++ b/data-plane/core/service/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-service" edition = { workspace = true } license = { workspace = true } -version = "0.8.2" +version = "0.8.3" description = "Main service and public API to interact with SLIM data plane." [lib] diff --git a/data-plane/core/session/CHANGELOG.md b/data-plane/core/session/CHANGELOG.md index c26addd47..b30945be3 100644 --- a/data-plane/core/session/CHANGELOG.md +++ b/data-plane/core/session/CHANGELOG.md @@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/agntcy/slim/compare/slim-session-v0.1.2...slim-session-v0.1.3) - 2026-01-29 + +### Added + +- add reference count to subscription table ([#1143](https://github.com/agntcy/slim/pull/1143)) +- *(session)* Add direction to slim app to control message flow ([#1121](https://github.com/agntcy/slim/pull/1121)) +- generate python bindings with uniffi ([#1046](https://github.com/agntcy/slim/pull/1046)) +- *(bindings)* expose participant list to the application ([#1089](https://github.com/agntcy/slim/pull/1089)) +- send group acknowledge from the session ([#1050](https://github.com/agntcy/slim/pull/1050)) +- *(bindings)* expose complete configuration for auth and creating clients, servers ([#1084](https://github.com/agntcy/slim/pull/1084)) +- *(session)* handle moderator unexpected stop ([#1024](https://github.com/agntcy/slim/pull/1024)) +- Update group state on unexpected application stop ([#1014](https://github.com/agntcy/slim/pull/1014)) +- detect and handle unexpected participant disconnections ([#1004](https://github.com/agntcy/slim/pull/1004)) + +### Fixed + +- add missing routes to participants ([#1131](https://github.com/agntcy/slim/pull/1131)) +- check if a participant is already in the group before invite ([#1085](https://github.com/agntcy/slim/pull/1085)) +- *(session)* send ping messages to the right destination ([#1066](https://github.com/agntcy/slim/pull/1066)) +- *(session)* route dataplane errors to correct session ([#1056](https://github.com/agntcy/slim/pull/1056)) +- *(session)* remove participants from the group list ([#1059](https://github.com/agntcy/slim/pull/1059)) +- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042)) +- *(session)* correctly remove routes on session close ([#1039](https://github.com/agntcy/slim/pull/1039)) +- *(moderator_task.rs)* typo ([#1008](https://github.com/agntcy/slim/pull/1008)) + +### Other + +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.1.2](https://github.com/agntcy/slim/compare/slim-session-v0.1.1...slim-session-v0.1.2) - 2025-11-21 ### Added diff --git a/data-plane/core/session/Cargo.toml b/data-plane/core/session/Cargo.toml index 53f053dac..0683c1757 100644 --- a/data-plane/core/session/Cargo.toml +++ b/data-plane/core/session/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-session" edition = { workspace = true } license = { workspace = true } -version = "0.1.2" +version = "0.1.3" description = "SLIM session internal implementation." [lib] diff --git a/data-plane/core/signal/CHANGELOG.md b/data-plane/core/signal/CHANGELOG.md index 271d27846..e7334a496 100644 --- a/data-plane/core/signal/CHANGELOG.md +++ b/data-plane/core/signal/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4](https://github.com/agntcy/slim/compare/slim-signal-v0.1.3...slim-signal-v0.1.4) - 2026-01-29 + +### Other + +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.1.3](https://github.com/agntcy/slim/compare/slim-signal-v0.1.2...slim-signal-v0.1.3) - 2025-07-31 ### Other diff --git a/data-plane/core/signal/Cargo.toml b/data-plane/core/signal/Cargo.toml index 98c8f0b3f..961396055 100644 --- a/data-plane/core/signal/Cargo.toml +++ b/data-plane/core/signal/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-signal" edition = { workspace = true } license = { workspace = true } -version = "0.1.3" +version = "0.1.4" description = "Small library to handle OS signals." [lib] diff --git a/data-plane/core/slim/CHANGELOG.md b/data-plane/core/slim/CHANGELOG.md index 4cac86115..20884a6e4 100644 --- a/data-plane/core/slim/CHANGELOG.md +++ b/data-plane/core/slim/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.2](https://github.com/agntcy/slim/compare/slim-v0.7.1...slim-v0.7.2) - 2026-01-29 + +### Added + +- *(bindings)* configuration file support ([#1099](https://github.com/agntcy/slim/pull/1099)) + +### Fixed + +- revert release SLIM 1.0.0-rc.0 ([#1153](https://github.com/agntcy/slim/pull/1153)) + +### Other + +- release SLIM 1.0.0-rc.0 ([#1151](https://github.com/agntcy/slim/pull/1151)) +- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110)) +- *(bindings)* allow multiple global services ([#1106](https://github.com/agntcy/slim/pull/1106)) +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.7.1](https://github.com/agntcy/slim/compare/slim-v0.7.0...slim-v0.7.1) - 2025-11-21 ### Fixed diff --git a/data-plane/core/slim/Cargo.toml b/data-plane/core/slim/Cargo.toml index 40970a672..95600d358 100644 --- a/data-plane/core/slim/Cargo.toml +++ b/data-plane/core/slim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-slim" -version = "0.7.1" +version = "0.7.2" edition = { workspace = true } license = { workspace = true } description = "The main SLIM executable." diff --git a/data-plane/core/tracing/CHANGELOG.md b/data-plane/core/tracing/CHANGELOG.md index 448af9271..c6b49b00e 100644 --- a/data-plane/core/tracing/CHANGELOG.md +++ b/data-plane/core/tracing/CHANGELOG.md @@ -7,6 +7,16 @@ 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-tracing-v0.2.7...slim-tracing-v0.3.0) - 2026-01-29 + +### Added + +- *(bindings)* configuration file support ([#1099](https://github.com/agntcy/slim/pull/1099)) + +### Other + +- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976)) + ## [0.2.7](https://github.com/agntcy/slim/compare/slim-tracing-v0.2.6...slim-tracing-v0.2.7) - 2025-11-21 ### Other diff --git a/data-plane/core/tracing/Cargo.toml b/data-plane/core/tracing/Cargo.toml index f3279144e..6f9ad28eb 100644 --- a/data-plane/core/tracing/Cargo.toml +++ b/data-plane/core/tracing/Cargo.toml @@ -2,7 +2,7 @@ name = "agntcy-slim-tracing" edition = { workspace = true } license = { workspace = true } -version = "0.2.7" +version = "0.3.0" description = "Observability for SLIM data plane: logs, traces and metrics infrastructure." [lib] diff --git a/data-plane/slimrpc-compiler/CHANGELOG.md b/data-plane/slimrpc-compiler/CHANGELOG.md index 7105e9214..57bfcadd4 100644 --- a/data-plane/slimrpc-compiler/CHANGELOG.md +++ b/data-plane/slimrpc-compiler/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/agntcy/slim/compare/protoc-slimrpc-plugin-v0.1.1...protoc-slimrpc-plugin-v0.1.2) - 2026-01-29 + +### Added + +- *(slimrpc,slima2a,slim-mcp)* Upgrade to v0.7.1 slim_bindings ([#839](https://github.com/agntcy/slim/pull/839)) + ## [0.1.1](https://github.com/agntcy/slim/compare/protoc-slimrpc-plugin-v0.1.0...protoc-slimrpc-plugin-v0.1.1) - 2025-10-17 ### Other diff --git a/data-plane/slimrpc-compiler/Cargo.toml b/data-plane/slimrpc-compiler/Cargo.toml index d17bdf6dd..848cf94e5 100644 --- a/data-plane/slimrpc-compiler/Cargo.toml +++ b/data-plane/slimrpc-compiler/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "agntcy-protoc-slimrpc-plugin" description = "A protoc plugin for generating SRPC (Slim RPC) code" -version = "0.1.1" +version = "0.1.2" license.workspace = true edition.workspace = true