blob: 67f842145a5a029a561e46b9c21d7f88e13d02ca [file] [log] [blame]
Joe Gregoriocf631a72015-09-28 09:49:57 -040010.9.2
2
3 Fixes in this release:
4
5 https://github.com/jcgregorio/httplib2/pull/313
6
7 Fix incorrect ResponseNotReady exceptions, retry on transient errors.
8
Joe Gregorio1af76a62015-04-09 10:10:39 -040090.9.1
10
Joe Gregoriof9f79722015-04-11 09:50:15 -040011 Fixes in this release:
12
13 https://github.com/jcgregorio/httplib2/pull/296
14
15 There was a problem with headers when a binary string is passed (like
16 b'Authorization').
17
18 https://github.com/jcgregorio/httplib2/pull/276
19
20 Default to doing DNS resolution through a proxy server if present.
21
Joe Gregorio1af76a62015-04-09 10:10:39 -0400220.9
23 Heartbleed
24
Joe Gregorioee9ee3c2013-03-06 15:31:15 -0500250.8
26 More fixes for the App Engine support.
27
28 Added a new feature that allows you to supply your own provider for the
29 CA_CERTS file. Just create a module named ca_certs_locater that has a method
30 get() that returns the file location of the CA_CERTS file.
31
32 Lots of clean up of the code formatting to make it more consistent.
33
Joe Gregorio76420172012-11-12 14:02:58 -0500340.7.7
35 More fixes for App Engine, now less likely to swallow important exceptions.
36 Adding proxy_info_from_* methods to Python3. Reviewed in https://codereview.appspot.com/6588078/.
37 Added GeoTrust cert
38 Make httplib2.Http() instances pickleable. Reviewed in https://codereview.appspot.com/6506074/
39
40 The following issues have been fixed:
41
42 229 python3 httplib2 clobbers multiple headers of same key
43 230 Expose meaningful exception for App Engine URLFetch ResponseTooLargeError
44 231 Expose App Engine URLFetch DeadlineExceededError for debugging purposes
45
Joe Gregorioa91406d2012-09-11 13:20:44 -0400460.7.6
47 Fixes for App Engine 2.7.
48
Joe Gregorioed72cba2012-08-28 12:19:28 -0400490.7.5
50 Keys are lowercase in a Response object, regardless of how Response object is constructed.
51 Add control so that Authorization: headers aren't forwarded on a 3xx response by default.
52 Set the reason correctly when running on App Engine. Patch from Alain Vongsouvanh. Reviewed in http://codereview.appspot.com/6422051/
53 Fix proxy socks for SSL connections. Fixes issue #199.
54 You can now set httplib2.RETRIES to the number of retries before a request
55 is considered to fail It is set to a default of 2 to mimic the traditional
56 behavior of httplib2.
57
58 The following issues have been addressed:
59
60 223 HEAD requests fail calling the close() method of ResponseDict instance.
61 222 Can't disable cert validation in appengine
62 204 Credentials can leak in HTTP redirects
63 210 Different API between Python 2 and Python 3 version breaks wsgi_intercept
64 214 ValueError on malformated cache entries
65 204 Credentials can leak in HTTP redirects
66
67
Joe Gregoriob850bd02012-03-02 08:37:22 -0800680.7.3
Jason R. Coombs43840892011-08-09 10:30:46 -040069 ProxyInfo objects now can construct themselves from environment
70 variables commonly-used in Unix environments. By default, the Http
71 class will construct a ProxyInfo instance based on these environment
72 variables. To achieve the previous behavior, where environment
73 variables are ignored, pass proxy_info=None to Http().
74
75 The following issues have been addressed:
76
77 Issue 159: automatic detection of proxy configuration.
Joe Gregoriob850bd02012-03-02 08:37:22 -080078 Issue 179: Allow unicode in proxy hostname.
79 Issue 194: Added support for setuptools.
80 Fixes for HTTP CONNECT proxies.
Jason R. Coombs43840892011-08-09 10:30:46 -040081
Joe Gregoriob2cfdf62011-06-16 10:11:13 -0400820.7.1
83 Fix failure to install cacerts.txt for 2.x installs.
84
Joe Gregoriob0c82ca2011-06-13 15:13:11 -0400850.7.0
86 The two major changes in this release are SSL Certificate
87 checking and App Engine support. By default the certificates
88 of an HTTPS connection are checked, but that can be disabled
89 via disable_ssl_certificate_validation. The second change
90 is that on App Engine there is a new connection object
91 that utilizes the urlfetch capabilities on App Engine, including
92 setting timeouts and validating certificates.
93
94 The following issues have been addressed:
95
96 Fixes issue 72. Always lowercase authorization header.
97 Fix issue 47. Redirects that become a GET should not have a body.
98 Fixes issue 19. Set Content-location on redirected HEAD requests
Jason R. Coombs43840892011-08-09 10:30:46 -040099 Fixes issue 139. Redirect with a GET on 302 regardless of the originating method.
100 Fixes issue 138. Handle unicode in headers when writing and retrieving cache entries. Who says headers have to be ASCII!
Joe Gregoriob0c82ca2011-06-13 15:13:11 -0400101 Add certificate validation. Work initially started by Christoph Kern.
102 Set a version number. Fixes issue # 135.
103 Sync to latest version of socks.py
104 Add gzip to the user-agent, in case we are making a request to an app engine project: http://code.google.com/appengine/kb/general.html#compression
105 Uses a custom httplib shim on App Engine to wrap urlfetch, as opposed
106 Add default support for optimistic concurrency on PATCH requests
107 Fixes issue 126. IPv6 under various conditions would fail.
108 Fixes issue 131. Handle socket.timeout's that occur during send.
109 proxy support: degrade gracefully when socket.socket is unavailable
110
111
Joe Gregoriof3116552009-12-28 13:02:42 -05001120.6.0
113
114 The following issues have been addressed:
115
Jason R. Coombs43840892011-08-09 10:30:46 -0400116 #51 - Failure to handle server legitimately closing connection before request body is fully sent
117 #77 - Duplicated caching test
Joe Gregoriof3116552009-12-28 13:02:42 -0500118 #65 - Transform _normalize_headers into a method of Http class
Jason R. Coombs43840892011-08-09 10:30:46 -0400119 #45 - Vary header
120 #73 - All files in Mercurial are executable
121 #81 - Have a useful .hgignore
122 #78 - Add release tags to the Mercurial repository
123 #67 - HEAD requests cause next request to be retried
Joe Gregoriof3116552009-12-28 13:02:42 -0500124
125 Mostly bug fixes, the big enhancement is the addition of proper Vary: header
126 handling. Thanks to Chris Dent for that change.
127
128 The other big change is the build process for distributions so that both python2 and python3
129 are included in the same .tar.gz/.zip file.
130
Joe Gregorio66611ff2009-07-19 01:32:17 -04001310.5.0
132
133 Added Python 3 support
134
135 Fixed the following bugs:
136
Jason R. Coombs43840892011-08-09 10:30:46 -0400137 #12 - Cache-Control: only-if-cached incorrectly does request if item not in cache
Joe Gregorio66611ff2009-07-19 01:32:17 -0400138 #39 - Deprecation warnings in Python 2.6
Joe Gregorio891439e2009-07-28 10:52:36 -0400139 #54 - Http.request fails accesing Google account via http proxy
Joe Gregorio66611ff2009-07-19 01:32:17 -0400140 #56 - Block on response.read() for HEAD requests.
141 #57 - Timeout ignore for Python 2.6
142 #58 - Fixed parsing of Cache-Control: header to make it more robust
143
Joe Gregorio891439e2009-07-28 10:52:36 -0400144 Also fixed a deprecation warning that appeared between Python 3.0 and 3.1.
Joe Gregorio66611ff2009-07-19 01:32:17 -0400145
joe.gregorio5fcc1992007-10-23 15:12:17 +00001460.4.0
jcgregorio14644372007-07-30 14:13:37 +0000147
joe.gregorio5fcc1992007-10-23 15:12:17 +0000148 Added support for proxies if the Socksipy module is installed.
149
Jason R. Coombs43840892011-08-09 10:30:46 -0400150 Fixed bug with some HEAD responses having content-length set to
joe.gregorio5fcc1992007-10-23 15:12:17 +0000151 zero incorrectly.
152
153 Fixed most except's to catch a specific exception.
jcgregorio14644372007-07-30 14:13:37 +0000154
155 Added 'connection_type' parameter to Http.request().
Jason R. Coombs43840892011-08-09 10:30:46 -0400156
joe.gregorio5fcc1992007-10-23 15:12:17 +0000157 The default for 'force_exception_to_status_code' was changed to False. Defaulting
158 to True was causing quite a bit of confusion.
jcgregorio14644372007-07-30 14:13:37 +0000159
160
jcgregorio463a8db2007-03-09 03:27:14 +00001610.3.0
162 Calling Http.request() with a relative URI, as opposed to an absolute URI,
163 will now throw a specific exception.
164
165 Http() now has an additional optional parameter for the socket timeout.
166
167 Exceptions can now be forced into responses. That is, instead of
168 throwing an exception, a good httlib2.Response object is returned
169 that describe the error with an appropriate status code.
170
171 Many improvements to the file cache:
172
Jason R. Coombs43840892011-08-09 10:30:46 -0400173 1. The names in the cache are now much less
jcgregorio463a8db2007-03-09 03:27:14 +0000174 opaque, which should help with debugging.
175
Jason R. Coombs43840892011-08-09 10:30:46 -0400176 2. The disk cache is now Apache mod_asis compatible.
177
jcgregorio463a8db2007-03-09 03:27:14 +0000178 3. A Content-Location: header is supplied and stored in the
179 cache which points to the original requested URI.
180
181 User supplied If-* headers now override httplib2 supplied
182 versions.
183
184 IRIs are now fully supported. Note that they MUST be passed in
185 as unicode objects.
186
187 Http.add_credentials() now takes an optional domain to restrict
188 the credentials to being only used on that domain.
189
Jason R. Coombs43840892011-08-09 10:30:46 -0400190 Added Http.add_certificate() which allows setting
jcgregorio463a8db2007-03-09 03:27:14 +0000191 a key and cert for SSL connnections.
192
193 Many other bugs fixed.
194
195
jcgregorioa0713ab2006-07-01 05:21:34 +00001960.2.0
197 Added support for Google Auth.
jcgregorio2d66d4f2006-02-07 05:34:14 +0000198
Jason R. Coombs43840892011-08-09 10:30:46 -0400199 Added experimental support for HMACDigest.
jcgregorioa0713ab2006-07-01 05:21:34 +0000200
jcgregorio92088922006-07-01 05:53:21 +0000201 Added support for a pluggable caching system. Now supports
202 the old system of using the file system and now memcached.
203
Jason R. Coombs43840892011-08-09 10:30:46 -0400204 Added httplib2.debuglevel which turns on debugging.
jcgregorio2d66d4f2006-02-07 05:34:14 +0000205
jcgregorio92088922006-07-01 05:53:21 +0000206 Change Response._previous to Response.previous.
207
208 Addded Http.follow_all_redirects which forces
Jason R. Coombs43840892011-08-09 10:30:46 -0400209 httplib2 to follow all redirects, as opposed to
jcgregorio92088922006-07-01 05:53:21 +0000210 following only the safe redirects. This makes the
211 GData protocol easier to use.
212
213 All known bugs fixed to date.
214
jcgregorio8421f272006-02-14 18:19:51 +00002150.1.1
jcgregorio2d66d4f2006-02-07 05:34:14 +0000216
jcgregorio4177ca12006-02-16 10:50:58 +0000217 Fixed several bugs raised by James Antill:
jcgregorio2d66d4f2006-02-07 05:34:14 +0000218 1. HEAD didn't get an Accept: header added like GET.
219 2. HEAD requests did not use the cache.
220 3. GET requests with Range: headers would erroneously return a full cached response.
jcgregorio8421f272006-02-14 18:19:51 +0000221 4. Subsequent requests to resources that had timed out would raise an exception.
jcgregorio2d66d4f2006-02-07 05:34:14 +0000222 And one feature request for 'method' to default to GET.
223
Jason R. Coombs43840892011-08-09 10:30:46 -0400224 Xavier Verges Farrero supplied what I needed to make the
jcgregorio4177ca12006-02-16 10:50:58 +0000225 library work with Python 2.3.
jcgregorio8421f272006-02-14 18:19:51 +0000226
jcgregorio1eed40f2006-02-15 18:56:46 +0000227 I added distutils based setup.py.
228
Jason R. Coombs43840892011-08-09 10:30:46 -04002290.1 Rev 86
230
jcgregorio2d66d4f2006-02-07 05:34:14 +0000231 Initial Release
232