Skip to content

Commit a91a293

Browse files
authored
chore: release
1 parent 1a7ad3c commit a91a293

23 files changed

Lines changed: 145 additions & 34 deletions

Cargo.lock

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

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,20 @@ resolver = "2"
3939

4040
[workspace.dependencies]
4141
# Local dependencies
42-
agntcy-slim = { path = "crates/slim", version = "2.0.0-alpha.1" }
43-
agntcy-slim-auth = { path = "crates/auth", version = "0.10.0" }
44-
agntcy-slim-config = { path = "crates/config", version = "0.11.0" }
45-
agntcy-slim-controller = { path = "crates/controller", version = "0.8.0" }
46-
agntcy-slim-datapath = { path = "crates/datapath", version = "0.15.0" }
47-
agntcy-slim-mls = { path = "crates/mls", version = "0.2.0" }
42+
agntcy-slim = { path = "crates/slim", version = "2.0.0-alpha.2" }
43+
agntcy-slim-auth = { path = "crates/auth", version = "0.11.0" }
44+
agntcy-slim-config = { path = "crates/config", version = "0.11.1" }
45+
agntcy-slim-controller = { path = "crates/controller", version = "0.9.0" }
46+
agntcy-slim-datapath = { path = "crates/datapath", version = "0.16.0" }
47+
agntcy-slim-mls = { path = "crates/mls", version = "0.2.1" }
4848
agntcy-slim-proto = { path = "crates/proto", version = "0.1.0" }
49-
agntcy-slim-service = { path = "crates/service", version = "0.10.0", default-features = false }
50-
agntcy-slim-session = { path = "crates/session", version = "0.3.0" }
51-
agntcy-slim-signal = { path = "crates/signal", version = "0.1.10" }
49+
agntcy-slim-service = { path = "crates/service", version = "0.10.1", default-features = false }
50+
agntcy-slim-session = { path = "crates/session", version = "0.4.0" }
51+
agntcy-slim-signal = { path = "crates/signal", version = "0.1.11" }
5252
agntcy-slim-testing = { path = "crates/testing" }
53-
agntcy-slim-tracing = { path = "crates/tracing", version = "0.4.0" }
54-
agntcy-slim-version = { path = "crates/version", version = "2.0.0-alpha.1" }
55-
agntcy-slimctl = { path = "crates/slimctl", version = "2.0.0-alpha.1" }
53+
agntcy-slim-tracing = { path = "crates/tracing", version = "0.4.1" }
54+
agntcy-slim-version = { path = "crates/version", version = "2.0.0-alpha.2" }
55+
agntcy-slimctl = { path = "crates/slimctl", version = "2.0.0-alpha.2" }
5656
anyhow = "1.0.98"
5757

5858
arc-swap = "1.9.1"
@@ -205,7 +205,7 @@ web-time = "1"
205205
wiremock = "0.6"
206206

207207
[workspace.package]
208-
version = "2.0.0-alpha.1"
208+
version = "2.0.0-alpha.2"
209209
license = "Apache-2.0"
210210
edition = "2024"
211211
repository = "https://github.com/agntcy/slim"

crates/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.11.0](https://github.com/agntcy/slim/compare/slim-auth-v0.10.0...slim-auth-v0.11.0) - 2026-06-29
11+
12+
### Added
13+
14+
- add header integrity check and replay protection to control messages ([#1740](https://github.com/agntcy/slim/pull/1740))
15+
16+
### Other
17+
18+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
19+
1020
## [0.10.0](https://github.com/agntcy/slim/compare/slim-auth-v0.9.0...slim-auth-v0.10.0) - 2026-06-17
1121

1222
### Added

crates/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.10.0"
3+
version = "0.11.0"
44
license = { workspace = true }
55
edition = { workspace = true }
66
description = "Authentication utilities for the Agntcy Slim framework"

crates/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.11.1](https://github.com/agntcy/slim/compare/slim-config-v0.11.0...slim-config-v0.11.1) - 2026-06-29
11+
12+
### Added
13+
14+
- add header integrity check and replay protection to control messages ([#1740](https://github.com/agntcy/slim/pull/1740))
15+
16+
### Other
17+
18+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
19+
1020
## [0.11.0](https://github.com/agntcy/slim/compare/slim-config-v0.10.0...slim-config-v0.11.0) - 2026-06-17
1121

1222
### Added

crates/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.11.0"
3+
version = "0.11.1"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Configuration utilities"

crates/controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.9.0](https://github.com/agntcy/slim/compare/slim-controller-v0.8.0...slim-controller-v0.9.0) - 2026-06-29
11+
12+
### Added
13+
14+
- network segmentation ([#1761](https://github.com/agntcy/slim/pull/1761))
15+
- add header integrity check and replay protection to control messages ([#1740](https://github.com/agntcy/slim/pull/1740))
16+
17+
### Other
18+
19+
- `slimctl` CLI commands for group-based routing ([#1769](https://github.com/agntcy/slim/pull/1769))
20+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
21+
1022
## [0.8.0](https://github.com/agntcy/slim/compare/slim-controller-v0.7.0...slim-controller-v0.8.0) - 2026-06-17
1123

1224
### Added

crates/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.8.0"
3+
version = "0.9.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."

crates/datapath/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.16.0](https://github.com/agntcy/slim/compare/slim-datapath-v0.15.0...slim-datapath-v0.16.0) - 2026-06-29
11+
12+
### Added
13+
14+
- add header integrity check and replay protection to control messages ([#1740](https://github.com/agntcy/slim/pull/1740))
15+
16+
### Other
17+
18+
- `slimctl` CLI commands for group-based routing ([#1769](https://github.com/agntcy/slim/pull/1769))
19+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
20+
1021
## [0.15.0](https://github.com/agntcy/slim/compare/slim-datapath-v0.14.1...slim-datapath-v0.15.0) - 2026-06-17
1122

1223
### Added

crates/datapath/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-datapath"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Core data plane functionality for SLIM"

0 commit comments

Comments
 (0)