mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-05 00:02:38 -04:00
bumped version to 0.19.2
This commit is contained in:
parent
1fd9cbc83e
commit
b1a7e425ce
7
doc/release_notes/0_19_2.md
Normal file
7
doc/release_notes/0_19_2.md
Normal file
@ -0,0 +1,7 @@
|
||||
# 0.19.2
|
||||
|
||||
## Bugfixes
|
||||
|
||||
* skip resolution delay path for early resolve cases
|
||||
|
||||
when the early resolve path (using IP, /etc/hosts IP, IP from cache) is followed, emit_addresses is called, and in a particular case (dual-stack network but using an IPv4 address), the happy eyeballs resolution delay path was activated when it shouldn't (it's meant to be used only for DNS network requests), and resulted in @pool being called before it was ever set. This simple check ensures that it doesn't happen before it must.
|
@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module HTTPX
|
||||
VERSION = "0.19.1"
|
||||
VERSION = "0.19.2"
|
||||
end
|
||||
|
@ -1,4 +1,7 @@
|
||||
-
|
||||
-
|
||||
name: "0.19.2"
|
||||
path: "0_19_2_md.html"
|
||||
-
|
||||
name: "0.19.1"
|
||||
path: "0_19_1_md.html"
|
||||
|
Loading…
x
Reference in New Issue
Block a user