Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): v2.9.3 #1242

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion changelog/1180.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1228.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1228.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1241.bugfix.rst

This file was deleted.

4 changes: 2 additions & 2 deletions disnake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__author__ = "Rapptz, EQUENOS"
__license__ = "MIT"
__copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS"
__version__ = "2.9.2"
__version__ = "2.9.3"

__path__ = __import__("pkgutil").extend_path(__path__, __name__)

Expand Down Expand Up @@ -82,7 +82,7 @@ class VersionInfo(NamedTuple):


# fmt: off
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=2, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=3, releaselevel="final", serial=0)
# fmt: on

logging.getLogger(__name__).addHandler(logging.NullHandler())
27 changes: 27 additions & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,33 @@ in specific versions. Please see :ref:`version_guarantees` for more information.

.. towncrier release notes start

.. _vp2p9p3:

v2.9.3
------

This is a maintainance release with several minor bugfixes.
Notably, this includes support for a newer voice encryption mode;
all modes supported in previous versions are scheduled to be :ddocs:`discontinued <change-log#voice-encryption-modes>` on 18th November 2024,
and voice connections using the builtin :class:`VoiceClient` will fail to connect.

New Features
~~~~~~~~~~~~
- Add support for ``aead_xchacha20_poly1305_rtpsize`` encryption mode for voice connections, and remove deprecated ``xsalsa20_poly1305*`` modes. (:issue:`1228`)

Bug Fixes
~~~~~~~~~
- Attempt to handle abrupt websocket closures on ``aiohttp >= 3.9.0`` and ``python < 3.11.0`` gracefully. (:issue:`1241`)

Documentation
~~~~~~~~~~~~~
- Adding some clarifying documentation around the type of :attr:`AuditLogEntry.extra` when the action is :attr:`~AuditLogAction.overwrite_create`. (:issue:`1180`)

Miscellaneous
~~~~~~~~~~~~~
- Raise PyNaCl version requirement to ``v1.5.0``. (:issue:`1228`)


.. _vp2p9p2:

v2.9.2
Expand Down
Loading