summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormdecimus <mauro@stalw.art>2024-08-01 17:44:24 +0200
committermdecimus <mauro@stalw.art>2024-08-01 17:44:24 +0200
commit644496db4597f1fb32380de4f37985428a01cb02 (patch)
tree0d2f9bdabe7edcc38004d3d9768b617f6ff3ddda
parent3cb8918d2e7f83fca4973ce194fdb02477f18853 (diff)
Windows fixv0.9.0
-rw-r--r--UPGRADING.md2
-rw-r--r--crates/utils/src/lib.rs2
-rw-r--r--tests/src/jmap/mod.rs4
3 files changed, 4 insertions, 4 deletions
diff --git a/UPGRADING.md b/UPGRADING.md
index 947587bc..cd155135 100644
--- a/UPGRADING.md
+++ b/UPGRADING.md
@@ -1,4 +1,4 @@
-Upgrading from `v0.8.3` to `v0.9.0`
+Upgrading from `v0.8.x` to `v0.9.0`
-----------------------------------
Version `0.9.0` introduces significant internal improvements while maintaining compatibility with existing database layouts and configuration file formats from version `0.8.0`. As a result, no data or configuration migration is necessary. This release focuses on enhancing performance and functionality, particularly in logging and tracing capabilities.
diff --git a/crates/utils/src/lib.rs b/crates/utils/src/lib.rs
index d8fec81a..3aef7ba0 100644
--- a/crates/utils/src/lib.rs
+++ b/crates/utils/src/lib.rs
@@ -163,7 +163,7 @@ pub async fn wait_for_shutdown() {
Ok(()) => "SIGINT",
Err(err) => {
trc::event!(
- Server(trc::ServerEvent::Error),
+ Server(trc::ServerEvent::ThreadError),
Details = "Unable to listen for shutdown signal",
Reason = err.to_string(),
);
diff --git a/tests/src/jmap/mod.rs b/tests/src/jmap/mod.rs
index 401a60ee..14ab03e2 100644
--- a/tests/src/jmap/mod.rs
+++ b/tests/src/jmap/mod.rs
@@ -300,7 +300,7 @@ pub async fn jmap_tests() {
.await;
webhooks::test(&mut params).await;
- /*email_query::test(&mut params, delete).await;
+ email_query::test(&mut params, delete).await;
email_get::test(&mut params).await;
email_set::test(&mut params).await;
email_parse::test(&mut params).await;
@@ -312,7 +312,7 @@ pub async fn jmap_tests() {
thread_merge::test(&mut params).await;
mailbox::test(&mut params).await;
delivery::test(&mut params).await;
- auth_acl::test(&mut params).await;*/
+ auth_acl::test(&mut params).await;
auth_limits::test(&mut params).await;
auth_oauth::test(&mut params).await;
event_source::test(&mut params).await;