This commit is contained in:
Maurus Decimus
2026-06-25 11:13:29 +02:00
parent 93b3b70616
commit 0b520b6334
3 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
## [0.16.11] - 2026-06-XX
## [0.16.11] - 2026-06-25
If you are upgrading from v0.16.x, replace the binary (or run `docker pull`). If you are upgrading from v0.15.x and below, please read the [upgrading documentation](https://github.com/stalwartlabs/stalwart/blob/main/UPGRADING/v0_16.md) for more information on how to upgrade from previous versions.

View File

@@ -5,8 +5,8 @@ edition = "2024"
[features]
#default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "nats", "azure", "foundationdb"]
default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "foundationdb"]
#default = ["rocks", "sqlite"]
#default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "foundationdb"]
default = ["rocks", "sqlite"]
sqlite = ["store/sqlite", "directory/sqlite"]
foundationdb = ["store/foundation", "common/foundation"]
postgres = ["store/postgres", "directory/postgres"]

View File

@@ -212,6 +212,7 @@ pub async fn test(test: &mut TestServer) {
.jmap_method_call(
"Quota/get",
json!({
"accountId": account.id_string(),
"ids": null
}),
)
@@ -265,6 +266,7 @@ pub async fn test(test: &mut TestServer) {
.jmap_method_call(
"Quota/get",
json!({
"accountId": account.id_string(),
"ids": null
}),
)