aboutsummaryrefslogtreecommitdiff
path: root/HISTORY.rst
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:26 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:26 -0700
commitc6ee35e00c5709435b3a6b664c44fceb70a918c6 (patch)
tree816307f3c7e1c80f1dd49d617e480e95198d9c18 /HISTORY.rst
parent9f376f89bdf80a40914218d64cd9cd61b25f449d (diff)
downloadpython-requests-c6ee35e00c5709435b3a6b664c44fceb70a918c6.tar
python-requests-c6ee35e00c5709435b3a6b664c44fceb70a918c6.tar.gz
Imported Upstream version 1.2.0
Diffstat (limited to 'HISTORY.rst')
-rw-r--r--HISTORY.rst34
1 files changed, 31 insertions, 3 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index a3491a1..26aa25f 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,34 @@
History
-------
+1.2.0 (2013-03-31)
+++++++++++++++++++
+
+- Fixed cookies on sessions and on requests
+- Significantly change how hooks are dispatched - hooks now receive all the
+ arguments specified by the user when making a request so hooks can make a
+ secondary request with the same parameters. This is especially necessary for
+ authentication handler authors
+- certifi support was removed
+- Fixed bug where using OAuth 1 with body ``signature_type`` sent no data
+- Major proxy work thanks to @Lukasa including parsing of proxy authentication
+ from the proxy url
+- Fix DigestAuth handling too many 401s
+- Update vendored urllib3 to include SSL bug fixes
+- Allow keyword arguments to be passed to ``json.loads()`` via the
+ ``Response.json()`` method
+- Don't send ``Content-Length`` header by default on ``GET`` or ``HEAD``
+ requests
+- Add ``elapsed`` attribute to ``Response`` objects to time how long a request
+ took.
+- Fix ``RequestsCookieJar``
+- Sessions and Adapters are now picklable, i.e., can be used with the
+ mutiprocessing library
+- Update charade to version 1.0.3
+
+The change in how hooks are dispatched will likely cause a great deal of
+issues.
+
1.1.0 (2013-01-10)
++++++++++++++++++
@@ -40,7 +68,7 @@ History
- /s/prefetch/stream
- Removal of all configuration
- Standard library logging
-- Make Reponse.json() callable, not property.
+- Make Response.json() callable, not property.
- Usage of new charade project, which provides python 2 and 3 simultaneous chardet.
- Removal of all hooks except 'response'
- Removal of all authentication helpers (OAuth, Kerberos)
@@ -575,10 +603,10 @@ This is not a backwards compatible change.
++++++++++++++++++
* New HTTPHandling Methods
- - Reponse.__nonzero__ (false if bad HTTP Status)
+ - Response.__nonzero__ (false if bad HTTP Status)
- Response.ok (True if expected HTTP Status)
- Response.error (Logged HTTPError if bad HTTP Status)
- - Reponse.raise_for_status() (Raises stored HTTPError)
+ - Response.raise_for_status() (Raises stored HTTPError)
0.2.2 (2011-02-14)