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