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
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "0.5.0",
"crates/prosody-macros": "0.5.0"
".": "0.6.0",
"crates/prosody-macros": "0.6.0"
}
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [0.6.0](https://github.com/prosody-events/prosody/compare/prosody-v0.5.0...prosody-v0.6.0) (2026-08-14)


### Features

* add binary JSON codec bundle ([#61](https://github.com/prosody-events/prosody/issues/61)) ([05f5a0d](https://github.com/prosody-events/prosody/commit/05f5a0dacc9729bcc07d8c2b5c757444e51912bb))
* **peer:** peer delivery and synchrony recovery ([#56](https://github.com/prosody-events/prosody/issues/56)) ([4968118](https://github.com/prosody-events/prosody/commit/4968118b7761d9eed6291c8384fc7e0053eede5a))
* **state:** expose published keyed state ([#51](https://github.com/prosody-events/prosody/issues/51)) ([1add1b7](https://github.com/prosody-events/prosody/commit/1add1b742a4118142ea536b96d3dc8237ae16897))
* **tracing:** retain OTel provider handles and add flush/shutdown ([#49](https://github.com/prosody-events/prosody/issues/49)) ([e9b492f](https://github.com/prosody-events/prosody/commit/e9b492fc6c75bafce4d28bbea205aebf5baaa2d3))


### Bug Fixes

* defer automatic peer address selection ([#63](https://github.com/prosody-events/prosody/issues/63)) ([da1665d](https://github.com/prosody-events/prosody/commit/da1665d5b82cfd1c60f418bc7ac3bc5899d2f95e))
* derive erased state codecs from payloads ([#62](https://github.com/prosody-events/prosody/issues/62)) ([9551102](https://github.com/prosody-events/prosody/commit/955110209d22691ae6a287a7d50655cad951c535))
* isolate coverage tests ([#64](https://github.com/prosody-events/prosody/issues/64)) ([0c95867](https://github.com/prosody-events/prosody/commit/0c958671f9f9f5f610edcefbb66a639cc5a8217a))
* isolate peer telemetry tests ([#65](https://github.com/prosody-events/prosody/issues/65)) ([d96b53a](https://github.com/prosody-events/prosody/commit/d96b53af1a0c8e9f9b0c0d4155e05f4fda6e28e1))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* prosody-macros bumped from 0.5.0 to 0.6.0

## [0.5.0](https://github.com/prosody-events/prosody/compare/prosody-v0.4.0...prosody-v0.5.0) (2026-07-21)


Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ license = "MIT"
name = "prosody"
readme = "README.md"
repository = "https://github.com/prosody-events/prosody"
version = "0.5.0"
version = "0.6.0"

[dependencies]
ahash = "0.8"
Expand Down Expand Up @@ -66,7 +66,7 @@ parse-size = "1.1"
paste = "1.0"
pin-project = "1.1"
portable-atomic = { version = "1.3", features = ["float"] }
prosody-macros = { version = "0.5.0", path = "crates/prosody-macros" }
prosody-macros = { version = "0.6.0", path = "crates/prosody-macros" }
prost = "0.14.4"
quanta = "0.12"
quick_cache = "0.7"
Expand Down
8 changes: 8 additions & 0 deletions crates/prosody-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.6.0](https://github.com/prosody-events/prosody/compare/prosody-macros-v0.5.0...prosody-macros-v0.6.0) (2026-08-14)


### Miscellaneous Chores

* **prosody-macros:** Synchronize prosody versions
2 changes: 1 addition & 1 deletion crates/prosody-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "prosody-macros"
publish = ["crates-io"]
readme = "README.md"
repository = "https://github.com/prosody-events/prosody"
version = "0.5.0"
version = "0.6.0"

[lib]
proc-macro = true
Expand Down
Loading