This repository was archived by the owner on Jan 13, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1
1
Release History
2
2
===============
3
3
4
+ Upcoming
5
+ --------
6
+
7
+ *New Features *
8
+
9
+ - HTTP/1.1 support! See the documentation for more. (`Issue #75 `_)
10
+ - Implementation of a ``HTTPHeaderMap `` data structure that provides dictionary
11
+ style lookups while retaining all the semantic information of HTTP headers.
12
+
13
+ *Major Changes *
14
+
15
+ - Various changes in the HTTP/2 APIs:
16
+
17
+ - The ``getheader ``, ``getheaders ``, ``gettrailer ``, and ``gettrailers ``
18
+ methods on the response object have been removed, replaced instead with
19
+ simple ``.headers `` and ``.trailers `` properties that contain
20
+ ``HTTPHeaderMap `` structures.
21
+ - Headers and trailers are now bytestrings, rather than unicode strings.
22
+ - An ``iter_chunked() `` method was added to repsonse objects that allows
23
+ iterating over data in units of individual data frames.
24
+ - Changed the name of ``getresponse() `` to ``get_response() ``, because
25
+ ``getresponse() `` was a terrible name forced upon me by httplib.
26
+
27
+ .. _Issue #75 : https://github.com/Lukasa/hyper/issues/75
28
+
4
29
0.2.2 (2015-04-03)
5
30
------------------
6
31
You can’t perform that action at this time.
0 commit comments