Skip to content

Commit 4161d7a

Browse files
Version 0.14.2 (#1207)
* Version 0.14.2 * Update CHANGELOG.md * Update release notes
1 parent 6e6ece6 commit 4161d7a

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## 0.14.2 (August 24th, 2020)
8+
9+
### Added
10+
11+
* Support `client.get(..., auth=None)` to bypass the default authentication on a clients. (Pull #1115)
12+
* Support `client.auth = ...` property setter. (Pull #1185)
13+
* Support `httpx.get(..., proxies=...)` on top-level request functions. (Pull #1198)
14+
* Display instances with nicer import styles. (Eg. <httpx.ReadTimeout ...>) (Pull #1155)
15+
* Support `cookies=[(key, value)]` list-of-two-tuples style usage. (Pull #1211)
16+
17+
### Fixed
18+
19+
* Ensure that automatically included headers on a request may be modified. (Pull #1205)
20+
* Allow explicit `Content-Length` header on streaming requests. (Pull #1170)
21+
* Handle URL quoted usernames and passwords properly. (Pull #1159)
22+
* Use more consistent default for `HEAD` requests, setting `allow_redirects=True`. (Pull #1183)
23+
* If a transport error occurs while streaming the response, raise an `httpx` exception, not the underlying `httpcore` exception. (Pull #1190)
24+
* Include the underlying `httpcore` traceback, when transport exceptions occur. (Pull #1199)
25+
726
## 0.14.1 (August 11th, 2020)
827

928
### Added

httpx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "httpx"
22
__description__ = "A next generation HTTP client, for Python 3."
3-
__version__ = "0.14.1"
3+
__version__ = "0.14.2"

0 commit comments

Comments
 (0)