File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
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
+
5
23
## [ 0.9.1] - 2024-08-08
6
24
7
25
To upgrade replace the ` stalwart-mail ` binary and then upgrade to the latest web-admin.
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ impl Collector {
168
168
#[ cfg( debug_assertions) ]
169
169
{
170
170
if event. span_id ( ) . unwrap ( ) != 0 {
171
- panic ! ( "Unregistered span ID: {event:?}" ) ;
171
+ eprintln ! ( "Unregistered span ID: {event:?}" ) ;
172
172
}
173
173
}
174
174
}
@@ -182,7 +182,7 @@ impl Collector {
182
182
#[ cfg( debug_assertions) ]
183
183
{
184
184
if span_id != 0 {
185
- panic ! ( "Unregistered span ID: {event:?}" ) ;
185
+ eprintln ! ( "Unregistered span ID: {event:?}" ) ;
186
186
}
187
187
}
188
188
}
You can’t perform that action at this time.
0 commit comments