Yutaka Kamei
fe6e71bbe0
Update @param
of methods on Connection
( #1452 )
2022-10-03 14:29:08 +01:00
Joe Swatosh
e1dbdf065e
Forward the env to Request::Authorization#header_from ( #1450 )
2022-10-03 13:20:07 +01:00
Matt
b3b922949d
Version bump to 2.5.2
2022-08-11 13:48:46 +01:00
Matt
89b1fe3da9
Explicitly pass reason_phrase
to save_response
in test adapter. ( #1445 )
...
Fixes #1444
2022-08-11 13:48:13 +01:00
Matt
43d6797770
Enables and fixes all new cops. ( #1443 )
2022-08-08 15:46:54 +01:00
Mattia Giuffrida
5e01af3828
Version bump to 2.5.1
2022-08-08 14:29:52 +01:00
Matt
591b58fc06
Version bump to 2.5.0
2022-08-08 12:29:03 +01:00
Mattia Giuffrida
6799f5852d
Introduce new streaming API ( #1439 )
...
* Backwards-compatible
* Allow adapters to provide response info to on_call block
* Provide `stream_response` helper method
2022-08-08 12:23:09 +01:00
Matt
69e88b4d52
Version bump to 2.4.0
2022-07-28 10:04:18 +01:00
Yutaka Kamei
cfbea91a69
Support Proc type for stubbed request body ( #1436 )
...
Previously, the Faraday testing adapter compared the request body to the
stubbed body just by calling `#==` if the stubbed body is present.
Sometimes, I want to check the equality between request and stubbed body
in more advanced ways. For example, there is a case that I want to check
only the parts of the body are actually passed to Faraday instance like
this:
```ruby
stubs = Faraday::Adapter::Test::Stubs.new do |stub|
stub.post('/foo', '{"name:"YK","created_at":"ANY STRING IS OK"}') { [200, {}, ''] }
end
connection.post('/foo', JSON.dump(name: 'YK', created_at: Time.now))
stubs.verify_stubbed_calls
```
In this case, it's difficult to make tests always pass with
`"created_at"` because the value is dynamic. So, I came up with an idea
to pass a proc as a stubbed value and compare bodies, inside the proc:
```ruby
stubs = Faraday::Adapter::Test::Stubs.new do |stub|
check = -> (request_body) { JSON.parse(request_body).slice('name') == { 'name' => 'YK' } }
stub.post('/foo', check) { [200, {}, ''] }
end
connection.post('/foo', JSON.dump(name: 'YK', created_at: Time.now))
stubs.verify_stubbed_calls
```
I believe this would be flexible but compatible with the previous behavior.
2022-07-28 10:03:13 +01:00
Konstantin S Kazarin
d420a12a57
Handle verify hostname ssl option ( #1428 )
2022-06-30 22:26:16 +01:00
Matt
6ea010be93
Version bump to 2.3.0
2022-05-06 16:26:46 +01:00
Chris AtLee
a2b5f7f3a8
Allow application/x-www-form-url_encoded POST requests to use file objects as the request body ( #1415 )
2022-05-06 15:49:09 +01:00
Thong Kuah
56d58442e5
docs: Correct default default_adapter value
...
Since https://github.com/lostisland/faraday/pull/1366 , the default value for `default_adapter` is `:net_http`.
Fixes https://www.rubydoc.info/gems/faraday/Faraday#default_adapter-class_method
2022-05-03 06:18:24 +02:00
Thomas Sanchez
f003443acc
Add indices when arrays are encoded ( #1399 )
2022-02-16 10:05:38 +00:00
Matt
948274e25e
Version bump to 2.2.0
2022-02-03 09:36:00 +00:00
Mattia Giuffrida
85dfdf824c
Re-add register middleware w/ Symbol, String, Proc
...
Reintroduce the possibility to register middleware with symbols, strings or procs.
Fixes #1389
2022-02-02 20:24:49 +01:00
José Augusto
816d824bc1
Removing all sushi.com references and change to httpbingo.org ( #1384 )
...
Fixes #1164
2022-01-18 16:43:36 +00:00
Matt
ae55a744d1
Version bump to 2.1.0
2022-01-15 14:34:05 +00:00
Yuki Hirasawa
7f004913eb
Add default adapter options ( #1382 )
2022-01-15 14:32:39 +00:00
Matt
577f0d3e75
Fix test adapter thread safety ( #1380 )
2022-01-15 08:58:30 +00:00
Matt
996028a165
Introduce mutex Monitor in Faraday::Test::Stubs ( #1379 )
...
Fixes #1365
2022-01-12 15:56:25 +00:00
Matt
309797d573
Version bump to 2.0.1
2022-01-05 21:49:07 +00:00
Matt
5f88f8ff85
Re-add faraday-net_http as default adapter ( #1366 )
2022-01-05 21:48:13 +00:00
Matt
0a5714e8c8
Version bump to 2.0.0
2022-01-04 08:34:19 +00:00
Mattia Giuffrida
cb47eca810
Remove multipart middleware and all its documentation and tests.
2022-01-03 09:40:52 +01:00
Matt
93a693b9ef
* Remove retry middleware and all its documentation and tests. ( #1356 )
2022-01-02 10:19:15 +00:00
Matt
c9b8490bb7
Remove default Faraday.default_adapter value and add exception message with link to usage documentation. ( #1354 )
2021-12-30 15:38:49 +00:00
Jonathan Rochkind
b1165eac65
Don't call retry_block if retry won't happen due to max_interval and retry_after ( #1350 )
2021-12-23 10:30:50 +00:00
DariuszMusielak
a555580f5f
Allow to raise a Faraday::Error without parameters ( #1351 )
2021-12-21 09:57:19 +00:00
Matt
23e2495636
Update version.rb
2021-12-15 15:22:18 +00:00
Simon Schmid
9ef407a028
Callable authorizers ( #1345 )
2021-12-15 15:21:05 +00:00
Matt
64058b983c
Bump version to 2.0.0.alpha-3
2021-11-30 09:39:46 +00:00
xkwd
746ab737b5
Replace Hash#merge with Utils#deep_merge for connection options ( #1343 )
2021-11-30 09:37:13 +00:00
Matt
c6bff34abb
Version bump to 2.0.0.alpha-2
2021-10-28 10:48:12 +01:00
Matt
498f6027a1
Load the test adapter now that it's the default one.
2021-10-28 10:43:42 +01:00
Matt
de78dff26d
Update version.rb
2021-10-25 11:18:02 +01:00
Matt
c010031269
Remove net-http adapter and update docs ( #1336 )
2021-10-25 11:17:11 +01:00
willianzocolau
ceeaa7476f
Improve request info in exceptions raised by RaiseError Middleware ( #1335 )
2021-10-16 10:31:49 +02:00
Jonathan Rochkind
1d567df2ee
Retry middleware, exceptions option should handle string exception class name consistently ( #1334 )
2021-10-12 16:16:52 +02:00
Jens Dahl Møllerhøj
5366029282
Register json middleware correctly ( #1331 )
2021-10-08 14:38:11 +02:00
Matt
506e97afe6
Fix passing a URL with embedded basic auth ( #1324 )
2021-09-13 16:36:26 +01:00
Yutaka Kamei
0f9626c48d
Respect the params_encoder
in Faraday::Adapter::Test
( #1316 )
2021-08-30 09:35:26 +01:00
Olle Jonsson
abe78b5df5
Lint: Lint/RedundantSafeNavigation
2021-08-17 08:44:04 +02:00
Olle Jonsson
fa26357178
Lint: Performance/BlockGivenWithExplicitBlock, and...
...
also Performance/RedundantSplitRegexpArgument.
2021-08-17 08:44:04 +02:00
Olle Jonsson
f1f36be663
Lint: Style/PerlBackrefs
2021-08-17 08:44:04 +02:00
Olle Jonsson
b79a36f65f
Lint: Style/NegatedIfElseCondition
2021-08-17 08:44:04 +02:00
Olle Jonsson
c95038abb5
Lint: Style/RedundantSelfAssignmentBranch
2021-08-17 08:44:04 +02:00
Olle Jonsson
9fa6a7e2aa
Lint: Layout/LineEndStringConcatenationIndentation
2021-08-17 08:44:04 +02:00
Olle Jonsson
d143b2d4f0
chore: Remove unnecessary lint skip
2021-08-17 08:44:04 +02:00