Skip to content

Commit 8ad9988

Browse files
authored
chore: release
1 parent 64c8f24 commit 8ad9988

File tree

25 files changed

+223
-33
lines changed

25 files changed

+223
-33
lines changed

data-plane/Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

data-plane/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ resolver = "2"
3434

3535
[workspace.dependencies]
3636
# Local dependencies
37-
agntcy-slim = { path = "core/slim", version = "0.7.1" }
38-
agntcy-slim-auth = { path = "core/auth", version = "0.4.1" }
39-
agntcy-slim-bindings = { path = "bindings/rust", version = "0.7.0" }
40-
agntcy-slim-config = { path = "core/config", version = "0.4.3" }
41-
agntcy-slim-controller = { path = "core/controller", version = "0.4.3" }
42-
agntcy-slim-datapath = { path = "core/datapath", version = "0.10.3" }
43-
agntcy-slim-mls = { path = "core/mls", version = "0.1.5" }
44-
agntcy-slim-service = { path = "core/service", version = "0.8.2", default-features = false }
45-
agntcy-slim-session = { path = "core/session", version = "0.1.2" }
46-
agntcy-slim-signal = { path = "core/signal", version = "0.1.3" }
37+
agntcy-slim = { path = "core/slim", version = "0.7.2" }
38+
agntcy-slim-auth = { path = "core/auth", version = "0.4.2" }
39+
agntcy-slim-bindings = { path = "bindings/rust", version = "0.7.4" }
40+
agntcy-slim-config = { path = "core/config", version = "0.4.4" }
41+
agntcy-slim-controller = { path = "core/controller", version = "0.4.4" }
42+
agntcy-slim-datapath = { path = "core/datapath", version = "0.10.4" }
43+
agntcy-slim-mls = { path = "core/mls", version = "0.1.6" }
44+
agntcy-slim-service = { path = "core/service", version = "0.8.3", default-features = false }
45+
agntcy-slim-session = { path = "core/session", version = "0.1.3" }
46+
agntcy-slim-signal = { path = "core/signal", version = "0.1.4" }
4747
agntcy-slim-testing = { path = "testing" }
48-
agntcy-slim-tracing = { path = "core/tracing", version = "0.2.7" }
48+
agntcy-slim-tracing = { path = "core/tracing", version = "0.2.8" }
4949

