Improvements
- Stop url cutting in embed fields. Its a nice idea to shorten output, but it makes finding the mismatch in tests
really annoying.
- Add `exclude_deleted` parameter to `Client.entitlement_get_all` & `Client.entitlement_get_chunk`.
- Add `Client.entitlement_get`.
- Add `DiscordApiClient.entitlement_get`.
- Add `RATE_LIMIT_GROUPS.entitlement_get`.
- Add `ConnectionType.bluesky`.
- Add `ConnectionType.mastodon`.
- Add new unicode emojis. (Version `15.1`~)
ext.slash
- `SlashCommandCategory.__repr__`, `SlashCommandFunction.__repr__`, `SlashCommandParameterAutoCompleter.__repr__`,
`SlashCommand.__repr__`, `ContextCommand.__repr__`, `CommandBaseCustomId.__repr__`,
`CommandBaseApplicationCommand.__repr__` now shows each field in it that affects `.__eq__` & `.__hash__`.
Bug fixes
- Fix `Client.events.guild_delete` did not clean the guild up correctly (cached permissions & client guild profiles).
Now after the event handler started a handle runs to do the cleaning, so the event handler can observer the guild's
last known state as before.
- Fix `Client.entitlement_get_all`, `Client.entitlement_get_chunk` passed wrong value as `.exclude_ended`.
- Fix `Client.entitlement_get_all`, `Client.entitlement_get_chunk` treated default of `sku_ids` incorrectly.
Renames, Deprecations & Removals
ext.slash
- Deprecate `SlashCommand.__new__`'s `.is_default` parameter. Use `default` instead.