summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorjcgregorio <devnull@localhost>2007-03-09 03:27:14 +0000
committerjcgregorio <devnull@localhost>2007-03-09 03:27:14 +0000
commit463a8dba8c1d0f06a69473093fc85c334908a2f3 (patch)
treed531a9172e0d7f41a3fdc782280e8162646bd2fa /CHANGELOG
parent87eee73c0c7b2c7b7e5251738703251a42f2633a (diff)
downloadhttplib2-463a8dba8c1d0f06a69473093fc85c334908a2f3.tar.gz
Updated changelog for 0.3.0 release
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG35
1 files changed, 35 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 695583c..17824aa 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,38 @@
+0.3.0
+ Calling Http.request() with a relative URI, as opposed to an absolute URI,
+ will now throw a specific exception.
+
+ Http() now has an additional optional parameter for the socket timeout.
+
+ Exceptions can now be forced into responses. That is, instead of
+ throwing an exception, a good httlib2.Response object is returned
+ that describe the error with an appropriate status code.
+
+ Many improvements to the file cache:
+
+ 1. The names in the cache are now much less
+ opaque, which should help with debugging.
+
+ 2. The disk cache is now Apache mod_asis compatible.
+
+ 3. A Content-Location: header is supplied and stored in the
+ cache which points to the original requested URI.
+
+ User supplied If-* headers now override httplib2 supplied
+ versions.
+
+ IRIs are now fully supported. Note that they MUST be passed in
+ as unicode objects.
+
+ Http.add_credentials() now takes an optional domain to restrict
+ the credentials to being only used on that domain.
+
+ Added Http.add_certificate() which allows setting
+ a key and cert for SSL connnections.
+
+ Many other bugs fixed.
+
+
0.2.0
Added support for Google Auth.