From c3509b963995af85d05d87c8b2a7e38ff0207044 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Wed, 21 Sep 2022 22:55:52 -0700 Subject: [PATCH] Update NEWS --- NEWS.md | 21 +++++++++++++++++++++ package.json | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index d83b63b4..24c262e2 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,24 @@ +2022-09-21 +========== + +**Upgrade intervention required** + +This release adds a feature to ban channels, replacing the earlier (hastily +added) configuration-based `channel-blacklist`. If you have any entries in +`channel-blacklist` in your `config.yaml`, you will need to migrate them to the +new bans table by using a command after upgrading (the ACP web interface hasn't +been updated for this feature): + + ./bin/admin.js ban-channel + +The external reason will be displayed when users attempt to join the banned +channel, while the internal reason is only displayed when using the +`show-channel-ban` command. + +You can later use `unban-channel` to remove a ban. The owner of the banned +channel can still delete it, but the banned state will persist, so the channel +cannot be re-registered later. + 2022-08-28 ========== diff --git a/package.json b/package.json index c696bfb6..17066320 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Calvin Montgomery", "name": "CyTube", "description": "Online media synchronizer and chat", - "version": "3.83.0", + "version": "3.84.0", "repository": { "url": "http://github.com/calzoneman/sync" },