diff --git a/scripts/release.py b/scripts/release.py index b2afc36952..88f7331b28 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -54,6 +54,7 @@ AUTHOR_MAP = { "137614867+cutepawss@users.noreply.github.com": "cutepawss", "96793918+memosr@users.noreply.github.com": "memosr", "milkoor@users.noreply.github.com": "milkoor", + "xuerui911@gmail.com": "Fatty911", "131039422+SHL0MS@users.noreply.github.com": "SHL0MS", "77628552+raulvidis@users.noreply.github.com": "raulvidis", "145567217+Aum08Desai@users.noreply.github.com": "Aum08Desai", diff --git a/tests/gateway/test_feishu.py b/tests/gateway/test_feishu.py index 4d9a7b8439..06665610b2 100644 --- a/tests/gateway/test_feishu.py +++ b/tests/gateway/test_feishu.py @@ -639,6 +639,14 @@ class TestAdapterBehavior(unittest.TestCase): calls.append("bot_deleted") return self + def register_p2_im_chat_access_event_bot_p2p_chat_entered_v1(self, _handler): + calls.append("p2p_chat_entered") + return self + + def register_p2_im_message_recalled_v1(self, _handler): + calls.append("message_recalled") + return self + def build(self): calls.append("build") return "handler" @@ -664,6 +672,8 @@ class TestAdapterBehavior(unittest.TestCase): "card_action", "bot_added", "bot_deleted", + "p2p_chat_entered", + "message_recalled", "build", ], )