Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 6 additions & 0 deletions crates/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions crates/channel-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions crates/config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
10 changes: 10 additions & 0 deletions crates/control-plane/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions crates/controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
7 changes: 7 additions & 0 deletions crates/datapath/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/datapath/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions crates/mls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/mls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
12 changes: 12 additions & 0 deletions crates/proto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 6 additions & 0 deletions crates/service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
7 changes: 7 additions & 0 deletions crates/session/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading
Loading