summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2024-04-01 12:57:27 +0100
committerLuke Bratch <luke@bratch.co.uk>2024-04-01 12:57:27 +0100
commit9e093575c0372cb14aef9cf97ccb8811e687b6e9 (patch)
treeda5af408f24ec3752042c87ddec02b62e92c9358
parent33bb47c623d1c605a5a131ef882feb6df42570b7 (diff)
Release version 0.3.HEADv0.3master
Please see the NEWS file for a highlight of changes in this release.
-rw-r--r--NEWS75
-rw-r--r--VERSION2
2 files changed, 76 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index abb558a..06a9ec3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,78 @@
+blabouncer 0.3 - 2024-04-01
+
+New features:
+ - Fix replaymode = "lastspoke":
+ - This is listed as a new feature rather than a bug fix as it's the first
+ time it's really worked and it's fantastic.
+ - Implement runtime client-side TLS changing when doing a rehash (BLABOUNCER
+ REHASH command or SIGHUP):
+ - Re-read "certfile" and "keyfile" paths from configuration file.
+ - Always reconfigure OpenSSL context to replace certificate without
+ restarting.
+ - Implement BLABOUNCER commands LISTCLIENTS and DISCONNECT:
+ - LISTCLIENTS: List all connected clients and their authentication status.
+ - DISCONNECT [FD]: Disconnect a client with file descriptor number [FD] (see
+ LISTCLIENTS output).
+ - Add a BLABOUNCER VERSION command.
+ - Support KICK command and log/replay it appropriately.
+ - Version information now uses Git if `git` is installed and the blabouncer
+ repo is present.
+ - Makefile improvements:
+ - Add "make install".
+ - Add "make uninstall".
+ - Add "make clean".
+ - Pay attention to modified header files.
+
+Changes:
+ - Pass version number at compile time based on "git describe". Add fallback
+ VERSION file for if Git isn't installed.
+ - Improve performance when another user QUITs.
+ - Reduce debug log size during replays when using debug = "2".
+ - Improve memory usage.
+ - Fake replayed QUITs using NOTICEs for clients who don't show anything when
+ a QUIT is received for an unknown nick.
+ - Send fully formed PONG responses to client PINGs.
+ - Relay server PINGs to all clients in case they rely on PINGs to stay alive.
+ - Increase maximum auto join channels from 10 to 40.
+ - Continue rather than exit in certain unexpected situations.
+ - Include ERR_UNAVAILRESOURCE when doing "nick in use" resolution.
+ - Correctly handle too many clients by doing accept() and close() immediately
+ rather than trying to add to clients[] struct.
+ - Improve stdin debugging commands when using foreground mode (-f):
+ - "listchannels" now includes channel nicks.
+ - Correctly handle EOF.
+ - Improve debug output and stability.
+ - Don't write CTCP VERSION messages to replay log. CTCP VERSION replay/relay
+ behaviour is now as follows:
+ - Replaying:
+ -- PRIVMSG VERSION - requests - from other people - don't replay.
+ -- PRIVMSG VERSION - requests - from us - don't replay.
+ -- NOTICE VERSION - responses - from other people - don't replay.
+ -- NOTICE VERSION - responses - from us - don't replay.
+ - Relaying (to non-requesting Blabouncer clients):
+ -- PRIVMSG VERSION - requests - from other people - do relay.
+ -- PRIVMSG VERSION - requests - from us - don't relay.
+ -- NOTICE VERSION - responses - from other people - do relay.
+ -- NOTICE VERSION - responses - from us - don't relay.
+
+Bug fixes:
+ - Fix MODE logging.
+ - Fix some situations where the remote IP of a connecting/disconnecting client
+ is wrong in the debug log and NOTICEs.
+ - Fix existing clients getting channel nicks after real IRC server
+ reconnections.
+ - Correct detection of changed nick for updating existing clients when
+ reconnecting to server after a timeout.
+ - Fix PARTing a channel whose name is a substring of another channel.
+ - Fix PRIVMSG logging going to the wrong log file.
+ - Deal with servers only sending a nick rather than nick!user@host in
+ RPL_WELCOME.
+ - Support channel bans using "+b" as well as "b".
+ - Typo fixes.
+ - Comment clarifications.
+ - Many, many, more!
+
+
blabouncer 0.2 - 2019-09-16
New features:
diff --git a/VERSION b/VERSION
index 60bce9f..a85e614 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-v0.2-git
+v0.3