Skip to content

Commit 8e5c73b

Browse files
chore(release): v2.9.3 (#1242)
Signed-off-by: shiftinv <[email protected]> Co-authored-by: disnake-bot[bot] <139079794+disnake-bot[bot]@users.noreply.github.com> Co-authored-by: shiftinv <[email protected]>
1 parent ee5790c commit 8e5c73b

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed

Diff for: changelog/1180.doc.rst

-1
This file was deleted.

Diff for: changelog/1228.feature.rst

-1
This file was deleted.

Diff for: changelog/1228.misc.rst

-1
This file was deleted.

Diff for: changelog/1241.bugfix.rst

-1
This file was deleted.

Diff for: disnake/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__author__ = "Rapptz, EQUENOS"
1515
__license__ = "MIT"
1616
__copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS"
17-
__version__ = "2.9.2"
17+
__version__ = "2.9.3"
1818

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

@@ -82,7 +82,7 @@ class VersionInfo(NamedTuple):
8282

8383

8484
# fmt: off
85-
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=2, releaselevel="final", serial=0)
85+
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=3, releaselevel="final", serial=0)
8686
# fmt: on
8787

8888
logging.getLogger(__name__).addHandler(logging.NullHandler())

Diff for: docs/whats_new.rst

+27
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,33 @@ in specific versions. Please see :ref:`version_guarantees` for more information.
1717

1818
.. towncrier release notes start
1919
20+
.. _vp2p9p3:
21+
22+
v2.9.3
23+
------
24+
25+
This is a maintainance release with several minor bugfixes.
26+
Notably, this includes support for a newer voice encryption mode;
27+
all modes supported in previous versions are scheduled to be :ddocs:`discontinued <change-log#voice-encryption-modes>` on 18th November 2024,
28+
and voice connections using the builtin :class:`VoiceClient` will fail to connect.
29+
30+
New Features
31+
~~~~~~~~~~~~
32+
- Add support for ``aead_xchacha20_poly1305_rtpsize`` encryption mode for voice connections, and remove deprecated ``xsalsa20_poly1305*`` modes. (:issue:`1228`)
33+
34+
Bug Fixes
35+
~~~~~~~~~
36+
- Attempt to handle abrupt websocket closures on ``aiohttp >= 3.9.0`` and ``python < 3.11.0`` gracefully. (:issue:`1241`)
37+
38+
Documentation
39+
~~~~~~~~~~~~~
40+
- Adding some clarifying documentation around the type of :attr:`AuditLogEntry.extra` when the action is :attr:`~AuditLogAction.overwrite_create`. (:issue:`1180`)
41+
42+
Miscellaneous
43+
~~~~~~~~~~~~~
44+
- Raise PyNaCl version requirement to ``v1.5.0``. (:issue:`1228`)
45+
46+
2047
.. _vp2p9p2:
2148

2249
v2.9.2

0 commit comments

Comments
 (0)