3.4.3 (2024-01-16)
Fixed
- Accessing a lazy response (multiplexed enabled) that have multiple redirects did not work appropriately.
Changed
- Response
iter_content
anditer_line
read chunks as they arrive by default. The default chunk size is now-1
.
-1
mean to instruct that the chunks can be of variable sizes, depending on how packets arrives. It improves
overall performances in content streaming. - urllib3.future lower bound constraint has been raised to version 2.4.904 in order to accept
-1
as a chunk size.