release: 1.6.0
test / test (push) Waiting to run

Add 30-day send statistics and auto level-2 rate limits on the domain page. Close Unreleased; pin compose and docs to 1.6.0.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-18 22:26:51 +03:00
parent 8538b8d5f6
commit c1ec4fbd79
27 changed files with 1092 additions and 140 deletions
+5 -1
View File
@@ -254,7 +254,7 @@ func run() error {
}
var wg sync.WaitGroup
errc := make(chan error, 3)
errc := make(chan error, 4)
roles := []struct {
name string
@@ -272,6 +272,10 @@ func run() error {
return days
})
}},
{"rate-limit-recalc", func(ctx context.Context) error {
runAutoRateLimitRecalc(ctx, cfg, st)
return nil
}},
}
for _, r := range roles {