blob: 17824aa46d04f89836303e3c4160d7b29e8b9208 [file] [log] [blame]
jcgregorio463a8db2007-03-09 03:27:14 +000010.3.0
2 Calling Http.request() with a relative URI, as opposed to an absolute URI,
3 will now throw a specific exception.
4
5 Http() now has an additional optional parameter for the socket timeout.
6
7 Exceptions can now be forced into responses. That is, instead of
8 throwing an exception, a good httlib2.Response object is returned
9 that describe the error with an appropriate status code.
10
11 Many improvements to the file cache:
12
13 1. The names in the cache are now much less
14 opaque, which should help with debugging.
15
16 2. The disk cache is now Apache mod_asis compatible.
17
18 3. A Content-Location: header is supplied and stored in the
19 cache which points to the original requested URI.
20
21 User supplied If-* headers now override httplib2 supplied
22 versions.
23
24 IRIs are now fully supported. Note that they MUST be passed in
25 as unicode objects.
26
27 Http.add_credentials() now takes an optional domain to restrict
28 the credentials to being only used on that domain.
29
30 Added Http.add_certificate() which allows setting
31 a key and cert for SSL connnections.
32
33 Many other bugs fixed.
34
35
jcgregorioa0713ab2006-07-01 05:21:34 +0000360.2.0
37 Added support for Google Auth.
jcgregorio2d66d4f2006-02-07 05:34:14 +000038
jcgregorioa0713ab2006-07-01 05:21:34 +000039 Added experimental support for HMACDigest.
40
jcgregorio92088922006-07-01 05:53:21 +000041 Added support for a pluggable caching system. Now supports
42 the old system of using the file system and now memcached.
43
jcgregorioa0713ab2006-07-01 05:21:34 +000044 Added httplib2.debuglevel which turns on debugging.
jcgregorio2d66d4f2006-02-07 05:34:14 +000045
jcgregorio92088922006-07-01 05:53:21 +000046 Change Response._previous to Response.previous.
47
48 Addded Http.follow_all_redirects which forces
49 httplib2 to follow all redirects, as opposed to
50 following only the safe redirects. This makes the
51 GData protocol easier to use.
52
53 All known bugs fixed to date.
54
jcgregorio8421f272006-02-14 18:19:51 +0000550.1.1
jcgregorio2d66d4f2006-02-07 05:34:14 +000056
jcgregorio4177ca12006-02-16 10:50:58 +000057 Fixed several bugs raised by James Antill:
jcgregorio2d66d4f2006-02-07 05:34:14 +000058 1. HEAD didn't get an Accept: header added like GET.
59 2. HEAD requests did not use the cache.
60 3. GET requests with Range: headers would erroneously return a full cached response.
jcgregorio8421f272006-02-14 18:19:51 +000061 4. Subsequent requests to resources that had timed out would raise an exception.
jcgregorio2d66d4f2006-02-07 05:34:14 +000062 And one feature request for 'method' to default to GET.
63
jcgregorio4177ca12006-02-16 10:50:58 +000064 Xavier Verges Farrero supplied what I needed to make the
65 library work with Python 2.3.
jcgregorio8421f272006-02-14 18:19:51 +000066
jcgregorio1eed40f2006-02-15 18:56:46 +000067 I added distutils based setup.py.
68
jcgregorio2d66d4f2006-02-07 05:34:14 +0000690.1 Rev 86
70
71 Initial Release
72