Browse Source

Merge pull request #2118 from slingamn/changelog

bump version and changelog for 2.13.0-rc1
tags/v2.13.0-rc1^0
Shivaram Lingamneni 3 months ago
parent
commit
9d388d8cdb
No account linked to committer's email address
3 changed files with 27 additions and 2 deletions
  1. 25
    0
      CHANGELOG.md
  2. 1
    1
      irc/handlers.go
  3. 1
    1
      irc/version.go

+ 25
- 0
CHANGELOG.md View File

@@ -1,6 +1,31 @@
1 1
 # Changelog
2 2
 All notable changes to Ergo will be documented in this file.
3 3
 
4
+## [2.13.0-rc1] - 2024-01-07
5
+
6
+We're pleased to be publishing the release candidate for v2.13.0 (the official release should follow within a week or so). This is a bugfix release that fixes some issues, including a crash.
7
+
8
+This release includes no changes to the config file format or database format.
9
+
10
+Mnay thanks to [@dallemon](https://github.com/dallemon), [@jwheare](https://github.com/jwheare), [@Mikaela](https://github.com/Mikaela), and [@Sheikah45](https://github.com/Sheikah45) for contributing patches, reporting issues, and helping test.
11
+
12
+### Fixed
13
+
14
+* Fixed a (hopefully rare) crash when persisting always-on client statuses (#2113, #2117, thanks [@Sheikah45](https://github.com/Sheikah45)!)
15
+* Fixed not being able to message channels with `/` (or the configured `RELAYMSG` separator) in their names (#2114, thanks [@Mikaela](https://github.com/Mikaela)!)
16
+* Verification emails now always include a `Message-ID` header, improving compatibility with Gmail (#2108, #2110)
17
+* Improved human-readable description of `REDACT_FORBIDDEN` (#2101, thanks [@jwheare](https://github.com/jwheare)!)
18
+
19
+### Removed
20
+
21
+* Removed numerics associated with the retired ACC spec (#2109, #2111, thanks [@jwheare](https://github.com/jwheare)!)
22
+
23
+### Internal
24
+
25
+* Upgraded the Docker base image from Alpine 3.13 to 3.19. The resulting images are incompatible with Docker 19.x and lower (all currently non-EOL Docker versions should be supported). (#2103)
26
+* Official release builds use Go 1.21.5
27
+
28
+
4 29
 ## [2.12.0] - 2023-10-10
5 30
 
6 31
 We're pleased to be publishing v2.12.0, a new stable release. This is another bugfix release aimed at improving client compatibility and keeping up with the IRCv3 specification process.

+ 1
- 1
irc/handlers.go View File

@@ -2704,7 +2704,7 @@ func redactHandler(server *Server, client *Client, msg ircmsg.Message, rb *Respo
2704 2704
 	if canDelete == canDeleteSelf {
2705 2705
 		accountName = client.AccountName()
2706 2706
 		if accountName == "*" {
2707
-			rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("You are not authorized to delete because you are logged out"))
2707
+			rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("You are not authorized to delete this message"))
2708 2708
 			return false
2709 2709
 		}
2710 2710
 	}

+ 1
- 1
irc/version.go View File

@@ -7,7 +7,7 @@ import "fmt"
7 7
 
8 8
 const (
9 9
 	// SemVer is the semantic version of Ergo.
10
-	SemVer = "2.13.0-unreleased"
10
+	SemVer = "2.13.0-rc1"
11 11
 )
12 12
 
13 13
 var (

Loading…
Cancel
Save