diff --git a/apps/guide/src/content/05-additional-info/03-updating-to-v14.mdx b/apps/guide/src/content/05-additional-info/03-updating-to-v14.mdx index cff6db299..c6a490736 100644 --- a/apps/guide/src/content/05-additional-info/03-updating-to-v14.mdx +++ b/apps/guide/src/content/05-additional-info/03-updating-to-v14.mdx @@ -490,6 +490,8 @@ In addition to this, there is now a new partial: _`Partials.ThreadMember`_. The thread permissions _`USE_PUBLIC_THREADS`_ and _`USE_PRIVATE_THREADS`_ have been removed as they are deprecated in the API. Use _`CREATE_PUBLIC_THREADS`_ and _`CREATE_PRIVATE_THREADS`_ respectively. +_`ManageEmojisAndStickers`_ has been deprecated due to API changes. Its replacement is _`ManageGuildExpressions`_.[^7] + ### PermissionOverwritesManager Overwrites are now keyed by the _`PascalCase`_ permission key rather than the _`SCREAMING_SNAKE_CASE`_ permission key. @@ -647,6 +649,10 @@ The second parameter of has been added which is the id of the @@ -777,6 +783,8 @@ Added Added support for role subscriptions. +Added support for _`Role#tags#guildConnections`_. + ### StageChannel Stage channels now allow messages to be sent in them, much like voice channels. @@ -797,9 +805,14 @@ Added . Added the _`threadName`_ property in which allows a webhook to create a post in a forum channel. +### WebSocketManager + +discord.js uses internally. + [^1]: https://github.com/discordjs/discord.js/pull/7188 [^2]: https://github.com/discordjs/discord.js/pull/6492 [^3]: https://github.com/discordjs/discord.js/pull/7669 [^4]: https://github.com/discordjs/discord.js/issues/6546 [^5]: https://github.com/discordjs/discord.js/pull/8010 [^6]: https://github.com/discordjs/discord.js/issues/7091 +[^7]: https://github.com/discord/discord-api-docs/pull/6017 diff --git a/apps/guide/src/util/constants.ts b/apps/guide/src/util/constants.ts index 4eea1a980..1ab7ae324 100644 --- a/apps/guide/src/util/constants.ts +++ b/apps/guide/src/util/constants.ts @@ -24,4 +24,4 @@ export const PACKAGES = [ /** * The stable version of discord.js. */ -export const VERSION = '14.9.0' as const; +export const VERSION = '14.10.0' as const;