mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
docs: 📝 Update changelog
This commit is contained in:
parent
61b773ed11
commit
4594c69808
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -6,10 +6,31 @@ Versia Server `0.8.0` is fully backwards compatible with `0.7.0`.
|
||||||
|
|
||||||
## Features
|
## 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`.
|
- Upgraded Bun to `1.1.36`.
|
||||||
- Allowed `<div>` and `<span>` tags in Markdown.
|
- Allowed `<div>` and `<span>` tags in Markdown.
|
||||||
- Added `--password` flag to the user creation CLI.
|
- 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
|
## Bug Fixes
|
||||||
|
|
||||||
- Correctly proxy all URIs in custom Markdown text.
|
- Correctly proxy all URIs in custom Markdown text.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# You can change the URL to the commit/tag you are using
|
# 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]
|
[database]
|
||||||
# Main PostgreSQL database connection
|
# Main PostgreSQL database connection
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue