Skip to content

Commit a460318

Browse files
committed
v2.0.0-beta.10
1 parent 0ea80d3 commit a460318

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,50 @@ and this project adheres to
1414

1515
## [Unreleased] - None
1616

17+
## [v2.0.0-beta.10] 2024-01-09
18+
19+
### Changed
20+
21+
- Make the unban command's `--true` option the default behaviour. Removing a
22+
policy will automatically matching unban users from protected rooms. Changed
23+
by @nexy7574 and reported in
24+
https://github.com/the-draupnir-project/Draupnir/issues/648
25+
26+
### Fixed
27+
28+
- Stop the kick command from removing members who had left or were banned, Fixed
29+
and reported by @nexy7574 in
30+
https://github.com/the-draupnir-project/Draupnir/issues/649.
31+
32+
- Stop room's being added as server policies. Fixed by @nexy7574 reported by
33+
@FSG-Cat in https://github.com/the-draupnir-project/Draupnir/issues/458.
34+
35+
- Stop Draupnir's `WordList` and `BasicFlooding` protections from reacting to
36+
itself in the management room. Fixed by @nexy7574 reported by @TheArcaneBrony
37+
in https://github.com/the-draupnir-project/Draupnir/issues/579.
38+
39+
- Stop duplicate notice's that Draupnir is updating room ACL in
40+
https://github.com/the-draupnir-project/Draupnir/issues/450.
41+
42+
- Fixed serverACL's were not immediately updated after unwatching or watching a
43+
new policy list. https://github.com/the-draupnir-project/Draupnir/issues/451.
44+
45+
- Fixed an issue where remote aliases couldn't be resolved unless the homeserver
46+
was already present in the room. Reported by @TheArcaneBrony in
47+
https://github.com/the-draupnir-project/Draupnir/issues/460.
48+
49+
- Fixed an issue where it was not possible to unwatch a policy room. Reported by
50+
@JokerGermany in https://github.com/the-draupnir-project/Draupnir/issues/431,
51+
and @nexy7574 in https://github.com/the-draupnir-project/Draupnir/issues/647.
52+
53+
- Fixed an issue where if Draupnir was protecting a very large number of users
54+
then CPU could be starved for as long as a minute while matching users against
55+
policies. Reported by @TheArcaneBrony in
56+
https://github.com/the-draupnir-project/Draupnir/issues/498.
57+
58+
- Handle invalid forwarded reports properly. Reported by @Philantrop in
59+
https://github.com/the-draupnir-project/Draupnir/issues/643.
60+
1761
## [v2.0.0-beta.9] 2024-12-14
1862

1963
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "draupnir",
3-
"version": "2.0.0-beta.9",
3+
"version": "2.0.0-beta.10",
44
"description": "A moderation tool for Matrix",
55
"main": "lib/index.js",
66
"repository": "https://github.com/the-draupnir-project/Draupnir.git",

synapse_antispam/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="mjolnir",
9-
version="2.0.0-beta.9", # version automated in package.json - Do not edit this line, use `yarn version`.
9+
version="2.0.0-beta.10", # version automated in package.json - Do not edit this line, use `yarn version`.
1010
packages=find_packages(),
1111
description="Mjolnir Antispam",
1212
include_package_data=True,

0 commit comments

Comments
 (0)