Compare commits

..

No commits in common. "b3b922949d14f604ed11dc0f749455fc062777e7" and "43d67977708d98cda0f47a3fc4f6f9a224cbd921" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -283,11 +283,7 @@ module Faraday
else
stub.block.call(env, meta)
end
# We need to explicitly pass `reason_phrase = nil` here to avoid keyword args conflicts.
# See https://github.com/lostisland/faraday/issues/1444
# TODO: remove `nil` explicit reason_phrase once Ruby 3.0 becomes minimum req. version
save_response(env, status, body, headers, nil)
save_response(env, status, body, headers)
@app.call(env)
end

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Faraday
VERSION = '2.5.2'
VERSION = '2.5.1'
end