mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
bump version to 1.1.5
This commit is contained in:
parent
290da6f1fe
commit
1c64a31ac8
@ -1,6 +1,6 @@
|
||||
# 1.1.4
|
||||
|
||||
## bug reports
|
||||
## bugfixes
|
||||
|
||||
* datadog adapter: use `Gem::Version` to invoke the correct configuration API.
|
||||
* stream plugin: do not preempt request enqueuing (this was making integration with the `:follow_redirects` plugin fail when set up with `webmock`).
|
||||
|
12
doc/release_notes/1_1_5.md
Normal file
12
doc/release_notes/1_1_5.md
Normal file
@ -0,0 +1,12 @@
|
||||
# 1.1.5
|
||||
|
||||
## improvements
|
||||
|
||||
* pattern matching support for responses has been backported to ruby 2.7 as well.
|
||||
|
||||
## bugfixes
|
||||
|
||||
* `stream` plugin: fix for `HTTPX::StreamResponse#each_line` not yielding the last line of the payload when not delimiter-terminated.
|
||||
* `stream` plugin: fix `webmock` adapter integration when methods calls would happen in the `HTTPX::StreamResponse#each` block.
|
||||
* `stream` plugin: fix `:follow_redirects` plugin integration which was caching the redirect response and using it for method calls inside the `HTTPX::StreamResponse#each` block.
|
||||
* "103 early hints" responses will be ignored when processing the response (it was causing the response returned by sesssions to hold its headers, instead of the following 200 response, while keeping the 200 response body).
|
@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module HTTPX
|
||||
VERSION = "1.1.4"
|
||||
VERSION = "1.1.5"
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user