File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
Release History
2
2
===============
3
3
4
- 3.1.0dev0
5
- ---------
4
+ 3.1.0 (2019-01-22)
5
+ ------------------
6
6
7
7
API Changes (Backward-Incompatible)
8
8
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9
9
10
10
- ``h2.connection.H2Connection.data_to_send `` first and only argument ``amt ``
11
11
was renamed to ``amount ``.
12
+ - Support for Python 3.3 has been removed.
12
13
13
14
API Changes (Backward-Compatible)
14
15
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -23,10 +24,14 @@ API Changes (Backward-Compatible)
23
24
- Added ``ENABLE_CONNECT_PROTOCOL `` to ``h2.settings.SettingCodes ``.
24
25
- Support ``CONNECT `` requests with a ``:protocol `` pseudo header
25
26
thereby supporting RFC 8441.
27
+ - A limit to the number of closed streams kept in memory by the
28
+ connection is applied. It can be configured by
29
+ ``h2.connection.H2Connection.MAX_CLOSED_STREAMS ``.
26
30
27
31
Bugfixes
28
32
~~~~~~~~
29
33
34
+ - Debug logging when stream_id is None is now fixed and no longer errors.
30
35
31
36
3.0.1 (2017-04-03)
32
37
------------------
Original file line number Diff line number Diff line change 57
57
# The short X.Y version.
58
58
version = '3.1.0'
59
59
# The full version, including alpha/beta/rc tags.
60
- release = '3.1.0dev0 '
60
+ release = '3.1.0 '
61
61
62
62
# The language for content autogenerated by Sphinx. Refer to documentation
63
63
# for a list of supported languages.
Original file line number Diff line number Diff line change 5
5
6
6
A HTTP/2 implementation.
7
7
"""
8
- __version__ = '3.1.0dev0 '
8
+ __version__ = '3.1.0 '
You can’t perform that action at this time.
0 commit comments