bump version to 1.1.5

This commit is contained in:
HoneyryderChuck 2023-11-23 13:44:40 +00:00
parent 290da6f1fe
commit 1c64a31ac8
3 changed files with 14 additions and 2 deletions

View File

@ -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`).

View 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).

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module HTTPX
VERSION = "1.1.4"
VERSION = "1.1.5"
end