Merged
Conversation
j178
approved these changes
Aug 21, 2020
CHANGELOG.md
Outdated
|
|
||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). | ||
|
|
||
| ## 0.14.2 (...) |
Contributor
There was a problem hiding this comment.
Looks like we still need a date - is this PR waiting on anything else? :)
Contributor
Author
There was a problem hiding this comment.
Not blocked on anything nope. I'm happy for it to go whenever you are. 👍
florimondmanca
approved these changes
Aug 22, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
0.14.2 (August 24th, 2020)
Added
client.get(..., auth=None)to bypass the default authentication on a clients. (Pull Allow disabling auth per-request usingauth=None#1115)client.auth = ...property setter. (Pull AddClient.authsetter #1185)httpx.get(..., proxies=...)on top-level request functions. (Pull Addproxiesparameter to top-level API functions #1198)__module__ = 'httpx'on everything we expose via the public API. #1155)cookies=[(key, value)]list-of-two-tuples style usage. (Pull Made cookies construct-able from a list of tuples #1211)Fixed
Content-Lengthheader on streaming requests. (Pull Ignore transfer-encoding if content-length presents #1170)HEADrequests, settingallow_redirects=True. (Pull Enable redirects by default for HEAD requests #1183)httpxexception, not the underlyinghttpcoreexception. (Pull Map httpcore exceptions forResponseread methods #1190)httpcoretraceback, when transport exceptions occur. (Pull Include underlying httpcore exception tracebacks #1199)