This commit is contained in:
Mike Dilger 2024-11-16 10:10:31 +13:00
parent 94ad17fcc3
commit 70a4f91877
No known key found for this signature in database
GPG Key ID: 47581A78D4329BA4
3 changed files with 12 additions and 3 deletions

2
Cargo.lock generated
View File

@ -256,7 +256,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chorus"
version = "1.5.2"
version = "1.5.3"
dependencies = [
"base64 0.22.1",
"dashmap",

View File

@ -1,6 +1,6 @@
[package]
name = "chorus"
version = "1.5.2"
version = "1.5.3"
description = "A personal relay for nostr"
authors = ["Mike Dilger <mike@mikedilger.com>"]
license = "MIT"

View File

@ -61,10 +61,19 @@ announce upgrade instructions until release.
## Change Log
### version 1.5.2 (TBD)
### Version 1.5.3
- Performance improvements (streaming body)
- Approval not required for kinds 0, 3, and reactions (as well as prior list)
- FIX honor enable_ip_blocking = false
- NEW `chorus_cmd` with `delete_by_id` and `delete_by_pubkey`
- optional `icon_url` for NIP-11
### version 1.5.2 (2024-07-31, d8689540)
- NEW CONFIG: `throttling_bytes_per_second` how many bytes are allowed per second
- NEW CONFIG: `throttling_burst` how many bytes can be accepted per connection in a burst
- Don't wait more than 5 seconds for connections to close when shutting down
### version 1.5.1 (2024-07-14, c9c71311)