From bc2f66c77330f20a4b63499b42138807e81bbe02 Mon Sep 17 00:00:00 2001 From: ITOH Date: Wed, 25 May 2022 19:19:49 +0200 Subject: [PATCH] release: 13.0.0-rc40 Added: - `convertRestError` function so you can edit the error stack better/add additional handling - `Collection#forceSet` method which ignores the `maxSize` limit of the collection Changed: - Intent calculation now needs to be done manually (eg. `Intents.Guilds | Intents.GuildMessages`) **BREAKING** Fixed: - `ApplicationCommandOption#required` is optional - `createInvite` sending the wrong value for `target_application_id` - `editApplicationCommandPermissions` needs a bearer token to access the related endpoint **BREAKING** - `sendInteractionResponse` not uploading files Removed: - leftover console.log in the `spawnShards` and `processGlobalQueue` functions --- util/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/constants.ts b/util/constants.ts index 0332176df..9c4f2c96e 100644 --- a/util/constants.ts +++ b/util/constants.ts @@ -9,7 +9,7 @@ export const GATEWAY_VERSION = 10; // TODO: update this version /** https://github.com/discordeno/discordeno/releases */ -export const DISCORDENO_VERSION = "13.0.0-rc39"; +export const DISCORDENO_VERSION = "13.0.0-rc40"; /** https://discord.com/developers/docs/reference#user-agent */ export const USER_AGENT = `DiscordBot (https://github.com/discordeno/discordeno, v${DISCORDENO_VERSION})`;