Skip to content

Commit 5c3d7ce

Browse files
Merge branch 'main' of github.com:onesoft-sudo/sudobot
2 parents 21f5f47 + 8da0283 commit 5c3d7ce

File tree

4 files changed

+29
-31
lines changed

4 files changed

+29
-31
lines changed

CHANGELOG.md

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
# [9.1.0](https://github.com/onesoft-sudo/sudobot/compare/v8.30.0...v9.1.0) (2024-06-16)
1+
## [9.2.1](https://github.com/onesoft-sudo/sudobot/compare/v9.2.0...v9.2.1) (2024-06-22)
2+
3+
4+
### Bug Fixes
5+
6+
* **logging:** message deletion log delay ([770ebf1](https://github.com/onesoft-sudo/sudobot/commit/770ebf18c02ebc044a9f88f815a63d12ace29da6))
7+
8+
9+
10+
# [9.2.0](https://github.com/onesoft-sudo/sudobot/compare/v9.1.0...v9.2.0) (2024-06-22)
11+
12+
13+
### Bug Fixes
14+
15+
* compatibility issues with TypeScript 5.5 ([dec8d93](https://github.com/onesoft-sudo/sudobot/commit/dec8d93f70fd9305a930428ee5f96ec921fbc74a))
16+
17+
18+
### Features
19+
20+
* **automod:rules:** bypassers ([f168ede](https://github.com/onesoft-sudo/sudobot/commit/f168ede30306194529882af54e999f46bfe1a9bb))
21+
* **framework:concurrent:** semaphore condition ([d8f38cf](https://github.com/onesoft-sudo/sudobot/commit/d8f38cf2a1b3b8a091a2fae768c77fd7c11f86dc))
22+
23+
24+
25+
# [9.1.0](https://github.com/onesoft-sudo/sudobot/compare/v9.0.0-beta.1...v9.1.0) (2024-06-16)
226

327

428
### Bug Fixes
@@ -326,30 +350,3 @@
326350

327351

328352

329-
## [8.29.3](https://github.com/onesoft-sudo/sudobot/compare/v8.29.2...v8.29.3) (2024-03-13)
330-
331-
332-
### Bug Fixes
333-
334-
* ai command ([025f94a](https://github.com/onesoft-sudo/sudobot/commit/025f94a1474add7884ed2e7f5ff9089e0f6f41ed))
335-
336-
337-
338-
## [8.29.2](https://github.com/onesoft-sudo/sudobot/compare/v8.29.1...v8.29.2) (2024-03-13)
339-
340-
341-
### Bug Fixes
342-
343-
* ai command ([523af9f](https://github.com/onesoft-sudo/sudobot/commit/523af9f74fee0b94e364a3c5bb1b0fb169d02529))
344-
345-
346-
347-
## [8.29.1](https://github.com/onesoft-sudo/sudobot/compare/v8.29.0...v8.29.1) (2024-03-13)
348-
349-
350-
### Bug Fixes
351-
352-
* **commands:ai:** gemini api ([f6d08ea](https://github.com/onesoft-sudo/sudobot/commit/f6d08eaddb65331e9b00a9aa06b7e60678562575))
353-
354-
355-

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7+
| 9.x | :white_check_mark: |
78
| 8.x | :white_check_mark: |
8-
| 7.x | :white_check_mark: |
9+
| 7.x | :x: |
910
| 6.x | :x: |
1011
| 5.x | :x: |
1112
| 4.x | :x: |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sudobot",
3-
"version": "9.1.0",
3+
"version": "9.2.1",
44
"description": "A Discord bot for moderation purposes.",
55
"author": {
66
"name": "Ar Rakin",

src/main/typescript/events/message/MessageDeleteEventListener.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class MessageDeleteEventListener extends EventListener<Events.MessageDelete> {
6363
message,
6464
moderator
6565
);
66-
}, 1000);
66+
}, 100);
6767
}
6868
}
6969

0 commit comments

Comments
 (0)