ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-HTTP/Changes
(Generate patch)

Comparing AnyEvent-HTTP/Changes (file contents):
Revision 1.43 by root, Thu Dec 30 04:30:24 2010 UTC vs.
Revision 1.90 by root, Thu Aug 30 00:08:16 2018 UTC

1Revision history for AnyEvent::HTTP 1Revision history for AnyEvent::HTTP
2 2
3TODO: provide lwp_request function that takes an lwp http requets and returns a http response. 3TODO: provide lwp_request function that takes an lwp http requets and returns a http response.
4TODO: http://efl20.com/wp-register.php refresh-header, instead of location 4TODO: set_proxy hook
5TODO: use proxy hook
6TODO: on_upgrade, for 101 responses?
7TODO: document session vs. sessionid correctly.
8TODO: support proxy username:password in both proxy switch and set_proxy string (dzagashev@gmail.com)
9TODO: remove "unexpectedly got a destructed handle"
5 10
6TODO: maybe support broken Expires header? 11TODO: maybe read big chunks in smaller portions for chunked-encoding + on_body.
12TODO: callback as body (Kostirya)
13TODO: infinite recursion(?) (Kostirya)
14TODO: default rbuf_max value maybe? how about reading large chunks in small parts?
15TODO: servers send empty reason, which then gets mangled with linear whitespace CRLF - maybe workaround?
16
17TODO: look into http 0.9 support (Kostirya <kostirya@gmail.com>)
18TODO: http://appft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&%23038;d=PG01&%23038;p=1&%23038;u=/netahtml/PTO/srchnum.html&%23038;r=1&%23038;f=G&%23038;l=50&%23038;s1="20110298798".PGNR.&%23038;OS=DN/20110298798&%23038;RS=DN/20110298798
19
202.25
21 - further improve relative redirection code.
22 - comment out code that tried to detect possible bugs with persistent
23 connection caching, but since it never triggered, it's probably
24 working fine :)
25
262.24
27 - do not call on_body callback on a response that AE::HTTP will recurse
28 on internally (reported by Антон Онуфриев and Ruslan Zakirov).
29
302.23 Sun Aug 28 11:30:33 CEST 2016
31 - relative redirects used the proxy schema instead of the request
32 url schema to generate the new url, which is wrong (analyzed by Felix
33 Ostmann).
34 - fix download example (reported by Felix Ostmann).
35
362.22 Thu May 14 04:04:03 CEST 2015
37 - ipv6 literals were not correctly parsed (analyzed by Raphael Geissert).
38 - delete the body when mutating request to GET request when
39 redirecting (reported by joe trader).
40 - send proxy-authorization header to proxy when using CONNECT
41 (reported by dzagashev@gmail.com).
42 - do not send Proxy-Authroization header when not using a proxy.
43 - when retrying a persistent request, switch persistency off.
44 - added t/02_ip_literals.t.
45
462.21 Mon Jun 9 01:35:54 CEST 2014
47 - correctly keep body when redirecting POSTs, instead of
48 deleting them.
49
502.2 Mon Jun 9 01:31:46 CEST 2014
51 - connection header was malformed (patch by Raphael Geissert).
52 - add lots of known idempotent methods from httpbis.
53 - implement relative location headers (rfc 7231), with fallback on URI.
54 - add support for status code 308 from rfc 7238.
55 - recommend URI.
56
572.15 Wed Nov 14 23:22:07 CET 2012
58 - use the recurse parameter to also limit the number of retries to be
59 done, avodiing endless loops with broken servers, as reported
60 by Carl Chambers.
61
622.14 Sun Apr 22 14:57:51 CEST 2012
63 - Time::Local::timegm croaks on out-of-range values. Don't let
64 this disturb AnyEvent::HTTP (reported by: tell me, I forgot...).
65
662.13 Wed Jul 27 17:53:58 CEST 2011
67 - garbled chunked responses caused AnyEvent::HTTP to malfunction
68 (patch by Dmitri Melikyan).
69 - fix GET => HEAD in one case in the documentation (James Bromberger).
70
712.12 Tue Jun 14 07:22:54 CEST 2011
72 - fix a possible 'Can't call method "destroyed"' error (which would
73 have been reported by Carl Chambers).
74
752.11 Tue May 10 14:33:28 CEST 2011
76 - the keepalive session cache wouldn't take port and scheme into account
77 when reusing connection - potentially causing information leaks
78 (reported by Nick Kostirya).
79 - bump AnyEvent dependency version (reported by Richard Harris).
80
812.1 Thu Feb 24 13:11:51 CET 2011
82 - the keepalive and persistent parameters were actually named
83 differently in the code - they now work as documented.
84 - fix a bug where callbacks would sometimes never be called when
85 the request timeout is near or below the persistent connection
86 timeout (testcase by Cindy Wang).
87 - destroying the guard would have no effect when a request was
88 recursing or being retired.
89
902.04 Sat Feb 19 07:45:24 CET 2011
91 - "proxy => undef" now overrides any global proxy when specified.
92 - require scheme in urls, also use a stricter match to match urls,
93 leading or trailing garbage is no longer tolerated.
94 - EXPERIMENTAL: allow '=' in cookie values.
95
962.03 Tue Jan 18 18:49:35 CET 2011
97 - dummy reupload, file gone from cpan somehow.
98
992.02 Wed Jan 12 04:29:37 CET 2011
100 - do not lowercase cookie names, only parameter names.
101
1022.01 Tue Jan 11 07:38:15 CET 2011
103 - add missing dependency on common::sense.
104 - add a resume download example.
105
1062.0 Tue Jan 4 09:16:56 CET 2011
107 - hopefully fully upgraded to HTTP/1.1.
108 - support HTTP/1.1 persistent and HTTP/1.0 keep-alive connections.
109 - drop https-proxy-connection support. seems unused and ill-specified.
110 - use more differentiated 59x status codes.
111 - properly use url (not proxy) hostname to verify server certificate.
112 - much improved cookie implementation:
113 - properly implement cookie expiry (for new cookies).
114 - new function to expire cookies and sessions: cookie_jar_expire.
115 - add special exception to parse broken expires= keys in
116 set-cookie headers.
117 - do not quote cookie values when not strictly necessary, to
118 improve compatibility with broken servers.
119 - accept and send lots of invalid cookie values exactly as
120 they were received - this should not impact valid values.
121 - lowercase cookie parameter names for improved compatibility.
122 - support the max-age cookie parameter, overrides expires.
123 - support cookie dates (and a few others) in parse_date.
124 - properly support value-less parameters (e.g. secure, httponly).
125 - do not send Host: header in a proxy CONNECT request.
126 - use common::sense.
127 - lowercase hostnames and schemes.
128 - ignore leading zeroes in http version.
129 - handle spaces in content-length headers more gracefully.
130
1311.5 Fri Dec 31 04:47:08 CET 2010
132 - bugfix: after headers were received, if any error occured the wrong
133 (server-sent) Status and Reason fields would be passed to the callback.
134 - when an error occurs during transfer, preserve status/reason.
7 - add socks4a connect example. 135 - add socks4a connect example.
8 - new "tcp_connect" parameter. 136 - new "tcp_connect" parameter.
9 - new format_date and parse_date functions. 137 - new format_date and parse_date functions.
10 - clarify that headers argument must consist of all 138 - diagnose unexpected eof as such when the length is known.
11 lowercase keys. 139 - add 205 to the responses without body.
12 140
131.46 Mon Sep 6 08:29:34 CEST 2010 1411.46 Mon Sep 6 08:29:34 CEST 2010
14 - some (broken) servers differentiate between empty search parts 142 - some (broken) servers differentiate between empty search parts
15 and nonexistant search parts, work around this (problem 143 and nonexistant search parts, work around this (problem
16 analyzed by Sergey Zasenko). 144 analyzed by Sergey Zasenko).
38 166
391.43 Fri Aug 14 17:02:02 CEST 2009 1671.43 Fri Aug 14 17:02:02 CEST 2009
40 - provide on_prepare callback on common request. 168 - provide on_prepare callback on common request.
41 169
421.42 Wed Aug 5 18:43:01 CEST 2009 1701.42 Wed Aug 5 18:43:01 CEST 2009
43 - allow suppression of auto-supplied header fieds by specifying undef 171 - allow suppression of auto-supplied header fields by specifying undef
44 (requested by Mr Guest). 172 (requested by Mr Guest).
45 - allow proxy scheme to be missing, as documented 173 - allow proxy scheme to be missing, as documented
46 (reported by Mr Guest). 174 (reported by Mr Guest).
47 - do not follow redirects if we do not have a location header 175 - do not follow redirects if we do not have a location header
48 (requested by Mr Guest). 176 (requested by Mr Guest).

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines