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.
Hey team. 👋🏼
Alrighty we've got ourselves a release here. I think this strikes the right balance between pushing forwards towards an improved and simplified 1.0 release while minimising disruption in getting there.
0.28.0 (15th November, 2024)
The 0.28 release includes a limited set of backwards incompatible changes.
Backwards incompatible changes:
SSL configuration has been significantly simplified.
verify
argument no longer accepts string arguments.cert
argument has now been removed.SSL_CERT_FILE
andSSL_CERT_DIR
environment variables are no longer automatically used.For users of the standard
verify=True
orverify=False
cases this should require no changes.For information on configuring more complex SSL cases, please see the SSL documentation.
The following changes are also included:
URL.raw
property has now been deprecated, and will raise warnings.proxies
argument has now been removed.app
argument has now been removed.certifi
andhttpcore
are only imported if required. (made dependencies on certifi and httpcore only load when required #3377)socks5h
as a valid proxy scheme. (add socks5h proxy support #3178)Request()
method signature in line withclient.request()
andhttpx.request()
. (CleanupRequest
method parameter. #3378)