mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-12-08 00:00:58 -05:00
bumped version to 0.19.5
This commit is contained in:
parent
2a9f56cb44
commit
603fc0979a
13
doc/release_notes/0_19_5.md
Normal file
13
doc/release_notes/0_19_5.md
Normal file
@ -0,0 +1,13 @@
|
||||
# 0.19.5
|
||||
|
||||
## Features
|
||||
|
||||
### DNS: resolv.conf search/ndots options support (native/https resolvers)
|
||||
|
||||
Both the native (default) as well as the HTTPS (DoH) resolvers now support the "search" and "ndots" options, which adds domain "suffixes" under certain conditions to be used in name resolutions (this is a quite common feature found in kubernetes pods).
|
||||
|
||||
(While this means a new feature is being shipped in a patch release, one can argue that this feature "fixes" DNS in `httpx`.)
|
||||
|
||||
## Bugfixes
|
||||
|
||||
* skipping headers comparison in HTTPX::Options#==; this had the unintended consequence of breaking connection reuse when crafting requests in a certain way, thereby making every request to the same origin issue their own connection, resulting, in multi-request scenarios (and with the `:persistent` plugin), in the process exhausting the max amount of allowed file descriptors.
|
||||
@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module HTTPX
|
||||
VERSION = "0.19.4"
|
||||
VERSION = "0.19.5"
|
||||
end
|
||||
|
||||
@ -1,4 +1,7 @@
|
||||
-
|
||||
-
|
||||
name: "0.19.5"
|
||||
path: "0_19_5_md.html"
|
||||
-
|
||||
name: "0.19.4"
|
||||
path: "0_19_4_md.html"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user