blob: 628f44fa21bb6cea739bda01b2e969cf6ed6a901 [file] [log] [blame]
Sergey Shepelev5dee7292018-03-21 21:13:04 +030010.11.0
2
3 Add DigiCert Global Root G2 serial 033af1e6a711a9a0bb2864b11d09fae5
4 https://github.com/httplib2/httplib2/pull/91
5
6 python3 proxy support
7 https://github.com/httplib2/httplib2/pull/90
8
9 If no_proxy environment value ends with comma then proxy is not used
10 https://github.com/httplib2/httplib2/issues/11
11
12 fix UnicodeDecodeError using socks5 proxy
13 https://github.com/httplib2/httplib2/pull/64
14
15 Respect NO_PROXY env var in proxy_info_from_url
16 https://github.com/httplib2/httplib2/pull/58
17
18 NO_PROXY=bar was matching foobar (suffix without dot delimiter)
19 New behavior matches curl/wget:
20 - no_proxy=foo.bar will only skip proxy for exact hostname match
21 - no_proxy=.wild.card will skip proxy for any.subdomains.wild.card
22 https://github.com/httplib2/httplib2/issues/94
23
24 Bugfix for Content-Encoding: deflate
25 https://stackoverflow.com/a/22311297
26
Sergey Shepelev1ae16e02017-02-06 20:56:20 +0300270.10.3
28
29 Fix certificate validation on Python<=2.7.8 without ssl.CertificateError
30 https://github.com/httplib2/httplib2/issues/45
31
Sergey Shepelev7b54fbb2017-02-04 00:09:28 +0300320.10.2
33
34 Just a reupload of 0.10.1, which was broken for Python3
35 because wheel distribution doesn't play well with our 2/3 split code base.
36 https://github.com/httplib2/httplib2/issues/43
37
Sergey Shepelev46233772017-02-03 22:09:29 +0300380.10.1
39
40 This is the first release by new httplib2 team. See post by Joe
41 https://bitworking.org/news/2016/03/an_update_on_httplib2
42
43 Remove VeriSign Class 3 CA from trusted certs
44 https://googleonlinesecurity.blogspot.com/2015/12/proactive-measures-in-digital.html
45
46 Add IdenTrust DST Root CA X3
47 https://github.com/httplib2/httplib2/pull/26
48
49 Support for specifying the SSL protocol version (Python v2)
50 https://github.com/jcgregorio/httplib2/issues/329
51
52 On App Engine use urlfetch's default deadline if None is passed.
53
54 Fix TypeError on AppEngine __init__() got an unexpected keyword argument 'ssl_version’”
55 https://github.com/httplib2/httplib2/pull/12
56
57 Send SNI data for SSL connections on Python 2.7.9+
58 Verify the server hostname if certificate validation is enabled
59 https://github.com/httplib2/httplib2/pull/13
60
61 Add proxy_headers argument to ProxyInfo constructor
62 https://github.com/httplib2/httplib2/pull/21
63
64 Make disable_ssl_certificate_validation work with Python 3.5.
65 https://github.com/httplib2/httplib2/pull/15
66
67 Fix socket error handling
68 https://github.com/httplib2/httplib2/commit/eb7468561714a5b700d5a3d8fa1a8794de02b9ef
69 https://github.com/httplib2/httplib2/commit/e7f6e622047107e701ee70e7ec586717d97b0cbb
70
Joe Gregoriocf631a72015-09-28 09:49:57 -0400710.9.2
72
73 Fixes in this release:
74
75 https://github.com/jcgregorio/httplib2/pull/313
76
77 Fix incorrect ResponseNotReady exceptions, retry on transient errors.
78
Joe Gregorio1af76a62015-04-09 10:10:39 -0400790.9.1
80
Joe Gregoriof9f79722015-04-11 09:50:15 -040081 Fixes in this release:
82
83 https://github.com/jcgregorio/httplib2/pull/296
84
85 There was a problem with headers when a binary string is passed (like
86 b'Authorization').
87
88 https://github.com/jcgregorio/httplib2/pull/276
89
90 Default to doing DNS resolution through a proxy server if present.
91
Joe Gregorio1af76a62015-04-09 10:10:39 -0400920.9
93 Heartbleed
94
Joe Gregorioee9ee3c2013-03-06 15:31:15 -0500950.8
96 More fixes for the App Engine support.
97
98 Added a new feature that allows you to supply your own provider for the
99 CA_CERTS file. Just create a module named ca_certs_locater that has a method
100 get() that returns the file location of the CA_CERTS file.
101
102 Lots of clean up of the code formatting to make it more consistent.
103
Joe Gregorio76420172012-11-12 14:02:58 -05001040.7.7
105 More fixes for App Engine, now less likely to swallow important exceptions.
106 Adding proxy_info_from_* methods to Python3. Reviewed in https://codereview.appspot.com/6588078/.
107 Added GeoTrust cert
108 Make httplib2.Http() instances pickleable. Reviewed in https://codereview.appspot.com/6506074/
109
110 The following issues have been fixed:
111
112 229 python3 httplib2 clobbers multiple headers of same key
113 230 Expose meaningful exception for App Engine URLFetch ResponseTooLargeError
114 231 Expose App Engine URLFetch DeadlineExceededError for debugging purposes
115
Joe Gregorioa91406d2012-09-11 13:20:44 -04001160.7.6
117 Fixes for App Engine 2.7.
118
Joe Gregorioed72cba2012-08-28 12:19:28 -04001190.7.5
120 Keys are lowercase in a Response object, regardless of how Response object is constructed.
121 Add control so that Authorization: headers aren't forwarded on a 3xx response by default.
122 Set the reason correctly when running on App Engine. Patch from Alain Vongsouvanh. Reviewed in http://codereview.appspot.com/6422051/
123 Fix proxy socks for SSL connections. Fixes issue #199.
124 You can now set httplib2.RETRIES to the number of retries before a request
125 is considered to fail It is set to a default of 2 to mimic the traditional
126 behavior of httplib2.
127
128 The following issues have been addressed:
129
130 223 HEAD requests fail calling the close() method of ResponseDict instance.
131 222 Can't disable cert validation in appengine
132 204 Credentials can leak in HTTP redirects
133 210 Different API between Python 2 and Python 3 version breaks wsgi_intercept
134 214 ValueError on malformated cache entries
135 204 Credentials can leak in HTTP redirects
136
137
Joe Gregoriob850bd02012-03-02 08:37:22 -08001380.7.3
Jason R. Coombs43840892011-08-09 10:30:46 -0400139 ProxyInfo objects now can construct themselves from environment
140 variables commonly-used in Unix environments. By default, the Http
141 class will construct a ProxyInfo instance based on these environment
142 variables. To achieve the previous behavior, where environment
143 variables are ignored, pass proxy_info=None to Http().
144
145 The following issues have been addressed:
146
147 Issue 159: automatic detection of proxy configuration.
Joe Gregoriob850bd02012-03-02 08:37:22 -0800148 Issue 179: Allow unicode in proxy hostname.
149 Issue 194: Added support for setuptools.
150 Fixes for HTTP CONNECT proxies.
Jason R. Coombs43840892011-08-09 10:30:46 -0400151
Joe Gregoriob2cfdf62011-06-16 10:11:13 -04001520.7.1
153 Fix failure to install cacerts.txt for 2.x installs.
154
Joe Gregoriob0c82ca2011-06-13 15:13:11 -04001550.7.0
156 The two major changes in this release are SSL Certificate
157 checking and App Engine support. By default the certificates
158 of an HTTPS connection are checked, but that can be disabled
159 via disable_ssl_certificate_validation. The second change
160 is that on App Engine there is a new connection object
161 that utilizes the urlfetch capabilities on App Engine, including
162 setting timeouts and validating certificates.
163
164 The following issues have been addressed:
165
166 Fixes issue 72. Always lowercase authorization header.
167 Fix issue 47. Redirects that become a GET should not have a body.
168 Fixes issue 19. Set Content-location on redirected HEAD requests
Jason R. Coombs43840892011-08-09 10:30:46 -0400169 Fixes issue 139. Redirect with a GET on 302 regardless of the originating method.
170 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 -0400171 Add certificate validation. Work initially started by Christoph Kern.
172 Set a version number. Fixes issue # 135.
173 Sync to latest version of socks.py
174 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
175 Uses a custom httplib shim on App Engine to wrap urlfetch, as opposed
176 Add default support for optimistic concurrency on PATCH requests
177 Fixes issue 126. IPv6 under various conditions would fail.
178 Fixes issue 131. Handle socket.timeout's that occur during send.
179 proxy support: degrade gracefully when socket.socket is unavailable
180
181
Joe Gregoriof3116552009-12-28 13:02:42 -05001820.6.0
183
184 The following issues have been addressed:
185
Jason R. Coombs43840892011-08-09 10:30:46 -0400186 #51 - Failure to handle server legitimately closing connection before request body is fully sent
187 #77 - Duplicated caching test
Joe Gregoriof3116552009-12-28 13:02:42 -0500188 #65 - Transform _normalize_headers into a method of Http class
Jason R. Coombs43840892011-08-09 10:30:46 -0400189 #45 - Vary header
190 #73 - All files in Mercurial are executable
191 #81 - Have a useful .hgignore
192 #78 - Add release tags to the Mercurial repository
193 #67 - HEAD requests cause next request to be retried
Joe Gregoriof3116552009-12-28 13:02:42 -0500194
195 Mostly bug fixes, the big enhancement is the addition of proper Vary: header
196 handling. Thanks to Chris Dent for that change.
197
198 The other big change is the build process for distributions so that both python2 and python3
199 are included in the same .tar.gz/.zip file.
200
Joe Gregorio66611ff2009-07-19 01:32:17 -04002010.5.0
202
203 Added Python 3 support
204
205 Fixed the following bugs:
206
Jason R. Coombs43840892011-08-09 10:30:46 -0400207 #12 - Cache-Control: only-if-cached incorrectly does request if item not in cache
Joe Gregorio66611ff2009-07-19 01:32:17 -0400208 #39 - Deprecation warnings in Python 2.6
Jakub Wilk4b22c7e2017-03-02 00:05:56 +0100209 #54 - Http.request fails accessing Google account via http proxy
Joe Gregorio66611ff2009-07-19 01:32:17 -0400210 #56 - Block on response.read() for HEAD requests.
211 #57 - Timeout ignore for Python 2.6
212 #58 - Fixed parsing of Cache-Control: header to make it more robust
213
Joe Gregorio891439e2009-07-28 10:52:36 -0400214 Also fixed a deprecation warning that appeared between Python 3.0 and 3.1.
Joe Gregorio66611ff2009-07-19 01:32:17 -0400215
joe.gregorio5fcc1992007-10-23 15:12:17 +00002160.4.0
jcgregorio14644372007-07-30 14:13:37 +0000217
joe.gregorio5fcc1992007-10-23 15:12:17 +0000218 Added support for proxies if the Socksipy module is installed.
219
Jason R. Coombs43840892011-08-09 10:30:46 -0400220 Fixed bug with some HEAD responses having content-length set to
joe.gregorio5fcc1992007-10-23 15:12:17 +0000221 zero incorrectly.
222
223 Fixed most except's to catch a specific exception.
jcgregorio14644372007-07-30 14:13:37 +0000224
225 Added 'connection_type' parameter to Http.request().
Jason R. Coombs43840892011-08-09 10:30:46 -0400226
joe.gregorio5fcc1992007-10-23 15:12:17 +0000227 The default for 'force_exception_to_status_code' was changed to False. Defaulting
228 to True was causing quite a bit of confusion.
jcgregorio14644372007-07-30 14:13:37 +0000229
230
jcgregorio463a8db2007-03-09 03:27:14 +00002310.3.0
232 Calling Http.request() with a relative URI, as opposed to an absolute URI,
233 will now throw a specific exception.
234
235 Http() now has an additional optional parameter for the socket timeout.
236
237 Exceptions can now be forced into responses. That is, instead of
238 throwing an exception, a good httlib2.Response object is returned
239 that describe the error with an appropriate status code.
240
241 Many improvements to the file cache:
242
Jason R. Coombs43840892011-08-09 10:30:46 -0400243 1. The names in the cache are now much less
jcgregorio463a8db2007-03-09 03:27:14 +0000244 opaque, which should help with debugging.
245
Jason R. Coombs43840892011-08-09 10:30:46 -0400246 2. The disk cache is now Apache mod_asis compatible.
247
jcgregorio463a8db2007-03-09 03:27:14 +0000248 3. A Content-Location: header is supplied and stored in the
249 cache which points to the original requested URI.
250
251 User supplied If-* headers now override httplib2 supplied
252 versions.
253
254 IRIs are now fully supported. Note that they MUST be passed in
255 as unicode objects.
256
257 Http.add_credentials() now takes an optional domain to restrict
258 the credentials to being only used on that domain.
259
Jason R. Coombs43840892011-08-09 10:30:46 -0400260 Added Http.add_certificate() which allows setting
Jakub Wilk4b22c7e2017-03-02 00:05:56 +0100261 a key and cert for SSL connections.
jcgregorio463a8db2007-03-09 03:27:14 +0000262
263 Many other bugs fixed.
264
265
jcgregorioa0713ab2006-07-01 05:21:34 +00002660.2.0
267 Added support for Google Auth.
jcgregorio2d66d4f2006-02-07 05:34:14 +0000268
Jason R. Coombs43840892011-08-09 10:30:46 -0400269 Added experimental support for HMACDigest.
jcgregorioa0713ab2006-07-01 05:21:34 +0000270
jcgregorio92088922006-07-01 05:53:21 +0000271 Added support for a pluggable caching system. Now supports
272 the old system of using the file system and now memcached.
273
Jason R. Coombs43840892011-08-09 10:30:46 -0400274 Added httplib2.debuglevel which turns on debugging.
jcgregorio2d66d4f2006-02-07 05:34:14 +0000275
jcgregorio92088922006-07-01 05:53:21 +0000276 Change Response._previous to Response.previous.
277
Jakub Wilk4b22c7e2017-03-02 00:05:56 +0100278 Added Http.follow_all_redirects which forces
Jason R. Coombs43840892011-08-09 10:30:46 -0400279 httplib2 to follow all redirects, as opposed to
jcgregorio92088922006-07-01 05:53:21 +0000280 following only the safe redirects. This makes the
281 GData protocol easier to use.
282
283 All known bugs fixed to date.
284
jcgregorio8421f272006-02-14 18:19:51 +00002850.1.1
jcgregorio2d66d4f2006-02-07 05:34:14 +0000286
jcgregorio4177ca12006-02-16 10:50:58 +0000287 Fixed several bugs raised by James Antill:
jcgregorio2d66d4f2006-02-07 05:34:14 +0000288 1. HEAD didn't get an Accept: header added like GET.
289 2. HEAD requests did not use the cache.
290 3. GET requests with Range: headers would erroneously return a full cached response.
jcgregorio8421f272006-02-14 18:19:51 +0000291 4. Subsequent requests to resources that had timed out would raise an exception.
jcgregorio2d66d4f2006-02-07 05:34:14 +0000292 And one feature request for 'method' to default to GET.
293
Jason R. Coombs43840892011-08-09 10:30:46 -0400294 Xavier Verges Farrero supplied what I needed to make the
jcgregorio4177ca12006-02-16 10:50:58 +0000295 library work with Python 2.3.
jcgregorio8421f272006-02-14 18:19:51 +0000296
jcgregorio1eed40f2006-02-15 18:56:46 +0000297 I added distutils based setup.py.
298
Jason R. Coombs43840892011-08-09 10:30:46 -04002990.1 Rev 86
300
jcgregorio2d66d4f2006-02-07 05:34:14 +0000301 Initial Release
302