Skip to content

Commit 1ba2894

Browse files
committed
Merge remote-tracking branch 'upstream/2.1' into 2.1
2 parents aa90bb0 + 3af9da7 commit 1ba2894

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

docs/CHANGES.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Anope Change Log
22

3+
## Anope 2.1.21 (unreleased)
4+
5+
### Breaking Changes
6+
7+
* `{fantasy}:fantasycharacter` has been replaced with `{fantasy}:prefix` which allows multiple-character fantasy prefixes. If you have multiple custom fantasy characters set you should separate them with a space when upgrading your config.
8+
9+
### Changes
10+
11+
* Fixed a crash when clearing channel entry messages.
12+
13+
* Fixed a memory leak when cloning akicks.
14+
15+
* Fixed confirming accounts using the webcpanel.
16+
17+
* Fixed limiting the number of accounts per email address.
18+
19+
* Fixed the `chanserv/enforce` command erroneously enforcing against channel founders.
20+
21+
* Fixed the syntax of the `chanserv/suspend` command.
22+
23+
* Fixed the syntax of the `nickserv/suspend` command.
24+
25+
* Improved password rehash detection in the enc_argon2 module.
26+
27+
* Various minor improvements to how services work internally.
28+
329
## Anope 2.1.20 (2025-12-01)
430

531
### Breaking Changes

modules/nickserv/ns_set.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class CommandNSSASetPassword final
186186
return;
187187
}
188188

189-
const Anope::string &param = params[0];
189+
const Anope::string &param = params[1];
190190
NickCore *nc = setter_na->nc;
191191

192192
if (Config->GetModule("nickserv").Get<bool>("secureadmins", "yes") && source.nc != nc && nc->IsServicesOper())

0 commit comments

Comments
 (0)