From 4594c698082bd0b2291784fb8e3effbd1262c7ca Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 25 Nov 2024 14:27:34 +0100 Subject: [PATCH] docs: :memo: Update changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ config/config.example.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7e4a6af..e827e070 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,31 @@ Versia Server `0.8.0` is fully backwards compatible with `0.7.0`. ## Features +- Outbound federation and inbox processing are now handled by a queue system (like most federated software). + - Added an administration UI for managing the queue. - Upgraded Bun to `1.1.36`. - Allowed `
` and `` tags in Markdown. - Added `--password` flag to the user creation CLI. +## New Configuration Options + +```toml +[queues] +# Control the delivery queue (for outbound federation) +[queues.delivery] +# Time in seconds to remove completed jobs +remove_on_complete = 31536000 +# Time in seconds to remove failed jobs +remove_on_failure = 31536000 + +# Control the inbox processing queue (for inbound federation) +[queues.inbox] +# Time in seconds to remove completed jobs +remove_on_complete = 31536000 +# Time in seconds to remove failed jobs +remove_on_failure = 31536000 +``` + ## Bug Fixes - Correctly proxy all URIs in custom Markdown text. diff --git a/config/config.example.toml b/config/config.example.toml index f19696c5..c4b01d2f 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -1,5 +1,5 @@ # You can change the URL to the commit/tag you are using -#:schema https://raw.githubusercontent.com/versia-pub/server/v0.7.0/config/config.schema.json +#:schema https://raw.githubusercontent.com/versia-pub/server/main/config/config.schema.json [database] # Main PostgreSQL database connection