File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,18 @@ Changelog
33
44.. currentmodule :: aiortc
55
6+ 1.13.0
7+ ------
8+
9+ * Add support for `G.722 ` audio codec.
10+ * Handle undecodable VP8 packages as was done prior to release 1.12.0.
11+ * Limit the number of threads used for VP8 encoding as was done prior to
12+ release 1.12.0.
13+ * Allow calling :meth: `RTCPeerConnection.setLocalDescription ` with no argument
14+ to implicitly create an offer or answer as needed.
15+ * Support creating offers without media or data channels.
16+ * Reject STUN URLs containing a "transport" query parameter.
17+
6181.12.0
719------
820
Original file line number Diff line number Diff line change 5050 RTCTransportStats ,
5151)
5252
53- __version__ = "1.12 .0"
53+ __version__ = "1.13 .0"
5454
5555# Set default logging handler to avoid "No handler found" warnings.
5656logging .getLogger (__name__ ).addHandler (logging .NullHandler ())
Original file line number Diff line number Diff line change @@ -744,7 +744,7 @@ async def setLocalDescription(
744744
745745 :param sessionDescription: An :class:`RTCSessionDescription` generated
746746 by :meth:`createOffer` or :meth:`createAnswer()`
747- or None to implicitly create an offer or create
747+ or ` None` to implicitly create an offer or create
748748 an answer, as needed.
749749 """
750750 # check state is valid
You can’t perform that action at this time.
0 commit comments