Skip to content
Merged
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
83 changes: 83 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,89 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- add #[must_use] to builder types and doc comments to public items


### Documentation
- added examples and improved READMEs ([#15](https://github.com/deadcode-walker/asterisk-rs/pull/15))


### Fixed
- resource management, validation, and correctness improvements
- credential zeroize, ChanVariable propagation, test rigor, endpos parsing
- *(protocol)* corrected AMI framing, reconnect, AGI safety, ARI error handling
- *(security)* rejected protocol injection and credential leaks


### Other
- updated crate description to async


### Testing
- restructure test architecture + add massive coverage
- add 120 unit tests across all crates (Wave 1)


### Added
- add #[must_use] to builder types and doc comments to public items


### Documentation
- added examples and improved READMEs ([#15](https://github.com/deadcode-walker/asterisk-rs/pull/15))


### Fixed
- resource management, validation, and correctness improvements
- *(protocol)* corrected AMI framing, reconnect, AGI safety, ARI error handling
- *(security)* rejected protocol injection and credential leaks


### Added
- add #[must_use] to builder types and doc comments to public items


### Documentation
- added examples and improved READMEs ([#15](https://github.com/deadcode-walker/asterisk-rs/pull/15))


### Fixed
- credential zeroize, ChanVariable propagation, test rigor, endpos parsing
- resource management, validation, and correctness improvements
- *(protocol)* corrected AMI framing, reconnect, AGI safety, ARI error handling
- *(security)* rejected protocol injection and credential leaks


### Documentation
- added examples and improved READMEs ([#15](https://github.com/deadcode-walker/asterisk-rs/pull/15))


### Fixed
- credential zeroize, ChanVariable propagation, test rigor, endpos parsing
- resource management, validation, and correctness improvements
- *(protocol)* corrected AMI framing, reconnect, AGI safety, ARI error handling
- *(security)* rejected protocol injection and credential leaks


### Testing
- restructure test architecture + add massive coverage
- add 120 unit tests across all crates (Wave 1)


### Documentation
- added examples and improved READMEs ([#15](https://github.com/deadcode-walker/asterisk-rs/pull/15))


### Fixed
- credential zeroize, ChanVariable propagation, test rigor, endpos parsing
- resource management, validation, and correctness improvements


### Testing
- restructure test architecture + add massive coverage
- add 120 unit tests across all crates (Wave 1)


### Fixed
- *(ami)* OriginateResponse event no longer swallowed as action response

Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ hyper = { version = "1", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"

zeroize = "1"
zeroize = "1"
4 changes: 2 additions & 2 deletions crates/asterisk-rs-agi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asterisk-rs-agi"
version = "0.2.1"
version = "0.2.2"
description = "Async Rust FastAGI server for Asterisk Gateway Interface"
edition.workspace = true
rust-version.workspace = true
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
workspace = true

[dependencies]
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.2.1" }
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.3.0" }
tokio = { workspace = true, features = ["net", "sync", "time", "io-util", "macros", "rt"] }
tracing.workspace = true
thiserror.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/asterisk-rs-ami/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asterisk-rs-ami"
version = "0.4.2"
version = "0.5.0"
description = "Async Rust client for the Asterisk Manager Interface (AMI)"
edition.workspace = true
rust-version.workspace = true
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
workspace = true

[dependencies]
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.2.1" }
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.3.0" }
tokio = { workspace = true, features = ["net", "sync", "time", "io-util", "macros", "rt"] }
tokio-util = { workspace = true, features = ["codec"] }
bytes.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/asterisk-rs-ari/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asterisk-rs-ari"
version = "0.4.0"
version = "0.4.1"
description = "Async Rust client for the Asterisk REST Interface (ARI)"
edition.workspace = true
rust-version.workspace = true
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
workspace = true

[dependencies]
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.2.1" }
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.3.0" }
tokio = { workspace = true, features = ["net", "sync", "time", "macros", "rt"] }
reqwest.workspace = true
tokio-tungstenite.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/asterisk-rs-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asterisk-rs-core"
version = "0.2.1"
version = "0.3.0"
description = "Shared types, error framework, and event bus for asterisk-rs"
edition.workspace = true
rust-version.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions crates/asterisk-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asterisk-rs"
version = "0.1.6"
version = "0.1.7"
description = "Async Rust client for Asterisk AMI, AGI, and ARI"
edition.workspace = true
rust-version.workspace = true
Expand All @@ -15,10 +15,10 @@ readme = "../../README.md"
workspace = true

[dependencies]
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.2.1" }
asterisk-rs-ami = { path = "../asterisk-rs-ami", version = "0.4.2", optional = true }
asterisk-rs-agi = { path = "../asterisk-rs-agi", version = "0.2.1", optional = true }
asterisk-rs-ari = { path = "../asterisk-rs-ari", version = "0.4.0", optional = true }
asterisk-rs-core = { path = "../asterisk-rs-core", version = "0.3.0" }
asterisk-rs-ami = { path = "../asterisk-rs-ami", version = "0.5.0", optional = true }
asterisk-rs-agi = { path = "../asterisk-rs-agi", version = "0.2.2", optional = true }
asterisk-rs-ari = { path = "../asterisk-rs-ari", version = "0.4.1", optional = true }
thiserror.workspace = true
tokio.workspace = true

Expand Down
Loading