summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormdecimus <mauro@stalw.art>2024-08-21 16:27:19 +0200
committermdecimus <mauro@stalw.art>2024-08-21 16:27:19 +0200
commite54c3abad4e811a66e9cb2d3b49f05f8f15c1a15 (patch)
tree6d3a5040291bd538d0b8565f1ab2cf3f32d192ec
parent147d9ded86f4c9fbea2ca7ed00dc1e7be58d9184 (diff)
v0.9.2v0.9.2
-rw-r--r--CHANGELOG.md18
-rw-r--r--crates/trc/src/ipc/collector.rs4
2 files changed, 20 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f0ac930..06fb6dc2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
diff --git a/crates/trc/src/ipc/collector.rs b/crates/trc/src/ipc/collector.rs
index 0724da1b..2631b757 100644
--- a/crates/trc/src/ipc/collector.rs
+++ b/crates/trc/src/ipc/collector.rs
@@ -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:?}");
}
}
}
@@ -182,7 +182,7 @@ impl Collector {
#[cfg(debug_assertions)]
{
if span_id != 0 {
- panic!("Unregistered span ID: {event:?}");
+ eprintln!("Unregistered span ID: {event:?}");
}
}
}