jcgregorio | 463a8db | 2007-03-09 03:27:14 +0000 | [diff] [blame^] | 1 | 0.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 | |
jcgregorio | a0713ab | 2006-07-01 05:21:34 +0000 | [diff] [blame] | 36 | 0.2.0 |
| 37 | Added support for Google Auth. |
jcgregorio | 2d66d4f | 2006-02-07 05:34:14 +0000 | [diff] [blame] | 38 | |
jcgregorio | a0713ab | 2006-07-01 05:21:34 +0000 | [diff] [blame] | 39 | Added experimental support for HMACDigest. |
| 40 | |
jcgregorio | 9208892 | 2006-07-01 05:53:21 +0000 | [diff] [blame] | 41 | Added support for a pluggable caching system. Now supports |
| 42 | the old system of using the file system and now memcached. |
| 43 | |
jcgregorio | a0713ab | 2006-07-01 05:21:34 +0000 | [diff] [blame] | 44 | Added httplib2.debuglevel which turns on debugging. |
jcgregorio | 2d66d4f | 2006-02-07 05:34:14 +0000 | [diff] [blame] | 45 | |
jcgregorio | 9208892 | 2006-07-01 05:53:21 +0000 | [diff] [blame] | 46 | 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 | |
jcgregorio | 8421f27 | 2006-02-14 18:19:51 +0000 | [diff] [blame] | 55 | 0.1.1 |
jcgregorio | 2d66d4f | 2006-02-07 05:34:14 +0000 | [diff] [blame] | 56 | |
jcgregorio | 4177ca1 | 2006-02-16 10:50:58 +0000 | [diff] [blame] | 57 | Fixed several bugs raised by James Antill: |
jcgregorio | 2d66d4f | 2006-02-07 05:34:14 +0000 | [diff] [blame] | 58 | 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. |
jcgregorio | 8421f27 | 2006-02-14 18:19:51 +0000 | [diff] [blame] | 61 | 4. Subsequent requests to resources that had timed out would raise an exception. |
jcgregorio | 2d66d4f | 2006-02-07 05:34:14 +0000 | [diff] [blame] | 62 | And one feature request for 'method' to default to GET. |
| 63 | |
jcgregorio | 4177ca1 | 2006-02-16 10:50:58 +0000 | [diff] [blame] | 64 | Xavier Verges Farrero supplied what I needed to make the |
| 65 | library work with Python 2.3. |
jcgregorio | 8421f27 | 2006-02-14 18:19:51 +0000 | [diff] [blame] | 66 | |
jcgregorio | 1eed40f | 2006-02-15 18:56:46 +0000 | [diff] [blame] | 67 | I added distutils based setup.py. |
| 68 | |
jcgregorio | 2d66d4f | 2006-02-07 05:34:14 +0000 | [diff] [blame] | 69 | 0.1 Rev 86 |
| 70 | |
| 71 | Initial Release |
| 72 | |