docs: 📝 Update changelog

This commit is contained in:
Jesse Wierzbinski 2024-11-25 14:27:34 +01:00
parent 61b773ed11
commit 4594c69808
No known key found for this signature in database
2 changed files with 22 additions and 1 deletions

View file

@ -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 `<div>` and `<span>` 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.

View file

@ -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