From 08287d574073f525e80c63d0b27c8d7de9d8ff23 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 30 Oct 2021 10:23:17 +0200 Subject: [PATCH] Update release notes a bit (breaking changes section) [skip ci] --- doc/RELEASE-NOTES.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/doc/RELEASE-NOTES.md b/doc/RELEASE-NOTES.md index 73b3fb93b..da38befc4 100644 --- a/doc/RELEASE-NOTES.md +++ b/doc/RELEASE-NOTES.md @@ -15,9 +15,18 @@ Who gets to see what in WHOIS is also customizable in detail. Breaking changes ----------------- -TODO elaborate but try to keep short: -log block, cloaking module needs to be chosen explicitly, -and the need to include snomasks.default.conf. +* You need to add ```include "snomasks.default.conf";``` +* You need to load a cloaking module explicitly. Assuming you already + have a network then add: ```loadmodule "cloak_md5";``` +* The log block(s) need to be updated, use something like: + ```log { + source { + all; + } + destination { + file "ircd.log" { maxsize 100M; } + } + }``` Enhancements -------------