5050
anyhow = "1.0.98"
5151

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.7.4](https://github.com/agntcy/slim/releases/tag/slim-bindings-v0.7.4) - 2026-01-23
11+
12+
### Added
13+
14+
- *(bindings)* move to new python bindings ([#1116](https://github.com/agntcy/slim/pull/1116))
15+
- *(session)* Add direction to slim app to control message flow ([#1121](https://github.com/agntcy/slim/pull/1121))
16+
- generate python bindings with uniffi ([#1046](https://github.com/agntcy/slim/pull/1046))
17+
18+
### Other
19+
20+
- *(Taskfile)* move zig installation to global tools ([#1120](https://github.com/agntcy/slim/pull/1120))
21+
- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110))
22+
- *(bindings)* allow multiple global services ([#1106](https://github.com/agntcy/slim/pull/1106))
23+
- *(bindings)* rename BindingsAdapter into App and BindingsSessionContext into Session ([#1104](https://github.com/agntcy/slim/pull/1104))

data-plane/core/auth/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.2](https://github.com/agntcy/slim/compare/slim-auth-v0.4.1...slim-auth-v0.4.2) - 2026-01-23
11+
12+
### Added
13+
14+
- Support different trust domains in auto route setup ([#1001](https://github.com/agntcy/slim/pull/1001))
15+
16+
### Fixed
17+
18+
- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042))
19+
20+
### Other
21+
22+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
23+
1024
## [0.4.1](https://github.com/agntcy/slim/compare/slim-auth-v0.4.0...slim-auth-v0.4.1) - 2025-11-17
1125

1226
### Added

data-plane/core/auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-slim-auth"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
license = { workspace = true }
55
edition = { workspace = true }
66
description = "Authentication utilities for the Agntcy Slim framework"

data-plane/core/config/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.4](https://github.com/agntcy/slim/compare/slim-config-v0.4.3...slim-config-v0.4.4) - 2026-01-23
11+
12+
### Added
13+
14+
- Support different trust domains in auto route setup ([#1001](https://github.com/agntcy/slim/pull/1001))
15+
- *(bindings)* expose identity configuration ([#1092](https://github.com/agntcy/slim/pull/1092))
16+
- *(bindings)* expose complete configuration for auth and creating clients, servers ([#1084](https://github.com/agntcy/slim/pull/1084))
17+
- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991))
18+
19+
### Other
20+
21+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
22+
1023
## [0.4.3](https://github.com/agntcy/slim/compare/slim-config-v0.4.2...slim-config-v0.4.3) - 2025-11-21
1124

1225
### Fixed

data-plane/core/config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-slim-config"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Configuration utilities"

data-plane/core/controller/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.4](https://github.com/agntcy/slim/compare/slim-controller-v0.4.3...slim-controller-v0.4.4) - 2026-01-23
11+
12+
### Added
13+
14+
- Support different trust domains in auto route setup ([#1001](https://github.com/agntcy/slim/pull/1001))
15+
- *(bindings)* expose identity configuration ([#1092](https://github.com/agntcy/slim/pull/1092))
16+
- send group acknowledge from the session ([#1050](https://github.com/agntcy/slim/pull/1050))
17+
- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991))
18+
19+
### Fixed
20+
21+
- *(controller)* start the controller service only if the related config is provided ([#1054](https://github.com/agntcy/slim/pull/1054))
22+
- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042))
23+
24+
### Other
25+
26+
- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110))
27+
- *(lint)* use latest version of tools ([#1067](https://github.com/agntcy/slim/pull/1067))
28+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
29+
1030
## [0.4.3](https://github.com/agntcy/slim/compare/slim-controller-v0.4.2...slim-controller-v0.4.3) - 2025-11-21
1131

1232
### Fixed

data-plane/core/controller/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-slim-controller"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Controller service and control API to configure the SLIM data plane through the control plane."

data-plane/core/datapath/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.10.4](https://github.com/agntcy/slim/compare/slim-datapath-v0.10.3...slim-datapath-v0.10.4) - 2026-01-23
11+
12+
### Added
13+
14+
- generate python bindings with uniffi ([#1046](https://github.com/agntcy/slim/pull/1046))
15+
- *(bindings)* configuration file support ([#1099](https://github.com/agntcy/slim/pull/1099))
16+
- *(bindings)* expose participant list to the application ([#1089](https://github.com/agntcy/slim/pull/1089))
17+
- *(session)* handle moderator unexpected stop ([#1024](https://github.com/agntcy/slim/pull/1024))
18+
- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991))
19+
- Update group state on unexpected application stop ([#1014](https://github.com/agntcy/slim/pull/1014))
20+
- detect and handle unexpected participant disconnections ([#1004](https://github.com/agntcy/slim/pull/1004))
21+
22+
### Fixed
23+
24+
- match all function send only to local applications ([#1132](https://github.com/agntcy/slim/pull/1132))
25+
- *(session)* route dataplane errors to correct session ([#1056](https://github.com/agntcy/slim/pull/1056))
26+
- *(session)* correctly remove routes on session close ([#1039](https://github.com/agntcy/slim/pull/1039))
27+
28+
### Other
29+
30+
- *(bindings)* do not expose tokio-specific APIs to foreign async calls ([#1110](https://github.com/agntcy/slim/pull/1110))
31+
- *(lint)* use latest version of tools ([#1067](https://github.com/agntcy/slim/pull/1067))
32+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
33+
1034
## [0.10.3](https://github.com/agntcy/slim/compare/slim-datapath-v0.10.2...slim-datapath-v0.10.3) - 2025-11-21
1135

1236
### Added

0 commit comments

Comments
 (0)