Skip to content

Commit eb71fc6

Browse files
authored
chore: release
1 parent 0fb9042 commit eb71fc6

File tree

25 files changed

+180
-32
lines changed

25 files changed

+180
-32
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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ resolver = "2"
3737

3838
[workspace.dependencies]
3939
# Local dependencies
40-
agntcy-slim = { path = "core/slim", version = "0.7.1" }
41-
agntcy-slim-auth = { path = "core/auth", version = "0.4.1" }
40+
agntcy-slim = { path = "core/slim", version = "0.7.2" }
41+
agntcy-slim-auth = { path = "core/auth", version = "0.5.0" }
4242
agntcy-slim-bindings = { path = "bindings/adapter", version = "0.7.0" }
43-
agntcy-slim-config = { path = "core/config", version = "0.4.3" }
44-
agntcy-slim-controller = { path = "core/controller", version = "0.4.3" }
45-
agntcy-slim-datapath = { path = "core/datapath", version = "0.10.3" }
46-
agntcy-slim-mls = { path = "core/mls", version = "0.1.5" }
47-
agntcy-slim-service = { path = "core/service", version = "0.8.2" }
48-
agntcy-slim-session = { path = "core/session", version = "0.1.2" }
49-
agntcy-slim-signal = { path = "core/signal", version = "0.1.3" }
43+
agntcy-slim-config = { path = "core/config", version = "0.5.0" }
44+
agntcy-slim-controller = { path = "core/controller", version = "0.5.0" }
45+
agntcy-slim-datapath = { path = "core/datapath", version = "0.11.0" }
46+
agntcy-slim-mls = { path = "core/mls", version = "0.1.6" }
47+
agntcy-slim-service = { path = "core/service", version = "0.8.3" }
48+
agntcy-slim-session = { path = "core/session", version = "0.1.3" }
49+
agntcy-slim-signal = { path = "core/signal", version = "0.1.4" }
5050
agntcy-slim-testing = { path = "testing" }
51-
agntcy-slim-tracing = { path = "core/tracing", version = "0.2.7" }
51+
agntcy-slim-tracing = { path = "core/tracing", version = "0.3.0" }
5252

5353
anyhow = "1.0.98"
5454

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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.0](https://github.com/agntcy/slim/releases/tag/slim-bindings-v0.7.0) - 2025-12-19
11+
12+
### Added
13+
14+
- Golang bindings improvements vol.2 ([#1040](https://github.com/agntcy/slim/pull/1040))
15+
- Golang binding improvements ([#1032](https://github.com/agntcy/slim/pull/1032))
16+
- Go bindings generation using uniffi ([#979](https://github.com/agntcy/slim/pull/979))
17+
18+
### Fixed
19+
20+
- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042))
21+
22+
### Other
23+
24+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))

data-plane/core/auth/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/agntcy/slim/compare/slim-auth-v0.4.1...slim-auth-v0.5.0) - 2025-12-19
11+
12+
### Fixed
13+
14+
- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042))
15+
16+
### Other
17+
18+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
19+
1020
## [0.4.1](https://github.com/agntcy/slim/compare/slim-auth-v0.4.0...slim-auth-v0.4.1) - 2025-11-17
1121

1222
### 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.5.0"
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/agntcy/slim/compare/slim-config-v0.4.3...slim-config-v0.5.0) - 2025-12-19
11+
12+
### Added
13+
14+
- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991))
15+
16+
### Other
17+
18+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
19+
1020
## [0.4.3](https://github.com/agntcy/slim/compare/slim-config-v0.4.2...slim-config-v0.4.3) - 2025-11-21
1121

1222
### 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.5.0"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Configuration utilities"

data-plane/core/controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/agntcy/slim/compare/slim-controller-v0.4.3...slim-controller-v0.5.0) - 2025-12-19
11+
12+
### Added
13+
14+
- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991))
15+
16+
### Fixed
17+
18+
- *(controller)* start the controller service only if the related config is provided ([#1054](https://github.com/agntcy/slim/pull/1054))
19+
- *(bindings)* improve identity error handling ([#1042](https://github.com/agntcy/slim/pull/1042))
20+
21+
### Other
22+
23+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
24+
1025
## [0.4.3](https://github.com/agntcy/slim/compare/slim-controller-v0.4.2...slim-controller-v0.4.3) - 2025-11-21
1126

1227
### 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.5.0"
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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.0](https://github.com/agntcy/slim/compare/slim-datapath-v0.10.3...slim-datapath-v0.11.0) - 2025-12-19
11+
12+
### Added
13+
14+
- *(session)* handle moderator unexpected stop ([#1024](https://github.com/agntcy/slim/pull/1024))
15+
- make backoff retry configurable ([#991](https://github.com/agntcy/slim/pull/991))
16+
- Update group state on unexpected application stop ([#1014](https://github.com/agntcy/slim/pull/1014))
17+
- detect and handle unexpected participant disconnections ([#1004](https://github.com/agntcy/slim/pull/1004))
18+
19+
### Fixed
20+
21+
- *(session)* route dataplane errors to correct session ([#1056](https://github.com/agntcy/slim/pull/1056))
22+
- *(session)* correctly remove routes on session close ([#1039](https://github.com/agntcy/slim/pull/1039))
23+
24+
### Other
25+
26+
- unified typed error handling across core crates ([#976](https://github.com/agntcy/slim/pull/976))
27+
1028
## [0.10.3](https://github.com/agntcy/slim/compare/slim-datapath-v0.10.2...slim-datapath-v0.10.3) - 2025-11-21
1129

1230
### Added

0 commit comments

Comments
 (0)