Skip to content

Commit e54c3ab

Browse files
committed
v0.9.2
1 parent 147d9de commit e54c3ab

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

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

5+
## [0.9.2] - 2024-08-21
6+
7+
To upgrade replace the `stalwart-mail` binary and then upgrade to the latest web-admin.
8+
9+
## Added
10+
- Message delivery history (Enterprise feature)
11+
- Live tracing and logging (Enterprise feature)
12+
- SQL Read Replicas (Enterprise feature)
13+
- Distributed S3 Blob Store (Enterprise feature)
14+
15+
### Changed
16+
17+
### Fixed
18+
- Autodiscover request parser issues.
19+
- Do not create tables when using SQL as an external directory (fixes #291)
20+
- Do not hardcode logger id (fixes #348)
21+
- Include `Forwarded-For IP` address in `http.request-url` event (fixes #682)
22+
523
## [0.9.1] - 2024-08-08
624

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

crates/trc/src/ipc/collector.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ impl Collector {
168168
#[cfg(debug_assertions)]
169169
{
170170
if event.span_id().unwrap() != 0 {
171-
panic!("Unregistered span ID: {event:?}");
171+
eprintln!("Unregistered span ID: {event:?}");
172172
}
173173
}
174174
}
@@ -182,7 +182,7 @@ impl Collector {
182182
#[cfg(debug_assertions)]
183183
{
184184
if span_id != 0 {
185-
panic!("Unregistered span ID: {event:?}");
185+
eprintln!("Unregistered span ID: {event:?}");
186186
}
187187
}
188188
}

0 commit comments

Comments
 (0)