Skip to content

Commit

Permalink
v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mdecimus committed Aug 21, 2024
1 parent 147d9de commit e54c3ab
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

## [0.9.2] - 2024-08-21

To upgrade replace the `stalwart-mail` binary and then upgrade to the latest web-admin.

## Added
- Message delivery history (Enterprise feature)
- Live tracing and logging (Enterprise feature)
- SQL Read Replicas (Enterprise feature)
- Distributed S3 Blob Store (Enterprise feature)

### Changed

### Fixed
- Autodiscover request parser issues.
- Do not create tables when using SQL as an external directory (fixes #291)
- Do not hardcode logger id (fixes #348)
- Include `Forwarded-For IP` address in `http.request-url` event (fixes #682)

## [0.9.1] - 2024-08-08

To upgrade replace the `stalwart-mail` binary and then upgrade to the latest web-admin.
Expand Down
4 changes: 2 additions & 2 deletions crates/trc/src/ipc/collector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ impl Collector {
#[cfg(debug_assertions)]
{
if event.span_id().unwrap() != 0 {
panic!("Unregistered span ID: {event:?}");
eprintln!("Unregistered span ID: {event:?}");
}
}
}
Expand All @@ -182,7 +182,7 @@ impl Collector {
#[cfg(debug_assertions)]
{
if span_id != 0 {
panic!("Unregistered span ID: {event:?}");
eprintln!("Unregistered span ID: {event:?}");
}
}
}
Expand Down

0 comments on commit e54c3ab

Please sign in to comment.