Update README for changes in 1.4.0 (belated) and suggest use of new 'latest' branch

This commit is contained in:
Mike Dilger 2024-07-13 14:29:28 +12:00
parent c1ee86f4df
commit 731b6d7410
2 changed files with 22 additions and 0 deletions

View File

@ -49,8 +49,28 @@ However:
[khatru](https://github.com/fiatjaf/khatru)
## Git branches
Use the branch `latest`.
Do not run off of the `master` branch. Master is updated with breaking changes that are
not only unstable, but which may require you to update your configuration. I will not
announce upgrade instructions until release.
## Change Log
### Version 1.4.0 (2024-05-07, 25058ef4)
- Origin header logged
- CLOSED: auth-required sent if DMs requested and not authenticated yet
- config: minimum_ban_seconds, timeout_seconds, dont_ip_block
- default for allow_scrape_if_max_seconds raised from 3600 to 7200
- default for max_subscriptions raised from 32 to 128
- timeouts no longer affect ban seconds
- Internal: switched to pocket for the backend storage
- creates lmdb subdirectory if missing
- several bugfixes: filter parsing, empty tags, event ordering, chorus_compress was fixed
### Version 1.3.0 (2024-04-10, 7883d754)
- `chorus_moderate` tool to approve events or pubkeys

View File

@ -43,6 +43,7 @@ sudo chown $(id -u) /opt/chorus/src
cd /opt/chorus/src
git clone https://github.com/mikedilger/chorus
cd chorus
git checkout latest
```
Check if you have `rustc` and `cargo` installed. If so, you can skip this part.
@ -174,6 +175,7 @@ sudo journalctl -f -u chorus.service
```
## Updating
````bash
cd /opt/chorus/src/chorus
git pull