Browse Source

update changelog

tags/v2.0.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
8a0c417206
1 changed files with 96 additions and 0 deletions
  1. 96
    0
      CHANGELOG.md

+ 96
- 0
CHANGELOG.md View File

@@ -1,6 +1,102 @@
1 1
 # Changelog
2 2
 All notable changes to Oragono will be documented in this file.
3 3
 
4
+## [2.0.0-rc1] - 2020-03-01
5
+We're pleased to be publishing the release candidate for Oragono 2.0.0 (the official release should follow in a week or two). Version 2.0.0 is a major update with a wide range of enhancements and fixes. Major highlights include:
6
+
7
+* Support for storing chat history in a MySQL backend
8
+* Full "bouncer" functionality, including "always-on" clients that remain present on the server even when disconnected
9
+* LDAP support contributed by [@mattouille](https://github.com/mattouille)
10
+* Support for the ratified [labeled-response](https://ircv3.net/specs/extensions/labeled-response.html) IRCv3 capability
11
+* Enhanced support for Kubernetes
12
+
13
+Many thanks to [@csmith](https://github.com/csmith), [@mattouille](https://github.com/mattouille), and [@xPaw](https://github.com/xPaw) for contributing patches, to [@csmith](https://github.com/csmith) and [@wrmsr](https://github.com/wrmsr) for contributing code reviews, to [@bogdomania](https://github.com/bogdomania), [@brenns10](https://github.com/brenns10), [@daurnimator](https://github.com/daurnimator), [@ekianjo](https://github.com/ekianjo), horseface, [@ivucica](https://github.com/ivucica), [@jesopo](https://github.com/jesopo), [@jwheare](https://github.com/jwheare), KoDi, lover, [@mabgnu](https://github.com/mabgnu), [@poVoq](https://github.com/poVoq), [@TETYYS](https://github.com/TETYYS), and [@zaher](https://github.com/zaher) for reporting issues, and to [TRANSLATORS].
14
+
15
+This release includes changes to the config file format, including two breaking changes:
16
+
17
+1. Backwards compatibility with the old `server.listen` format for configuring listeners has been removed; you must now use the `server.listeners` format that was introduced in 1.2.0.
18
+2. The two sections `server.connection-limits` and `server.connection-throttling` have been consolidated into one new section, `server.ip-limits`.
19
+
20
+Other changes to the config file format are backwards compatible and do not require updating before restart. To minimize potential downtime, we suggest the following workflow:
21
+
22
+1. Without upgrading your `oragono` binary, edit your config file to add new `server.listeners` and `server.ip-limits` sections, based on the example config file
23
+2. Rehash your server, confirming that the new config file is valid for for the previous version of the server
24
+3. Upgrade your `oragono` binary to the new 2.0.x version and restart your server
25
+4. Once your deployment is stable on 2.0.x, delete the old `server.listen`, `server.connection-limits`, and `server.connection-throttling` sections from your config, and rehash your server to confirm
26
+
27
+This release includes a database change. If you have `datastore.autoupgrade` set to `true` in your configuration, it will be automatically applied when you restart Oragono. Otherwise, you can update the database manually by running `oragono upgradedb` (see the manual for complete instructions).
28
+
29
+### Config Changes
30
+* Desupported `server.listen` in favor of `server.listeners`, a breaking change (#794)
31
+* Desupported `server.connection-limits` and `server.connection-throttling` in favor of `server.ip-limits`, a breaking change (#646)
32
+* The recommended default is now to allow plaintext only on loopback interfaces (#801)
33
+* Added `server.casemapping` option to control which Unicode nicknames and channels are allowed (#693)
34
+* Added `server.lookup-hostnames` and `server.forward-confirm-hostnames` options to control hostname lookup (#688)
35
+* Added new `limits.multiline` section to control the new `draft/multiline` capability
36
+* Added sections for enabling the optional MySQL history storage backend: `datastore.mysql` for connecting to the server and `history.persistent` for controlling which messages are stored
37
+* Added `history.restrictions` for preventing people from retrieving arbitrarily old history messages
38
+* Added `history.znc-maxmessages`, allowing a higher history replay limit for bouncer emulation relative to CHATHISTORY
39
+* Added `accounts.vhosts.offer-list`, allowing users to take pre-approved vhosts without operator approval (#737)
40
+* Renamed `accounts.bouncer` to `accounts.multiclient` (the old name still works) (#787)
41
+* New recommended values of `server.max-sendq`, `server.ip-cloaking.num-bits`, `accounts.registration.bcrypt-cost`, `accounts.nick-reservation.enabled` (now true), `accounts.multiclient.allowed-by-default` (now true)
42
+* Added `server.ip-cloaking.secret-environment-variable`, allowing the cloaking secret to be deployed via an environment variable for use in Kubernetes (#741, thanks [@daurnimator](https://github.com/daurnimator)!)
43
+
44
+### Security
45
+* Added forward confirmation of reverse DNS lookups for hostnames: to enable this, set `server.forward-confirm-hostnames` to true (#688)
46
+* Added protection against confusable channel names (#581)
47
+* Fixed cases where Tor users could receive CTCP messages, contrary to expectations (#752, #753)
48
+* Fixed `NS INFO` displaying the local timezone (#710)
49
+* Fixed `accounts.authentication-enabled` failing to disable the `NS IDENTIFY` command (#721)
50
+* Fixed confusable protection not being applied to newly registered accounts (#745, thanks [@bogdomania](https://github.com/bogdomania)!)
51
+
52
+### Added
53
+* Added support for persistent history storage in MySQL (#348)
54
+* Added support for "always-on" clients that remain present on the server even when disconnected (#348, #701)
55
+* Added support for LDAP (#690, thanks [@mattouille](https://github.com/mattouille), [@ivucica](https://github.com/ivucica), and [@mabgnu](https://github.com/mabgnu)!)
56
+* Added support for the new [draft/multiline](https://github.com/ircv3/ircv3-specifications/pull/398) specification (#670, thanks [@jwheare](https://github.com/jwheare) and [@jesopo](https://github.com/jesopo)!)
57
+* Added new modes for Unicode characters in nicknames and channel names: ASCII-only and "permissive" (allowing emoji) (#693)
58
+* Added support for plaintext PROXY lines ahead of a TLS handshake, improving compatibility with some Kubernetes load balancers (#561, thanks @RyanSquared](https://github.com/RyanSquared) and [@daurnimator](https://github.com/daurnimator)!)
59
+* Added support for authenticating operators by TLS client certificates, and automatically applying operator privileges on login (#696, thanks [@RyanSquared](https://github.com/RyanSquared)!)
60
+* Added `/DEOPER` command to remove operator privileges (#549, thanks [@bogdomania](https://github.com/bogdomania)!)
61
+* Added `/CHANSERV TRANSFER`, allowing transfers of channel ownership (#684)
62
+* Added `/NICKSERV CERT`, allowing users to manage their authorized client certificates (#530)
63
+* Added `/HOSTSERV TAKE`, allowing users to take pre-approved vhosts without operator approval (#737)
64
+* Added support for configuring connection limits and throttling for individual CIDRs (#646, thanks KoDi!)
65
+* Added `/CHANSERV PURGE`, allowing server administrators to shut down channels (#683)
66
+* Added `/CHANSERV CLEAR`, allowing channel founders to reset stored bans and privileges (#692)
67
+* Added `/CHANSERV SET`, allowing channel founders to disable channel history (#379)
68
+* Added account preference `AUTOREPLAY-JOINS`, allowing greater control over when joins and parts appear in history replay (#616, thanks [@zaher](https://github.com/zaher)!)
69
+* Added `/DEBUG CRASHSERVER` command (#791)
70
+* Added channel mode `+C` to suppress CTCP messages to a channel (#756)
71
+* Added some missing snomasks for events related to accounts and vhosts (`+s v` to enable vhost snomasks) (#347, #103)
72
+
73
+### Changed
74
+* Updated CHATHISTORY support to the [latest draft](https://github.com/ircv3/ircv3-specifications/pull/393) (#621, thanks [@prawnsalad](https://github.com/prawnsalad)!)
75
+* `/HISTORY` now defaults to returning 100 messages, and also takes time durations like `1h` as arguments (#621, thanks lover!)
76
+* D-Lines are no longer enforced against loopback IPs (#671)
77
+* Password length limit was reduced from 600 bytes to 300 bytes (#775)
78
+
79
+### Fixed
80
+* Fixed a bug where `znc.in/playback` commands would play every channel, regardless of the target parameter (#760, thanks [@brenns10](https://github.com/brenns10)!)
81
+* Fixed `MODE -o` not removing all operator permissions (#725, #549, thanks [@bogdomania](https://github.com/bogdomania)!)
82
+* Fixed client-only tags being relayed in direct messages to users without the `message-tags` capability (#754, thanks [@jesopo](https://github.com/jesopo)!)
83
+* Fixed the channel user limit (the `+l` mode) not persisting after server restart (#705, thanks [@bogdomania](https://github.com/bogdomania)!)
84
+* Fixed response to `JOIN` lines with parameters ending in a comma (#679, thanks [@bogdomania](https://github.com/bogdomania)!)
85
+* Fixed confusable protection not being removed from unregistered accounts (#745, thanks [@bogdomania](https://github.com/bogdomania)!)
86
+* Fixed rehash not enabling nickname reservation, vhosts, or history under some circumstances (#702, thanks [@bogdomania)(https://github.com/bogdomania)!)
87
+* Fixed responses to the `USERHOST` command (#682)
88
+* Fixed bad results when running `oragono upgradedb` against a missing database file (#715, thanks [@bogdomania](https://github.com/bogdomania)!)
89
+* Fixed confusing `NS GHOST` behavior when nickname reservation is disabled (#727, thanks horseface!)
90
+* Fixed validation of authzid during SASL (#716, thanks [@xPaw](https://github.com/xPaw)!)
91
+* Non-ASCII characters are proactively disallowed in `ip-cloaking.netname` (#713, thanks [@bogdomania](https://github.com/bogdomania)!)
92
+
93
+### Removed
94
+* Removed `oragono.io/maxline-2` capability in favor of the new `draft/multiline` capability (#670, #752)
95
+* Removed `oragono.io/bnc` capability (multiclient functionality is now controllable only via server config and `/NS SET MULTICLIENT`) (#787)
96
+
97
+### Internal Notes
98
+* Updated to Go 1.14 and modules, simplifying the build process (#699)
99
+
4 100
 ## [1.2.0] - 2019-11-17
5 101
 We're pleased to announce Oragono 1.2.0. This version contains bug fixes and minor improvements.
6 102
 

Loading…
Cancel
Save