Browse Source

changelog for 2.3.0-rc1

tags/v2.3.0-rc1
Shivaram Lingamneni 3 years ago
parent
commit
48adf33411
2 changed files with 34 additions and 1 deletions
  1. 33
    0
      CHANGELOG.md
  2. 1
    1
      DEVELOPING.md

+ 33
- 0
CHANGELOG.md View File

@@ -1,6 +1,39 @@
1 1
 # Changelog
2 2
 All notable changes to Oragono will be documented in this file.
3 3
 
4
+## [2.3.0-rc1] - 2020-08-23
5
+
6
+We're pleased to be publishing the release candidate for 2.3.0 (the official release should follow in a week or so).
7
+
8
+This release contains primarily bug fixes, but includes one notable feature enhancement: a change contributed by [@hhirtz](https://github.com/hhirtz) that updates the `draft/rename` specification to correspond to the new (soon-to-be) published draft.
9
+
10
+Many thanks to [@hhirtz](https://github.com/hhirtz) for contributing patches, to [@bogdomania](https://github.com/bogdomania), [@jesopo](https://github.com/jesopo), [@kylef](https://github.com/kylef), [@Mitaka8](https://github.com/Mitaka8),and [@mogad0n](https://github.com/mogad0n) for reporting issues and helping test, and to our translators for contributing translations.
11
+
12
+This release includes no changes to the config file format or database changes.
13
+
14
+### Config changes
15
+* The recommended value of `lookup-hostnames` for configurations that cloak IPs (as has been the default since 2.1.0) is now `false` (#1228)
16
+
17
+### Security
18
+* Mitigated a potential DoS attack on websocket listeners (#1226)
19
+
20
+### Removed
21
+* Removed `/HOSTSERV OFFERLIST` and related commands; this functionality is superseded by IP cloaking (#1190)
22
+
23
+### Fixed
24
+* Fixed an edge case in handling no-op nick changes (#1242)
25
+* Fixed edge cases with users transitioning in and out of always-on status (#1218, #1219, thanks [@bogdomania](https://github.com/bogdomania)!)
26
+* Fixed a race condition related to the registration timeout (#1225, thanks [@hhirtz](https://github.com/hhirtz)!)
27
+* Fixed messages to services and `*playback` not receiving echo-message when applicable (#1204, thanks [@kylef](https://github.com/kylef)!)
28
+* Fixed a help string (#1237, thanks [@Mitaka8](https://github.com/Mitaka8)!)
29
+
30
+### Changed
31
+* Updated `draft/rename` implementation to the latest draft (#1223, thanks [@hhirtz](https://github.com/hhirtz)!)
32
+
33
+### Internal
34
+* Official release builds now use Go 1.15 (#1195)
35
+* `/INFO` now includes the Go version (#1234)
36
+
4 37
 ## [2.2.0] - 2020-07-26
5 38
 
6 39
 We're pleased to announce Oragono 2.2.0, a new stable release.

+ 1
- 1
DEVELOPING.md View File

@@ -33,7 +33,7 @@ Develop branches are either used to work out implementation details in preperati
33 33
 1. Update the changelog with new changes and write release notes.
34 34
 1. Update the version number `irc/version.go` (either change `-unreleased` to `-rc1`, or remove `-rc1`, as appropriate).
35 35
 1. Commit the new changelog and constants change.
36
-1. Tag the release with `git tag v0.0.0 -m "Release v0.0.0"` (`0.0.0` replaced with the real ver number).
36
+1. Tag the release with `git tag --sign v0.0.0 -m "Release v0.0.0"` (`0.0.0` replaced with the real ver number).
37 37
 1. Build binaries using `make release`, upload release to Github including the changelog and binaries.
38 38
 1. If it's a proper release (i.e. not an alpha/beta), merge the updates into the `stable` branch.
39 39
 1. Make the appropriate announcements:

Loading…
Cancel
Save