ergo/CHANGELOG.md

697 lines
44 KiB
Markdown
Raw Normal View History

2016-04-14 01:38:15 +02:00
# Changelog
2016-04-14 07:22:53 +02:00
All notable changes to Oragono will be documented in this file.
2019-06-11 10:23:35 +02:00
## [1.1.0-rc1] - 2019-06-11
We're pleased to be publishing the release candidate for 1.1.0 (the official release should follow in a week or two, with more complete credits). This version has a number of exciting improvements, including:
* Support for attaching multiple clients to the same nickname
* Support for the newly ratified [message tags](https://ircv3.net/specs/extensions/message-tags.html) and [message ID](https://ircv3.net/specs/extensions/message-ids.html) IRCv3 specifications; client developers are invited to use Oragono as a reference when implementing these specifications
* Support for running Oragono as a Tor hidden service
* Support for IP cloaking
* Simplified commands for registering new accounts with NickServ
2019-05-31 11:45:34 +02:00
This release includes a schema change. If you have `datastore.autoupgrade` set to `true` in your configuration, it will be automatically applied on first restart; otherwise, you can apply it manually as described in the manual.
### Config changes
* `tor-listeners` section added, for configuring listeners for use by Tor
* `compatibility` section added for toggling compatibility behaviors for legacy clients
* `ip-cloaking` section added for configuring cloaking
* `bouncer` section added for configuring bouncer-like features (in particular, whether multiple clients can use the same nickname)
* `check-ident` now has recommended value `false`
* `nick-reservation.method` now has recommended value `strict`
2019-06-12 09:40:14 +02:00
* `fakelag.enabled` now has recommended value `true`
* `limits.linelen.tags` removed due to ratification of the [message-tags spec](https://ircv3.net/specs/extensions/message-tags.html), which fixes the maximum tags length at 8191 bytes
* `registration-messages` added to limit the length of the registration sequence (i.e., handshake)
2019-06-11 07:00:12 +02:00
* `channels.operator-only-creation` added to optionally restrict creation of new channels to ircops (#537)
### Security
* Eliminated the possibility of using confusable Unicode characters to impersonate network services like NickServ (#519, thanks [@csmith](https://github.com/csmith)!)
* Improved privacy properties of secret (mode `+s`) channels (#380, thanks [@csmith](https://github.com/csmith)!)
* The `+R` (registered-only) mode now prevents unregistered clients from joining the channel, not just from speaking (#463, thanks [@bogdomania](https://github.com/bogdomania)!)
* Limited the total length of the registration sequence (handshake) to mitigate potential DoS attacks (#505)
2019-06-03 04:00:08 +02:00
* Attempting to reauthenticate with SASL now fails with `907 ERR_SASLALREADY` (#476)
### Fixed
* Fixed `/ISON` command reporting users as always being online (#479)
* Fixed clients who negotiated CAP version 302 or higher not receiving cap-notify messages (#464)
* More consistent handling of channel privileges, in particular halfop (#400)
* More consistent assignment of message IDs and timestamps to messages (#388, #477, #483)
* Client-only tags are now stored for replay (#437)
* Fixed various error numerics with incorrect parameters (#425, thanks [@Ascrod](https://github.com/Ascrod)!)
2019-06-03 04:00:08 +02:00
* Fixed STATUSMSG not adding the correct prefix to the channel when relaying the message (#467)
* Fixed bugs in how the `RENAME` command worked with legacy clients (#300, thanks [@jesopo](https://github.com/jesopo)!)
* Fixed a bug where clients could receive tags they hadn't enabled (#434)
* History playback is batched when applicable (#456, thanks [@transitracer](https://github.com/oragono/oragono/issues/456)!)
2019-06-03 04:00:08 +02:00
* Improved display of notices from NickServ etc. in some clients (#496, thanks [@jwheare](https://github.com/jwheare)!)
* Fixed nickname timer warnings not displaying correctly under some circumstances (#449, thanks [@bogdomania](https://github.com/bogdomania)!)
* Fixed confusing output from `/HISTORY` when history is disabled (#429, thanks [@bogdomania](https://github.com/bogdomania)!)
* Fixed confusing output from `/HOSTSERV ON` when no vhost is available (#404, thanks [@bogdomania](https://github.com/bogdomania)!)
* Fixed confusing snomask from `/SANICK` command (#360, thanks [@bogdomania](https://github.com/bogdomania)!)
### Added
* Support for attaching multiple clients to the same nickname (see the manual for details) (#403)
* Support for running Oragono as a Tor hidden service (see the manual for details) (#369)
* Support for IP cloaking (see the manual for details) (#108)
* Support for `znc.in/playback`, which can automate history playback on rejoin for clients that support it (#486)
* User preference system controlling various behaviors (`/msg NickServ help set` for details) (#466)
* Support for the [draft/event-playback](https://github.com/DanielOaks/ircv3-specifications/blob/master+event-playback/extensions/batch/history.md) spec (#457)
* TAGMSG and NICK are now replayable (#457)
* Added the [SETNAME](https://github.com/ircv3/ircv3-specifications/pull/361) command for changing the user's realname (#372)
### Changed
* Registering an account with NickServ is now `/msg NickServ register <password>`, which registers the current nickname as an account, matching other service frameworks (#410)
* Added a compatibility hack to make SASL work with ZNC 1.6.x (#261)
* Support for the ratified [message-tags](https://ircv3.net/specs/extensions/message-tags.html) spec, replacing `draft/message-tags-0.2`
* Support for the ratified [message IDs](https://ircv3.net/specs/extensions/message-ids.html) spec, replacing `draft/msgid`
* Support for the upgraded [oragono.io/maxline-2](https://oragono.io/maxline-2) capability (#433)
* Support for the [draft/resume-0.5](https://github.com/ircv3/ircv3-specifications/pull/306) capability and the associated `BRB` command, replacing `draft/resume-0.3`
* Upgraded support for the `RENAME` command to the [latest draft of the specification](https://github.com/ircv3/ircv3-specifications/pull/308)
* Upgraded support for the `ACC` command to the [latest draft of the specification](https://github.com/DanielOaks/ircv3-specifications/blob/register-and-verify/extensions/acc-core.md) (#453, #455)
* History buffers and replay now include private messages you sent as well as received (#487)
* Removed the `+a` away mode (#468, thanks [@jesopo](https://github.com/jesopo) and [@jwheare](https://github.com/jwheare)!)
2019-06-03 04:00:08 +02:00
* Forcing trailing parameters for legacy compatibility can now be disabled in config (#479)
* `autoreplay-on-join` no longer attempts to replay JOIN and PART lines by default (#474, thanks [@amyspark](https://github.com/amyspark)!)
2019-06-03 04:00:08 +02:00
* snomasks are no longer sent for unregistered clients (#362, thanks [@bogdomania](https://github.com/bogdomania)!)
* `WHOIS` responses no longer include the `690 RPL_WHOISLANGUAGE` numeric (#516)
* `ISON` responses are now sent for services (#488)
* All times are now reported in UTC (#480)
* `NICKSERV ENFORCE` is deprecated in favor of the new `NICKSERV SET ENFORCE` (the old syntax is still available as an alias)
2019-06-03 04:00:08 +02:00
* The `WHO` command is now treated like `PONG` in that it doesn't count as session activity (#485)
* The `NAMES` command now ignores parameters after the first (#534)
### Internal Notes
* Improved build scripts (#409)
* Official builds now use Go 1.12 (#406)
* Minor improvements to the performance of the message building and parsing code (#387)
* Added `oragono.io/nope` capability as a way of encouraging clients to request capabilities safely (#511)
2019-06-03 04:00:08 +02:00
* Made some previously untranslatable strings translatable (#407)
* Fixed latent portability issues with 32-bit architectures (#527)
2016-04-14 01:38:15 +02:00
2019-02-24 08:02:04 +01:00
## [1.0.0] - 2019-02-24
We've finally made it to v1.0.0! With this release, our list of need-to-haves is rounded out, and we reckon the software's ready for production use in smaller networks. slingamn and I have been working with our contributors and translators to prepare a cracker of a release. Thanks to [@csmith](https://github.com/csmith) our [Docker builds](https://hub.docker.com/r/oragono/oragono/) have been updated, with automatic rebuilds as we develop the software. Thanks to [@bogdomania](https://github.com/bogdomania) our translation workflow has been improved a lot.
2019-02-18 09:51:53 +01:00
Highlights include:
2019-02-24 08:02:04 +01:00
* Optional support for storing and replaying message history with the [`draft/resume-0.3` capability](https://github.com/ircv3/ircv3-specifications/pull/306), the draft IRCv3 `CHATHISTORY` command, and a custom `HISTORY` command.
2019-02-18 09:51:53 +01:00
* Better detection of confusing nick/account/channel names.
* User-customizable nickname protection methods.
* An account-only mode in which all clients must have an account and login to it (using SASL) before they can join the server.
2019-02-24 08:02:04 +01:00
Thanks to Mauropek, [@modinfo](https://github.com/modinfo), [@bogdomania](https://github.com/bogdomania), [@Shillos](https://github.com/Shillos), Tony Chen, and Remini for adding new translations. Thanks to [@Ascrod](https://github.com/Ascrod), [@bogdomania](https://github.com/bogdomania), [@csmith](https://github.com/csmith), [@jesopo](https://github.com/jesopo), [@jwheare](https://github.com/jwheare), [@remini1998](https://github.com/remini1998), [@enckse](https://github.com/enckse), and [@iNecas](https://github.com/iNecas) for finding bugs and/or writing new features.
### Config Changes
2019-02-03 22:10:15 +01:00
* `allow-custom-enforcement` key added under `accounts`.
* `allow-plaintext-resume` key added under `server`.
* `history` section added.
* `identlen` key added under `limits`.
* `login-throttling` section added under `accounts`.
2019-02-23 13:06:09 +01:00
* `max-channels-per-account` key added under `channels.registration` (limiting the number of channels that can be registered).
* `max-channels-per-client` key added under `channels` (limiting the number of channels that can be joined).
2019-02-03 22:10:15 +01:00
* `method` key now under `accounts` now allows the value `"optional"`.
2019-02-23 13:06:09 +01:00
* Exemption lists now accept `localhost` as a value, meaning any loopback IPV4, loopback IPV6, or unix domain address.
2019-02-03 22:10:15 +01:00
* Logging type `server` has been added, replacing the `startup`, `rehash`, and `shutdown` types.
2019-02-18 09:51:53 +01:00
* The default logging configuration now logs to stderr only, rather than to both stderr and a file.
2019-02-23 13:06:09 +01:00
* We no longer listen on port `6668` by default (this fixes Docker installs).
### Security
2019-02-18 09:51:53 +01:00
* Added a SASL-only mode in which all clients must authenticate with SASL.
* Added login throttling as a hardening measure against password guessing.
* Configurable limits are imposed on how many channels clients can join or register.
### Added
2019-02-03 22:10:15 +01:00
* Added automagic datastore creation on `oragono run`.
2019-02-23 13:06:09 +01:00
* Added detection and prevention of confusing nicknames, account names, and channel names.
2019-02-03 22:10:15 +01:00
* Added limited message history for connection resuming (to be extended in future).
2019-02-22 06:06:30 +01:00
* Added new Español (es) translation (thanks to Mauropek!).
2019-02-22 06:28:08 +01:00
* Added new Polski (pl) translation (thanks to [@modinfo](https://github.com/modinfo)!).
* Added new Română (ro) translation (thanks to [@bogdomania](https://github.com/bogdomania)!).
* Added new Ελληνικά (el) translation (thanks to [@Shillos](https://github.com/Shillos)!).
2019-02-03 22:10:15 +01:00
* Added new 简体中文 (zh-CN) translation (thanks to Tony Chen and Remini!)).
2019-02-23 13:06:09 +01:00
* Added proposed IRCv3 capability [`draft/setname`](https://github.com/ircv3/ircv3-specifications/pull/361).
* Added subcommands to `NICKSERV`, including:
2019-02-03 22:10:15 +01:00
* `PASSWD` to change account passwords.
* `ENFORCE` to set a specific enforcement mechanism on your nick.
2019-02-18 09:51:53 +01:00
* `SAREGISTER` to allow operators to manually create new user accounts.
### Changed
2019-02-03 22:10:15 +01:00
* `SASL PLAIN` logins now log more correctly.
* Database upgrade failures now provide information about the error that occurred.
2019-02-23 13:06:09 +01:00
* Halfops can now kick unprivileged users.
2019-02-06 02:14:53 +01:00
* Idents (sometimes called "usernames") are now restricted to ASCII, similar to other servers.
2019-02-23 13:06:09 +01:00
* Improved compatibility with ZNC's nickserv module.
2019-02-03 22:10:15 +01:00
* In addition to the founder, now auto-ops (halfop and higher) automatically bypass channel join restrictions.
* Log lines now display time down to milliseconds, instead of just seconds.
* Updated all translation files (thanks to our amazing translators!).
2019-02-23 13:06:09 +01:00
* Updated proposed IRCv3 capability `draft/resume` to [`draft/resume-0.3`](https://github.com/ircv3/ircv3-specifications/pull/306).
2019-02-03 22:10:15 +01:00
* When nick ownership is enabled, users can now select which enforcement mechanism to use with their nickname.
### Fixed
2019-02-22 06:06:30 +01:00
* `INVITE`: Fixed bug where invited users could not join the channel they were invited to (thanks to [@unendingpattern](https://github.com/unendingpattern)!).
2019-02-23 13:06:09 +01:00
* [`oragono.io/maxline`](https://oragono.io/maxline) capability was accidentally disabled, and is now re-enabled.
* `oragono genpasswd` now works when piping input in (fixes Docker installs).
2019-02-03 22:10:15 +01:00
* `PRIVMSG`: Messages sent to multiple clients (such as channel messages) now share the same timestamp (previously each client got a very slightly different time).
* `WHOIS`: Now responds properly for NickServ, ChanServ, etc.
2019-02-22 06:06:30 +01:00
* Channel names with right-to-left characters are now casefolded correctly (thanks to [@remini1998](https://github.com/remini1998)!).
2019-02-23 13:06:09 +01:00
* Fixed handling of CIDR width in connection limiting/throttling.
* Fixed incorrect behavior of `CHANSERV OP` command.
2019-02-03 22:10:15 +01:00
* Fixed incorrect rejection of nickmasks with Unicode RTL nicknames.
2019-02-23 13:06:09 +01:00
* Fixed many responses that violated the specifications (thanks to [@Ascrod](https://github.com/Ascrod), [@bogdomania](https://github.com/bogdomania), [@csmith](https://github.com/csmith), [@jesopo](https://github.com/jesopo), and [@jwheare](https://github.com/jwheare)!).
2019-02-03 22:10:15 +01:00
* Fixed nickname sync issue which could cause clients to fail to see each other.
* Invalid `ISUPPORT` tokens are now explicitly rejected.
* Made `server-time` timestamp format more consistent and safer.
2019-02-03 22:13:21 +01:00
* Oragono now exits with status (1) if it fails to start.
2019-02-03 22:10:15 +01:00
* Prevent logging in multiple times when using `/NS IDENTIFY`.
2019-02-22 06:06:30 +01:00
* Prevented the db handler from automagically creating the database without initializing it (thanks [@enckse](https://github.com/enckse)!). We also now automatically create the datastore on `run`.
2019-02-03 22:10:15 +01:00
2019-02-03 22:20:03 +01:00
### Internal Notes
2019-02-03 22:10:15 +01:00
* `DLINE` and `KLINE` refactored, and expired bans are now removed from the database.
2019-02-23 13:06:09 +01:00
* Command-line parsing was upgraded to match modern best practices (thanks to [@iNecas](https://github.com/iNecas)!).
* Direct responses to client commands are now sent "synchronously", bypassing the sendq.
2019-02-03 22:10:15 +01:00
* Logging system optimised.
* Services handlers refactored.
2019-02-03 22:11:21 +01:00
* Translations are now sent to/PR'd from CrowdIn automagically as we develop the software.
2018-10-15 04:18:23 +02:00
## [0.12.0] - 2018-10-15
There's been a host of changes in the past six months, and this Halloween release has a number of very useful improvements.
For example, passwords are now hashed in a _much_ better way than we did it before (jlatt's original method back from [Ergonomadic](https://github.com/edmund-huber/ergonomadic) was the right way to do things), the database now auto-upgrades for you when it detects a new version, thanks to Slingamn we now have vhosts, and there's been a ton of rewrites under-the-hood to improve stability and performance.
If you have any trouble with this release, please let us know with an issue on our tracker, or by talking to us in `#oragono` on Freenode.
Thanks to [slingamn](https://github.com/slingamn) for a lot of heavy lifting this release and to [vilmibm](https://github.com/vilmibm) for contributing a documentation fix!
2018-04-15 18:28:06 +02:00
### Config Changes
2018-10-15 04:03:38 +02:00
* `allow-multiple-per-connection` key removed from `accounts`.
2018-08-04 19:25:42 +02:00
* `autoupgrade` key added under `datastore`, specifying whether to upgrade to new database versions automatically.
2018-10-15 04:05:22 +02:00
* `bcrypt-cost` key added under `accounts`, to control how strongly account passwords are hashed.
2018-10-15 04:03:38 +02:00
* `stackimpact` section removed from `debug`.
* `unix-bind-mode` key added under `server`, controlling the bind mode used for unix listening sockets.
2018-08-04 19:25:42 +02:00
* `vhosts` section added under `accounts`, configuring our new vhost support.
* new oper capabilities `accreg`, `sajoin`, `vhosts` and `chanreg` added.
2018-04-15 18:28:06 +02:00
### Security
2018-10-15 04:18:23 +02:00
* Password hashing has been improved (with current passwords being automatically upgraded to use the new method).
* Various crashes have been resolved.
2018-04-15 18:28:06 +02:00
### Added
2018-08-04 19:25:42 +02:00
* Added database auto-upgrades.
* Added new subcommands to `ChanServ` including:
* `AMODE` to allow setting persistent channel modes for users.
* `DROP` to unregister a channel.
* Added vhosts (virtual/vanity hosts), controlled via `HostServ`.
2018-04-15 18:28:06 +02:00
### Changed
2018-08-04 19:25:42 +02:00
* `ChanServ` and `NickServ` now show in their help output when commands have been disabled.
2018-10-15 04:03:38 +02:00
* Channel keys and modes are now stored for registered channels.
* Client capability handling rewritten under-the-hood.
* Disabled services commands now show as disabled (rather than being completely hidden).
2018-08-04 19:25:42 +02:00
* Many under-the-hood optimisations (thanks @slingamn!).
* Rehashing is now more consistent and safe.
2018-04-15 18:28:06 +02:00
### Removed
2018-10-15 04:03:38 +02:00
* Removed StackImpact debug support, as we don't find it useful these days.
2018-04-15 18:28:06 +02:00
### Fixed
2018-10-15 04:03:38 +02:00
* Fixed `LUSERS` to make it display correct client count and output correct params (thanks [@moortens](https://github.com/moortens)!.
* Fixed `PROXY` support for IPv6 clients.
* Fixed `SAMODE` crash when using it on a channel you're not joined to.
* Fixed `WHOIS` so that `RPL_WHOISACCOUNT` is now sent correctly.
* Fixed fakelag timing to better match expected values.
* Fixed issue where incoming and outgoing private messages were being incorrectly modified (a space was being added to the end) due to a bug with our protocol handling.
* Fixed password hashing method, with existing passwords being auto-upgraded to use the new method.
2018-04-15 18:28:06 +02:00
2018-04-15 11:47:20 +02:00
## [0.11.0] - 2018-04-15
And v0.11.0 finally comes along! This release has been in the works for almost four months now, with an alpha and beta helping square away the issues.
We're adding a lot of features to improve debugging, better support international users, and make things better for network administrators. Among the new features, you can use the `LANGUAGE` command to set a custom server language (see our [CrowdIn](https://crowdin.com/project/oragono) to contribute), expose a debugging `pprof` endpoint, reserve nicknames with `NickServ`, and force email verification for new user accounts. On the improvements side we have a `CAP REQ` fix, and we now have a manual that contains a nice overview of Oragono's documentation.
If you have any trouble with this release, please let us know with an issue on our tracker, or by talking to us in `#oragono` on Freenode.
Thanks a bunch to everyone for the help with this release especially to our translators and to Slingamn for being an awesome co-maintainer!
2017-12-28 04:41:36 +01:00
### Config Changes
2018-03-31 17:00:04 +02:00
* `callbacks` section added under `accounts/registration`, configuring our new email verification (disabled by default).
* `fakelag` section added, configuring our new fakelag implementation.
* `ips-per-subnet` key renamed to `connections-per-subnet`.
2018-04-11 01:37:09 +02:00
* `motd-formatting` is now enabled by default.
2018-03-31 17:00:04 +02:00
* `nick-reservation` section added under `accounts`, configuring our new nickname ownership abilities.
* `nofakelag` and `unregister` oper classes added.
* `pprof-listener` key added under `debug` (disabled by default).
* `skip-server-password` key added under `accounts`, to better support certain clients.
* `verify-timeout` default value changed from 120 hours to 32 hours under `accounts/registration`.
2017-12-28 04:41:36 +01:00
### Added
2018-04-15 11:47:20 +02:00
* Added 32-bit builds.
2018-03-31 17:00:04 +02:00
* Added a debug pprof endpoint, which is disabled by default and can be exposed in the config.
2018-02-11 00:24:20 +01:00
* Added a manual to our documentation! This is primarily where we'll be adding user-facing information and instructions from now on.
2018-04-11 01:37:09 +02:00
* Added current running git commit to the sent version string.
2018-03-31 17:00:04 +02:00
* Added fakelag, so that the server can slow down clients hitting it too aggressively. Disabled by default while we work out the kinks and the specific settings (thanks @slingamn!).
2018-02-11 00:24:20 +01:00
* Added IRCv3 capability [`batch`](https://ircv3.net/specs/extensions/batch-3.2.html) and draft capability [`draft/labeled-response`](https://ircv3.net/specs/extensions/labeled-response.html).
* Added listening support for unix sockets.
2018-01-26 11:00:17 +01:00
* Added new Brazilian Portuguese translation (thanks to [Alexandre Oliveira](https://github.com/RockyTV)!)).
2018-02-11 00:24:20 +01:00
* Added new French translation (thanks to [Joshua](https://github.com/joshk0)!).
2018-04-01 10:53:50 +02:00
* Added new Norwegian translation (thanks to Morten!).
2018-04-01 01:47:10 +02:00
* Added new subcommands to `CHANSERV`, including:
* `OP` to op yourself or the given user (can only be run by channel founders).
2018-03-31 17:00:04 +02:00
* Added new subcommands to `NICKSERV`, including:
* `DROP` to de-associate a nickname from your current account.
* `GHOST` to remove the given client (if they're logged in with your user account).
* `GROUP` to associate a nickname with your current account.
* `IDENTIFY` to login to an account.
* `INFO` to see information about the given (or your own) account.
* `REGISTER` to register an account.
2018-04-01 01:47:10 +02:00
* `UNREGISTER` to delete your account.
* Added new Turkish translation (thanks to [Yaser](https://crowdin.com/profile/Apsimati)!).
2018-02-11 00:24:20 +01:00
* Added proposed IRCv3 capabilities [`draft/languages`](https://gist.github.com/DanielOaks/8126122f74b26012a3de37db80e4e0c6) and [`draft/resume`](https://github.com/ircv3/ircv3-specifications/pull/306).
2018-03-31 17:00:04 +02:00
* Added the ability to associate multiple nicknames with your account, and enforce nickname ownership.
* Added the ability to force email verification when users register accounts.
2018-01-21 03:53:22 +01:00
* Added user modes, including:
* `B`: Mark yourself as a bot, and display that you're a bot in WHOIS.
2017-12-28 04:41:36 +01:00
### Changed
2018-04-11 01:37:09 +02:00
* `genpasswd` now requires that you confirm the input passphrase.
2018-01-03 15:28:06 +01:00
* Message IDs are now much shorter and easier to read  down from 39 characters to 16 while preserving a very similar gaurantee of uniqueness (thanks [@prawnsalad](https://github.com/prawnsalad) for bringing up this issue).
2017-12-28 04:41:36 +01:00
### Fixed
2018-01-03 15:28:06 +01:00
* We now correctly suspend registration when receiving a `CAP REQ`, as per [the spec](https://ircv3.net/specs/core/capability-negotiation-3.1.html).
2018-03-31 17:00:04 +02:00
* We now properly cut off clients who try to send us too much data at once.
2017-12-28 04:41:36 +01:00
2017-12-26 03:43:37 +01:00
## [0.10.3] - 2017-12-26
This patch fixes a couple bugs, updates cap/isupport token names in response to spec changes, and allows unprivileged users to list channel bans. Ah, DLINE and KLINE also store oper names, so you can see who set those pesky bans later on!
2017-11-13 13:52:48 +01:00
2017-12-26 03:43:37 +01:00
Overall, a fairly standard patch that just improves things. No config changes, no database changes.
2017-11-13 13:52:48 +01:00
2017-12-26 03:43:37 +01:00
Also, Merry Christmas and Happy Holidays!
2017-11-13 13:52:48 +01:00
### Added
2017-12-26 03:38:54 +01:00
* `DLINE`/`KLINE`: We now save the name of whichever oper set the ban (and display it later).
2017-11-13 13:52:48 +01:00
### Changed
2017-12-26 03:38:54 +01:00
* `draft/maxline` capability is now [`oragono.io/maxline`](https://oragono.io/maxline).
* `WHO`: First parameter now must be a mask or channel name, cannot be ommitted.
* Casemapping is now advertised using the `UTF8MAPPING` token, matching the new spec changes.
* We now allow unprivileged users to list channel bans.
2017-11-13 13:52:48 +01:00
### Fixed
2017-12-26 03:38:54 +01:00
* Fixed a bug around removing channel bans.
* Fixed a client timeout bug.
2017-11-13 13:52:48 +01:00
2017-11-13 13:46:50 +01:00
## [0.10.2] - 2017-11-13
This patch release fixes a bunch of crashes that were introduced in the last release, `0.10.1`.
2017-11-13 03:45:10 +01:00
2017-11-13 13:46:50 +01:00
If you have `0.10.1` running, replace it with this release.
2017-11-13 03:45:10 +01:00
### Security
2017-11-13 13:46:50 +01:00
* Fixed lots of miscellaneous crashes.
2017-11-13 03:45:10 +01:00
2017-11-09 06:07:40 +01:00
## [0.10.1] - 2017-11-09
This patch release of Oragono fixes a fairly big channel mode bug, where users could set channel modes when they weren't actually allowed to.
2017-10-29 05:35:15 +01:00
### Config Changes
2017-11-09 06:07:40 +01:00
* `recover-from-errors` key added under `debug`, which enables recovery from client-caused errors (at the cost of possible server instability).
2017-10-29 05:35:15 +01:00
### Security
2017-11-09 06:07:40 +01:00
* Clients could set channel modes when they weren't supposed to be able to.
2017-10-29 05:35:15 +01:00
### Added
2017-11-09 06:07:40 +01:00
* We now allow recovering from client-caused panics.
2017-10-29 05:35:15 +01:00
### Fixed
2017-11-09 06:07:40 +01:00
* `SAMODE` now lists other users' modes.
* Removed some possible crashes and races.
2017-10-29 05:35:15 +01:00
2017-10-23 04:51:42 +02:00
## [0.10.0] - 2017-10-23
There has been a bunch of new changes in this release! From [`sts`](http://ircv3.net/specs/extensions/sts.html) being ratified to supporting [`WEBIRC`](ircv3.net/specs/extensions/webirc.html) to rewriting a whole lot of our internals, 0.10.0 represents a real step forward in terms of where Oragono's going.
In addition to the new features, this issue fixes a bunch of fairly large bugs (such as an errant `INVITE` being able to crash the server, the `+mR`channel modes not working at all, and making rehashing safer).
I'd like to thank @slingamn for really contributing a lot in this release! He's done a whole bunch of the internal work, cleaned up the code, and in general just been a great help while developing. Running Oragono on an actual network has really helped find and track down some serious bugs, and lead us to some much-needed improvements.
2017-09-28 22:50:09 +02:00
### Config Changes
2017-10-08 12:36:39 +02:00
* `motd-formatting` key added under `server`, which supports MOTD formatting characters.
* `rest-api` section removed from `server` (since we no longer support the Rest API).
2017-10-15 10:21:47 +02:00
* `webirc` section added under `server`, which specifies the gateways can use the `WEBIRC` command.
2017-10-08 12:36:39 +02:00
* `ws-listen` key removed from `server` (since we no longer support websocket ports).
2017-10-15 05:03:43 +02:00
* Connection limits and connection throttling has become more relaxed by default.
2017-09-28 22:50:09 +02:00
### Security
2017-10-15 05:03:43 +02:00
* `INVITE`: Fixed a server crash when sending an invite for a channel that doesn't exist (thanks @josephbisch for telling me about the bug!).
2017-09-28 22:50:09 +02:00
### Added
2017-10-15 10:21:47 +02:00
* Added support for the [`WEBIRC`](ircv3.net/specs/extensions/webirc.html) command, allowing gateways to connect.
2017-10-15 05:03:43 +02:00
* We now list XLINEs with `DLINE LIST` and `KLINE LIST`.
2017-10-08 12:36:39 +02:00
* We now support using escaped formatting codes in the MOTD (tl;dr easy colors, bold and italics).
2017-09-28 22:50:09 +02:00
### Changed
2017-10-01 07:27:47 +02:00
* D-LINE and K-LINE code is now cleaner under the hood and less likely to crash.
2017-10-15 05:03:43 +02:00
* Ident (looking up usernames) now times out a whole lot quicker, meaning you connect to the server more quickly.
* IRCv3 capability `draft/sts` has been renamed to `sts`, since it's now been ratified.
2017-10-01 07:27:47 +02:00
* Rehashing is now safer.
2017-10-08 12:36:39 +02:00
* Server opers could always speak on channels, even when they shouldn't be able to. Now they aren't above the law.
2017-09-28 22:50:09 +02:00
### Removed
2017-10-01 07:27:47 +02:00
* Removed the `draft/message-ids` cap since... it doesn't actually exist. The feature is now enabled by default when clients request the `draft/message-tags-0.2` capability, as written in the [Message IDs spec](http://ircv3.net/specs/extensions/message-ids.html).
* Removed websocket support (conflicted with existing larger IRCd's implementations and not used by any real clients).
2017-10-08 12:36:39 +02:00
* REST API has been removed, until we can build up the web interface in parallel with it.
2017-09-28 22:50:09 +02:00
### Fixed
2017-10-08 12:36:39 +02:00
* `AWAY` was sending an incorrect mode string, and now sends the correct mode string (thanks @jwheare for pointing this out).
* Fixed some bugs with our `MONITOR` implementation which meant we weren't returning the right info to clients.
2017-10-01 07:27:47 +02:00
* The Moderated (`+m`) and RegisteredOnly (`+R`) channel modes could not be set. Now they can be set.
2017-09-28 22:50:09 +02:00
2017-09-28 07:49:10 +02:00
## [0.9.1] - 2017-09-28
This is a patch release to fix compatibility with Irssi and resolve some issues! Thanks very much @dequis, @slingamn and squigz for the help and for bringing up the issues.
2017-09-25 16:45:42 +02:00
### Added
2017-09-28 07:49:10 +02:00
* Allow the `MODE b` syntax, which certain clients use to check lists.
2017-09-25 16:45:42 +02:00
### Changed
2017-09-28 07:49:10 +02:00
* `QUIT`: We now send the actual quit message to other users.
2017-09-25 16:45:42 +02:00
### Fixed
2017-09-28 07:49:10 +02:00
* Fix incorrectly forwarding `AWAY` messages to clients without `away-notify`.
* Fix incorrect login check which prevented account registration.
* Fix `ERR_NOSUCHNICK` numerics (we weren't sending the nick correctly).
2017-09-25 16:45:42 +02:00
2017-09-25 03:29:43 +02:00
## [0.9.0] - 2017-09-25
So many fixes! You can now set the default modes for new channels, use HAProxy again, use the umode `+R` to protect yourself against unwanted PMs, and we now warn on configurations/setups that look incorrect!
In addition, this release makes testing easier, makes sure we better adhere to the SASL specification and also removes some memory leaks around the place. All in all, just a solid upgrade and less bugs across the board.
2017-06-30 03:04:24 +02:00
### Config Changes
2017-09-25 03:09:58 +02:00
* Added `allow-multiple-per-connection` flag under `accounts/registration`, which can be used for account setup by testing software. **Never enable it in production.**
* Added `default-modes` key under `channels`, which is a standard modestring that's applied to new channels.
* Added `proxy-allowed-from` key under `server`, which is a list of hostnames/IPs that the HAProxy `PROXY` command can be used from.
2017-06-30 03:04:24 +02:00
### Security
2017-09-25 03:29:43 +02:00
* Clients could use a nickname that isn't sane. This has the possibility of allowing clients to subvert our admin commands and monitoring features.
2017-06-30 03:04:24 +02:00
### Added
* Added a warning if the server's not listening on a TLS port or if it's not listening for TLS connections on port 6697.
* Added a warning if you're trying to run from source or an otherwise unreleased version.
* Added INFO.md document to better explain the design decisions behind Oragono, exactly how to rehash, etc.
2017-09-25 03:09:58 +02:00
* Added support for HAProxy's PROXY v1 command, useful for certain installations.
* Added user modes, including:
* `R`: Only receive private messages and notices from other registered users.
2017-06-30 03:04:24 +02:00
### Fixed
2017-09-06 06:41:11 +02:00
* Fixed a bug where certain clients couldn't connect as we were incorrectly rejecting their valid PTR record (thanks @slingamn!).
2017-09-25 03:29:43 +02:00
* Fixed a crash around monitoring clients.
2017-07-27 15:58:37 +02:00
* Fixed a memory leak in our socket code when clients disconnect.
* Fixed a SASL bug that resulted in certains clients getting caught in a cycle of trying (and failing) to abort authentication.
* Fixed an instance where clients could use a nickname that isn't sane (thanks @euank!).
* Fixed an issue where certain clients who connect incorrectly would stay connected (thanks @euank!).
2017-09-25 03:09:58 +02:00
* Fixed how we handle particularly unique Unicode strings (we now ensure they stabilize while casefolding).
* Fixed some issues around rehashing, where listeners wouldn't rehash in time and could crash (thanks @slingamn!).
2017-06-30 03:04:24 +02:00
2017-06-29 17:14:50 +02:00
## [0.8.2] - 2017-06-30
Just a patch release to fix a bug! The bug that's been fixed prevented you from modifying channel privilidges at all, which isn't great. With this release, now you can do so again!
2017-06-29 17:14:50 +02:00
This is one I'm gonna have to add to [the testcases](https://github.com/DanielOaks/irctest), to make sure it doesn't happen again.
### Fixed
2017-06-29 17:14:50 +02:00
* Fixed a bug where users could not give other users operator/halfop/voice in channels.
2017-06-26 07:57:38 +02:00
## [0.8.1] - 2017-06-26
Lots of quality-of-life fixes, improved oversight for opers, and a proposed channel renaming command!
2017-06-26 07:57:38 +02:00
With this release, we're moving to a proper [Github organisation](https://github.com/oragono), becoming more consistent with other IRCds, and introducing a bunch more snomasks. In addition, when setting `DLINE` and `KLINE` bans, you can also kill all clients who match the ban by supplying the parameter `ANDKILL` when you set the ban.
2017-06-26 07:57:38 +02:00
Channel `LIST` filtering is now more useful, and I'll keep expanding this in future releases. As well, there's been some useful extensions to `WHOIS`, and a bug with `SANICK` fixed thanks to @lbeziaud. @enckse has also added Oragono to the Arch AUR, to make it easier to install on that distro.
Thanks to everyone for suggesting improvements and reporting issues! There's a lot to do as we move forward, and I have a pretty decent plan of where to go next.
### Added
2017-06-11 15:46:15 +02:00
* Added proposed channel rename capability [draft/rename](https://github.com/ircv3/ircv3-specifications/pull/308).
* Send a bunch more server notice masks, now including:
* `j`: Channel registration.
* `k`: Kills, including those resulting from `DLINE`s and `KLINE`s.
* `n`: Nick changes.
* `o`: Clients opering-up.
* `q`: Clients quitting.
* `u`: Account registration and login.
2017-06-11 18:18:49 +02:00
* `x`: Setting and removing `DLINE`/`KLINE`.
### Changed
* `DLINE` and `KLINE`: Added `ANDKILL` parameter to also kill all clients that match the ban.
2017-06-11 15:46:15 +02:00
* `LIST`: Implement extended list conditions `U` (which filters the channels by user count).
2017-06-18 16:29:32 +02:00
* Renamed a number of dependency libraries, and changed Oragono to its' own organisation (only useful if you're building Oragono from source).
2017-06-24 19:57:57 +02:00
* `WHOIS`: Show the target's real IP address if you're whoising yourself or you're an oper.
* `WHOIS`: Show whether the target has connected securely using TLS.
### Removed
2017-06-24 19:57:57 +02:00
* Removed the `JOIN 0` command (matching what InspIRCd has done here), since this is easily abusable.
### Fixed
2017-06-18 16:29:32 +02:00
* `SANICK` works properly now (thanks @lbeziaud!).
2017-05-09 14:01:14 +02:00
## [0.8.0] - 2017-05-09
Debugging! Fixes! Better realtime monitoring!
This release isn't too exciting, but packs large improvements to how we handle floods and similar issues. As well, the introduction of snomasks (take a look at `/HELPOP snomasks`) should help opers keep a basic view over their server during use. Only the `"c"` (connects) snomask is active right now, but others will be added and extended in future releases.
### Config Changes
2017-04-30 04:45:22 +02:00
* Added `debug` section containing additional debug settings.
2017-05-08 01:15:16 +02:00
* Added `modes` key on oper config, for setting modes on oper-up.
2017-05-01 10:51:37 +02:00
* Added ability to log to `stdout` in logger methods.
### Added
2017-05-01 10:51:37 +02:00
* Added ability to log to stdout.
2017-04-30 04:45:22 +02:00
* Added ability to use StackImpact profiling.
2017-05-08 01:15:16 +02:00
* Added initial server notice masks (snomasks).
### Changed
2017-04-30 04:45:22 +02:00
* Socket code rewritten to be a lot faster and safer.
2017-05-09 13:33:15 +02:00
* Updated account registration to use the latest proposed syntax (now being `/ACC REGISTER` instead of `/REG CREATE`).
### Fixed
2017-05-09 13:33:15 +02:00
* Clients now timeout properly if they don't complete connection registration.
* Word wrapping (with `draft/maxline`) no longer randomly drops characters.
2017-04-17 13:16:22 +02:00
## [0.7.2] - 2017-04-17
This is a patch release of Oragono to fix discovered bugs and crashes. I'll also be implementing some more stringent checks before pushing releases after this, to ensure these same sort of bugs don't happen again.
### Security
2017-04-17 13:16:22 +02:00
* Fixed a bug where any user joining an unregistered channel was given chanop status (thanks @vegax87).
### Fixed
2017-04-17 13:16:22 +02:00
* Fixed a number of various crashes and races.
2017-03-28 09:33:08 +02:00
## [0.7.1] - 2017-03-28
This is a quick patch release of Oragono to work around a discovered bug.
### Security
2017-03-28 09:33:08 +02:00
* Fixed a bug where non-logged in users could register channels. Bleh.
2017-03-27 06:53:50 +02:00
## [0.7.0] - 2017-03-27
This release brings channel registration with ChanServ, logging improvements, and a whole host of improvements across the board.
Thanks to a suggestion by `dp-` on our channel (`#oragono` on Freenode), the socket handling code has been overhauled to allow for a larger number of more stable connections. As well, improved testing has brought with it a bunch of strange hang and crash fixes, which means that Oragono should be more stable than ever.
Channel registration is really cool. Essentially, you register the channel with `/CS REGISTER` as you would on any network, and then all topic changes, the `+b/+e/+I` lists, and your founder status, are all remembered and re-applied when the server's restarted.
### Config Changes
* `channels` section added to control channel registration.
2017-03-06 04:08:46 +01:00
* `logging` key under `server` removed, replaced with `logging` section.
2017-03-27 06:41:50 +02:00
* `max-sendq` key added under `server`.
2017-03-09 10:20:35 +01:00
* `registration` and `authentication-enabled` keys moved under `accounts` section.
2017-03-27 06:41:50 +02:00
* `samode` capability added to oper capabilities.
2017-03-09 10:20:35 +01:00
* `sts` section added under `server`.
### Added
* Added `ChanServ` service, to allow channel registration.
2017-01-23 17:44:35 +01:00
* Added `USERHOST` command (thanks @vegax87).
2017-03-27 06:41:50 +02:00
* Added `SAMODE` command.
* Added draft IRCv3 capability [draft/sts](http://ircv3.net/specs/core/sts-3.3.html).
### Changed
2017-03-23 03:17:31 +01:00
* `DLINE` and `KLINE` now let you specify years, months and days (e.g. `1y12m30d`) in durations.
* Logging is now much more useful, displays colours and can log to disk.
* Socket handling has been rewritten, which means we should support more connections more effectively (thanks dp- for the suggestion!).
### Fixed
2017-03-27 06:41:50 +02:00
* Fixed a bunch of small hangs and crashes.
* Fixed an account issue where clients could login to multiple accounts at once.
2017-03-27 06:41:50 +02:00
* Fixed an issue where server times were incorrect (thanks @martinlindhe!).
* Fixed halfops not being able to talk during moderated mode (`+m`).
* Fixed issues that prevented rehashing after the first rehash had gone through successfully.
* Fixed the inability to view channel ban, ban exception, and invite exception lists.
2017-01-18 23:12:59 +01:00
## [0.6.0] - 2017-01-19
We've added a ton of new features in this release! Automated connection throttling, the ability to `KLINE`, updated casemapping and line-length specifications.
2017-01-18 23:12:59 +01:00
I've also started including a new section in the changelog called **Config Changes**, which should help you find what you need to update across releases.
### Config Changes
* `enabled` key added under the `connection-limits` section.
* `connection-throttling` section added under `server`.
* `linelen` section added under `limits`.
### Added
2017-01-11 13:52:15 +01:00
* Added ARM build (for Raspberry PIs and similar).
2017-01-13 14:34:26 +01:00
* Added automated connection throttling! See the new `connection-throttling` section in the config.
2017-01-12 12:20:06 +01:00
* Added `KLINE` and `UNKLINE` commands. Complementing `DLINE`'s per-IP and per-network bans, this lets you ban masks from the server.
2017-01-18 23:12:59 +01:00
* Added `LUSERS` command (thanks @vegax87).
2017-01-14 10:53:27 +01:00
* Added draft IRCv3 capabilities [`draft/message-tags-0.2`](http://ircv3.net/specs/core/message-tags-3.3.html) and [`draft/message-ids`](http://ircv3.net/specs/extensions/message-ids.html).
* Added proposed IRCv3 capability [`draft/maxline`](https://github.com/ircv3/ircv3-specifications/pull/281).
### Changed
2017-01-13 23:02:24 +01:00
* Changed casemapping from "rfc7700" to "rfc7613", to match new draft spec.
2017-01-13 14:34:26 +01:00
* Connection limits can now be freely enabled or disabled. If updating, check the new `enabled` flag under the `connection-limits` section of the config.
### Fixed
2017-01-11 13:52:15 +01:00
* Fixed an issue where `UNDLINE` didn't save across server launches.
* Removed several race conditions which could result in server panics.
2017-01-18 23:12:59 +01:00
* WHOIS: Multiple channels now appear in a single reply (thanks @vegax87).
2016-12-10 13:24:49 +01:00
## [0.5.0] - 2016-12-10
This release includes a ton of fixes, as well as the ability to ban IP addresses from your network with the `DLINE` command!
2016-12-10 13:24:49 +01:00
As well, there are some major fixes with the libraries Oragono depends on, which fix various DoS attacks, crashes and timeouts. In short, this release is more stable and fixes a bunch of issues.
This release also updates the database, so be sure to run the `oragono upgradedb` command.
### Added
* Added ability to ban IP addresses and networks from the server with the `DLINE` and `UNDLINE` commands.
* Added alpha REST API (intended primarily for use with a future web interface to manage accounts, DLINEs, etc).
### Changed
* Database upgraded to make handling accounts simpler.
2016-12-01 09:16:25 +01:00
* Only give chanop (`@`) on channel join, not channel founder (`~`). We'll do channel founder and all on registered chans only.
### Fixed
2017-01-11 13:52:15 +01:00
* Fixed a bunch of bugs around setting nicknames on join.
* Fixed crash when using STATUSMSG-like messaging.
* Fixed crash with gIRC-Go ircmsg library we depend on.
* Fixed not sending `MODE` changes to all clients in a channel.
* Fixed timeout issue with go-ident library we depend on (which caused hangs on connection).
* Prevented a DoS related to lots of clients connecting at once.
* Removed races around setting and changing `NICK`s, to be more safe.
2016-12-01 09:16:25 +01:00
* Send channel `NOTICE`s properly.
2016-11-03 08:25:10 +01:00
## [0.4.0] - 2016-11-03
This release packs a more extensive oper privelege framework, bugfixes for capabilities/modes, support for new RP commands and more `RPL_ISUPPORT` tokens. In general, a bunch of new features and bugfixes to make using Oragono more smooth.
### Added
* Added automatic client connection limiting, similar to other IRCds.
2016-11-03 08:25:10 +01:00
* Added operator classes, allowing for more finely-grained permissions for operators.
2017-01-11 13:52:15 +01:00
* Added roleplaying commands, both inside channels and between clients.
2016-10-23 16:50:18 +02:00
* Length of channel mode lists (ban / ban-except / invite-except) is now restricted to the limit in config.
* Support `MAXLIST`, `MAXTARGETS`, `MODES`, `TARGMAX` in `RPL_ISUPPORT`.
* Added support for IRCv3 capability [`chghost`](http://ircv3.net/specs/extensions/chghost-3.2.html).
### Changed
* In the config file, "operator" changed to "opers", and new oper class is required.
### Fixed
2016-11-03 08:25:10 +01:00
* Fixed being able to change modes when not an operator.
* Fixed bug where `HELP` wouldn't correctly display for operators, and added more help topics.
* Fixed bug where you would always have certain capabilities enabled.
2016-11-03 08:25:10 +01:00
* Fixed display of large `MONITOR` lists.
2016-10-22 16:56:13 +02:00
## [0.3.0] - 2016-10-23
We now support dynamically reloading the config file, along with some new IRCv3 capabilities and some fixes.
The `REHASH` changes are fairly extensive here, but should now be stable (this also fixes a denial of service possible with the old code).
### Security
2016-10-22 14:16:55 +02:00
* Prevent a denial of service where the server would stop accepting connections.
### Added
2016-10-19 13:38:31 +02:00
* Added `REHASH` command.
2016-10-22 16:45:51 +02:00
* Added ability to message channel members with a specific privelege (i.e. support for `STATUSMSG`).
* Added ability to enable and disable SASL.
2016-10-22 14:29:01 +02:00
* Added support for IRCv3 capabilities [`cap-notify`](http://ircv3.net/specs/extensions/cap-notify-3.2.html) and [`echo-message`](http://ircv3.net/specs/extensions/echo-message-3.2.html).
### Changed
2016-10-22 16:56:13 +02:00
* Server operators no longer have permissions to do everything in channels.
### Fixed
2016-10-22 16:56:13 +02:00
* MODE: Fixed issue where channel privelege changes returned incorrectly.
2016-10-16 13:36:21 +02:00
## [0.2.0] - 2016-10-16
Improved compatibility, more features.
2016-09-18 03:48:41 +02:00
2016-10-16 13:36:21 +02:00
Now comes with a new proper Unicode-capable casemapping and integrated help!
2016-09-18 03:48:41 +02:00
### Added
2016-10-16 05:54:09 +02:00
* Added integrated help (with the `/HELP` command).
* Added support for IRCv3.2 [capability negotiation](http://ircv3.net/specs/core/capability-negotiation-3.2.html) including CAP values.
2016-10-16 12:18:33 +02:00
* Added support for IRCv3 capabilities [`account-notify`](http://ircv3.net/specs/extensions/account-notify-3.1.html), [`invite-notify`](http://ircv3.net/specs/extensions/invite-notify-3.2.html), [`monitor`](http://ircv3.net/specs/core/monitor-3.2.html), [`sasl`](http://ircv3.net/specs/extensions/sasl-3.2.html), and draft capability [`message-tags`](http://ircv3.net/specs/core/message-tags-3.3.html) as `draft/message-tags`.
2016-09-18 03:48:41 +02:00
### Changed
2016-10-11 15:54:13 +02:00
* Casemapping changed from custom unicode mapping to preliminary [rfc7700](https://github.com/ircv3/ircv3-specifications/pull/272) mapping.
2016-09-18 03:48:41 +02:00
### Removed
* Removed channel persistence with the `+P` mode (not too useful as currently implemented, to be replaced later).
* Removed the `PROXY` command (breaks our TLS user mode, and our integrated support for TLS should be fine).
2016-09-18 03:48:41 +02:00
2016-09-18 01:15:23 +02:00
## [0.1.0] - 2016-09-18
2016-04-14 07:22:53 +02:00
Initial release of Oragono!
2016-04-14 01:38:15 +02:00
### Security
* PROXY command is now restricted appropriately.
* Nicknames, usernames and channel names that break the protocol are no longer allowed.
* Default channel modes set to restrict new channels more appropriately by default.
2016-04-14 01:38:15 +02:00
### Added
2016-09-18 01:02:00 +02:00
* YAML config file format.
* buntdb key-value store for persistent data.
* Native SSL/TLS support (thanks to @edmand).
* Ability to generate testing certificates from the command line.
* Support for looking up usernames with [ident](https://tools.ietf.org/html/rfc1413) on client connection.
* [`RPL_ISUPPORT`](http://modern.ircdocs.horse/#rplisupport-005) numeric as advertised by most other IRCds today.
* Ability to parse complex mode change syntax commonly used these days (i.e. `+h-ov dan dan dan`).
* User mode for clients connected via TLS (`+Z`).
* Ability to register and login to accounts (with passphrase or certfp).
2016-10-16 05:54:09 +02:00
* Added support for IRCv3 capabilities [`account-tag`](http://ircv3.net/specs/extensions/account-tag-3.2.html), [`away-notify`](http://ircv3.net/specs/extensions/away-notify-3.1.html), [`extended-join`](http://ircv3.net/specs/extensions/extended-join-3.1.html), [`sasl`](http://ircv3.net/specs/extensions/sasl-3.1.html), [`server-time`](http://ircv3.net/specs/extensions/server-time-3.2.html), and [`userhost-in-names`](http://ircv3.net/specs/extensions/userhost-in-names-3.2.html).
2016-04-14 01:38:15 +02:00
### Changed
2016-09-18 01:02:00 +02:00
* Channel creator (`O`) privilege changed to founder/admin/halfops (`qah`) privileges.
* Private (`+p`) channel mode changed to secret (`+s`), to match what's used by servers today.
* Default channel modes changed to (`+nt`), matching most other IRCds.
* CLI commands and arguments made more consistent with typical software.
* Usernames set by the `USER` command now start with `"~"` (to work with new ident support).
2016-08-14 04:24:29 +02:00
* Renamed `ONICK` command to `SANICK` to be more consistent with other IRCds.
* Made maximum nickname and channel name lengths configurable.
* Made maximum `WHOWAS` entries configurable.
2016-04-14 01:38:15 +02:00
2016-04-14 07:22:53 +02:00
### Removed
2016-08-14 04:24:29 +02:00
* Removed gitconfig configuration format [replaced with YAML].
* Removed sqlite database [replaced with buntdb key-value store].
* Removed `THEATER` command (it broke and I'm not that interested in putting the work in to get it working again with the aim of this project. PRs accepted).
2016-04-14 01:38:15 +02:00
2016-04-14 07:22:53 +02:00
### Fixed
2016-08-14 04:24:29 +02:00
* Fixed clients no longer being able to send commands after a single command errored out.
* CAP: Registration is now properly suspended during CAP negotiation.
2016-09-18 01:02:00 +02:00
* CAP: Remove CAP CLEAR (recommended in IRCv3 3.2), and allow capability negotiation after registration.
2016-04-14 13:24:40 +02:00
* MODE: Fixed `<modestring>` evaluation (we were parsing all ungrabbed parameters as a modestring, when it is actually only the first param).
2016-09-18 01:02:00 +02:00
* MODE: New-style mode change syntax (with both adding and removing modes in a single MODE command) is now parsed properly.
* MOTD: Now store MOTD in-memory rather than on-disk, and don't limit it to 80 characters per line (not required with today's servers or clients).
2016-04-21 02:25:00 +02:00
* NICK: Restrict nicknames that break the protocol.
* USER: Restrict usernames that break the protocol.
2016-09-18 01:02:00 +02:00
* PROXY: Restrict to specified hostnames only.
* WHOIS: Include the required `<nick>` param on `RPL_ENDOFWHOIS`.
* WHOIS: Hide hidden channels in WHOIS responses.