Skip to content

Commit 2e089c4

Browse files
committed
Cutoff release notes for 0.15, move those to history section
1 parent 376449b commit 2e089c4

File tree

2 files changed

+87
-81
lines changed

2 files changed

+87
-81
lines changed

CHANGES.txt

-72
Original file line numberDiff line numberDiff line change
@@ -58,75 +58,3 @@ CHANGES
5858
- Add ws_connect to ClientSession #374
5959

6060
- Support optional `chunk_size` parameter in `router.add_static()`
61-
62-
63-
0.15.3 (04-22-2015)
64-
-------------------
65-
66-
- Fix graceful shutdown handling
67-
68-
- Fix `Expect` header handling for not found and not allowed routes #340
69-
70-
71-
0.15.2 (04-19-2015)
72-
-------------------
73-
74-
- Flow control subsystem refactoring
75-
76-
- Http server performace optimizations
77-
78-
- Allow to match any request method with `*`
79-
80-
- Explicitly call drain on transport #316
81-
82-
- Make chardet module dependency mandatory #318
83-
84-
- Support keep-alive for HTTP 1.0 #325
85-
86-
- Do not chunk single file during upload #327
87-
88-
- Add ClientSession object for cookie storage and default headers #328
89-
90-
- Add `keep_alive_on` argument for http server handler.
91-
92-
93-
0.15.1 (03-31-2015)
94-
-------------------
95-
96-
- Pass Autobahn Testsuit tests
97-
98-
- Fixed websocket fragmentation
99-
100-
- Fixed websocket close procedure
101-
102-
- Fixed parser buffer limits
103-
104-
- Added `timeout` parameter to WebSocketResponse ctor
105-
106-
- Added `WebSocketResponse.close_code` attribute
107-
108-
109-
0.15.0 (03-27-2015)
110-
-------------------
111-
112-
- Client WebSockets support
113-
114-
- New Multipart system #273
115-
116-
- Support for "Except" header #287 #267
117-
118-
- Set default Content-Type for post requests #184
119-
120-
- Fix issue with construction dynamic route with regexps and trailing slash #266
121-
122-
- Add repr to web.Request
123-
124-
- Add repr to web.Response
125-
126-
- Add repr for NotFound and NotAllowed match infos
127-
128-
- Add repr for web.Application
129-
130-
- Add repr to UrlMappingMatchInfo #217
131-
132-
- Gunicorn 19.2.x compatibility

HISTORY.rst

+87-9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,75 @@
1+
0.15.3 (04-22-2015)
2+
-------------------
3+
4+
- Fix graceful shutdown handling
5+
6+
- Fix `Expect` header handling for not found and not allowed routes #340
7+
8+
9+
0.15.2 (04-19-2015)
10+
-------------------
11+
12+
- Flow control subsystem refactoring
13+
14+
- Http server performace optimizations
15+
16+
- Allow to match any request method with `*`
17+
18+
- Explicitly call drain on transport #316
19+
20+
- Make chardet module dependency mandatory #318
21+
22+
- Support keep-alive for HTTP 1.0 #325
23+
24+
- Do not chunk single file during upload #327
25+
26+
- Add ClientSession object for cookie storage and default headers #328
27+
28+
- Add `keep_alive_on` argument for http server handler.
29+
30+
31+
0.15.1 (03-31-2015)
32+
-------------------
33+
34+
- Pass Autobahn Testsuit tests
35+
36+
- Fixed websocket fragmentation
37+
38+
- Fixed websocket close procedure
39+
40+
- Fixed parser buffer limits
41+
42+
- Added `timeout` parameter to WebSocketResponse ctor
43+
44+
- Added `WebSocketResponse.close_code` attribute
45+
46+
47+
0.15.0 (03-27-2015)
48+
-------------------
49+
50+
- Client WebSockets support
51+
52+
- New Multipart system #273
53+
54+
- Support for "Except" header #287 #267
55+
56+
- Set default Content-Type for post requests #184
57+
58+
- Fix issue with construction dynamic route with regexps and trailing slash #266
59+
60+
- Add repr to web.Request
61+
62+
- Add repr to web.Response
63+
64+
- Add repr for NotFound and NotAllowed match infos
65+
66+
- Add repr for web.Application
67+
68+
- Add repr to UrlMappingMatchInfo #217
69+
70+
- Gunicorn 19.2.x compatibility
71+
72+
173
0.14.4 (01-29-2015)
274
-------------------
375

@@ -9,7 +81,7 @@
981

1082
- Use path='/' by default for cookies #261
1183

12-
84+
1385
0.14.2 (01-23-2015)
1486
-------------------
1587

@@ -37,8 +109,8 @@
37109
- multidict views do not accept `getall` parameter anymore, it
38110
returns the full body anyway.
39111

40-
- multidicts have optional Cython optimization, cythonized version of multidicts is
41-
about 5 times faster than pure Python.
112+
- multidicts have optional Cython optimization, cythonized version of
113+
multidicts is about 5 times faster than pure Python.
42114

43115
- multidict.getall() returns `list`, not `tuple`.
44116

@@ -90,7 +162,8 @@
90162

91163
- Fixed graceful shutdown, disable keep-alive on connection closing.
92164

93-
- Decode http message with `utf-8` encoding, some servers send headers in utf-8 encoding #207
165+
- Decode http message with `utf-8` encoding, some servers send headers
166+
in utf-8 encoding #207
94167

95168
- Support `aiohtt.web` middlewares #209
96169

@@ -110,7 +183,8 @@
110183

111184
- Added POST attribute
112185

113-
- Response processing refactoring: constructor does't accept Request instance anymore.
186+
- Response processing refactoring: constructor does't accept Request
187+
instance anymore.
114188

115189
- Pass application instance to finish callback
116190

@@ -149,7 +223,8 @@
149223
- aiohttp.web.HTTPException and descendants now files response body
150224
with string like `404: NotFound`
151225

152-
- Fix multidict `__iter__`, the method should iterate over keys, not (key, value) pairs.
226+
- Fix multidict `__iter__`, the method should iterate over keys, not
227+
(key, value) pairs.
153228

154229

155230
0.10.0 (11-13-2014)
@@ -211,7 +286,8 @@
211286

212287
- Client files handling refactoring #20.
213288

214-
- Backward incompatible: Replace DataQueue with StreamReader for request payload #87.
289+
- Backward incompatible: Replace DataQueue with StreamReader for
290+
request payload #87.
215291

216292

217293
0.8.4 (07-04-2014)
@@ -297,7 +373,8 @@
297373

298374
- Do not return client connection to pool in case of exceptions.
299375

300-
- Rename SocketConnector to TCPConnector and UnixSocketConnector to UnixConnector.
376+
- Rename SocketConnector to TCPConnector and UnixSocketConnector to
377+
UnixConnector.
301378

302379

303380
0.7.0 (04-16-2014)
@@ -375,7 +452,8 @@
375452
0.4.4 (11-15-2013)
376453
------------------
377454

378-
- Resolve only AF_INET family, because it is not clear how to pass extra info to asyncio.
455+
- Resolve only AF_INET family, because it is not clear how to pass
456+
extra info to asyncio.
379457

380458

381459
0.4.3 (11-15-2013)

0 commit comments

Comments
 (0)