]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.14.1 (#1164) 0.14.1
authorTom Christie <tom@tomchristie.com>
Tue, 11 Aug 2020 11:04:03 +0000 (12:04 +0100)
committerGitHub <noreply@github.com>
Tue, 11 Aug 2020 11:04:03 +0000 (12:04 +0100)
CHANGELOG.md
httpx/__version__.py

index 24f0091b8361f1bdb68ab8312d48890262cf3cb2..9593b94afcb63f5cb55ada157b50e8811933d95d 100644 (file)
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
 
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
 
+## 0.14.1 (August 11th, 2020)
+
+### Added
+
+* The `httpx.URL(...)` class now raises `httpx.InvalidURL` on invalid URLs, rather than exposing the underlying `rfc3986` exception. If a redirect response includes an invalid 'Location' header, then a `RemoteProtocolError` exception is raised, which will be associated with the request that caused it. (Pull #1163)
+
+### Fixed
+
+* Handling multiple `Set-Cookie` headers became broken in the 0.14.0 release, and is now resolved. (Pull #1156)
+
 ## 0.14.0 (August 7th, 2020)
 
 The 0.14 release includes a range of improvements to the public API, intended on preparing for our upcoming 1.0 release.
index 88ba13a8cec3f5b400fb4fe6927954a77d5b26ae..11b81182280422dc36686de1e38fd93aebfdb487 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.14.0"
+__version__ = "0.14.1"