ergo/CHANGELOG.md

51 lines
2.8 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.
This project adheres to [Semantic Versioning](http://semver.org/). For the purposes of versioning, we consider the "public API" to refer to the configuration files, CLI interface and database format.
2016-04-14 01:38:15 +02:00
## Unreleased
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-04-14 07:22:53 +02:00
* Added YAML config file format.
2016-04-21 02:25:00 +02:00
* Added native SSL/TLS support (thanks to @edmand).
2016-06-15 11:31:39 +02:00
* Added ability to generate certificates from the command line.
* Can now lookup usernames with ident on client connection.
2016-04-14 07:22:53 +02:00
* We now advertise the [`RPL_ISUPPORT`](http://modern.ircdocs.horse/#rplisupport-005) numeric.
2016-04-14 10:43:19 +02:00
* Parse new mode change syntax commonly used these days (i.e. `+h-ov dan dan dan`).
2016-06-28 17:09:07 +02:00
* User mode for clients connected via TLS (`+Z`).
* Support for [`extended-join`](http://ircv3.net/specs/extensions/extended-join-3.1.html).
2016-08-13 14:04:21 +02:00
* Support for [`server-time`](http://ircv3.net/specs/extensions/server-time-3.2.html).
* Support for [`userhost-in-names`](http://ircv3.net/specs/extensions/userhost-in-names-3.2.html).
2016-04-14 01:38:15 +02:00
### Changed
2016-04-14 07:22:53 +02:00
* Added channel Founder/Admin/Halfops (`qah`) privileges, and removed channel creator (`O`) privilege (from RFC2812, not used in the real world).
* Added secret (`+s`) channel mode to replace private (`+p`) for hiding channels, since everything else uses `+s` over `+p` these days.
2016-04-21 14:14:16 +02:00
* Default channel modes are now (`+nt`), matching most other IRCds.
2016-04-14 07:22:53 +02:00
* CLI argument names made more consistent with typical software.
2016-06-20 02:04:53 +02:00
* ONICK: Renamed to SANICK to be more consistent with other IRCds.
* USER: Prepend usernames set by the USER command with `"~"`.
2016-04-14 01:38:15 +02:00
2016-04-14 07:22:53 +02:00
### Removed
* Gitconfig config format completely removed and replaced with YAML.
* USER: No longer parse out the second and third parameters.
2016-04-14 01:38:15 +02:00
2016-04-14 07:22:53 +02:00
### Fixed
* CAP: Registration is now properly suspended during CAP negotiation.
2016-04-14 01:38:15 +02:00
* CAP: Remove CAP CLEAR, 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).
* MODE: New-style mode change syntax (with both adding and removing modes in a single 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.
2016-04-21 08:40:58 +02:00
* PROXY: Restrict to specified hostnames only.
2016-04-21 02:25:00 +02:00
* USER: Restrict usernames that break the protocol.
* WHOIS: Include the required `<nick>` param on `RPL_ENDOFWHOIS`.
* WHOIS: Hide hidden channels in WHOIS responses.
* Fixed clients no longer being able to send commands after a single command errored out.