From 2eb31157fb627fb9f065dcedc1ec56bdea33d54f Mon Sep 17 00:00:00 2001 From: Wolvinny Date: Fri, 3 Jan 2025 17:08:07 +0100 Subject: [PATCH 1/4] Update tags.toml new tag added for the deprecation warning of ephemeral in 14.17, as well as for the 50240 (You cannot remove this app's Entry Point command ...) error. Removed the partial-group-dm tag as this was resolved in 14.16.2 --- tags/tags.toml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/tags/tags.toml b/tags/tags.toml index 5b4b93f..f7d2457 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -1211,10 +1211,20 @@ discord.js does not support features until they are officially documented. While there might be a way for these features to work, it can change at any time without any notice """ -[partial-group-dm] -keywords = ["group-dm", "send-does-not-exist"] + +[ephemeral] +keywords = ["ephemeral-deprecated"] +content = """ +The `ephemeral` option will be removed +```diff +- {..., ephemeral: true} ++ {..., flags: MessageFlags.Ephemeral} +``` Read [here]() on how to specify multiple flags +""" + +[entry-point] +keywords = ["50240", "remove-entry-point"] content = """ -Bots cannot send messages in partial group dm channels. -Use `if ('send' in channel)` or compare `channel.type` to mitigate this. -A fix will be implemented in 14.16.2, where you can use `channel.isSendable()` +You have enabled activities in the Activity Settings on the dev portal. +Either do not emable it if you dont need it or include the command that was created in the request body """ From 6ed91d7300fef106b73ba2ea60cfb347bbbc7d72 Mon Sep 17 00:00:00 2001 From: Wolvinny Date: Fri, 3 Jan 2025 17:08:32 +0100 Subject: [PATCH 2/4] Update tags.toml --- tags/tags.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/tags/tags.toml b/tags/tags.toml index f7d2457..ad47998 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -1211,7 +1211,6 @@ discord.js does not support features until they are officially documented. While there might be a way for these features to work, it can change at any time without any notice """ - [ephemeral] keywords = ["ephemeral-deprecated"] content = """ From 534c36b57991c742689b0bd6b0cb9cdb1cf2e426 Mon Sep 17 00:00:00 2001 From: Luna <84203950+Wolvinny@users.noreply.github.com> Date: Fri, 3 Jan 2025 17:54:59 +0100 Subject: [PATCH 3/4] Update tags/tags.toml Co-authored-by: Almeida --- tags/tags.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tags/tags.toml b/tags/tags.toml index ad47998..352c865 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -1224,6 +1224,6 @@ The `ephemeral` option will be removed [entry-point] keywords = ["50240", "remove-entry-point"] content = """ -You have enabled activities in the Activity Settings on the dev portal. -Either do not emable it if you dont need it or include the command that was created in the request body +You have enabled activities in the Activity Settings on the Developer Portal. +Either do not enable them if you do not need them, or include the command that was created in the request body. """ From 748177d9f3a7b42b3f81108aaa818de183328208 Mon Sep 17 00:00:00 2001 From: Luna <84203950+Wolvinny@users.noreply.github.com> Date: Fri, 3 Jan 2025 17:56:29 +0100 Subject: [PATCH 4/4] Update tags/tags.toml Co-authored-by: Almeida --- tags/tags.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/tags.toml b/tags/tags.toml index 352c865..94975b7 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -1214,7 +1214,7 @@ While there might be a way for these features to work, it can change at any time [ephemeral] keywords = ["ephemeral-deprecated"] content = """ -The `ephemeral` option will be removed +The `ephemeral` option when replying to an interaction will be removed in v15 ```diff - {..., ephemeral: true} + {..., flags: MessageFlags.Ephemeral}