faraday 2.5.1 → 2.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 503ea26e785d93ce2e71fa46a1be6deea7c562d96659401b99e4ada7527e7f9b
4
- data.tar.gz: 37f707014c1dafb00caf9856c0f5a4386f0f7826e1809e2a6fe03221fca9f936
3
+ metadata.gz: a5bf37c33313ee7027a44ba34906e46285c4bf4c51205f58e3ad50c0d5b7a3ab
4
+ data.tar.gz: 1bc57e0e2909550e60575320fbaa4bb75d17e914462ed57d06fe2cccd81804fe
5
5
  SHA512:
6
- metadata.gz: 37b3abd53741e0bfb8f92636983c152460dee4790d8ac943ddc8fc81b076da115c2d20622ee190b3489101fce497bf628261ba7684e4163d23fe7e0894d5c407
7
- data.tar.gz: 40d69fe13ea02495810d3a968681a668f22b5e6790d3d7a98a59e44decff2ad370f3230c59fc5c30e6aa3f150260d7409c995b5ba1ca2413c36a3ce661f82636
6
+ metadata.gz: ed0374b593a768aad905cf1c175cc86fc0892757a3b549def26e09a84016ffd6674d8e920e6c14b7709bf505a3b0a682b0191b2239b4eefe1f09ce23fad999b2
7
+ data.tar.gz: 59ce275bfb56375648ee5966e0fd2b7326117bd2d62789533d4856021a2c6a96f859f813dc4c9b472cd0c7579fa38765ba027193b69352a6e4740e21fd0bc3b8
@@ -272,7 +272,7 @@ module Faraday
272
272
  stub, meta = stubs.match(env)
273
273
 
274
274
  unless stub
275
- raise Stubs::NotFound, "no stubbed request for #{env[:method]} "\
275
+ raise Stubs::NotFound, "no stubbed request for #{env[:method]} " \
276
276
  "#{env[:url]} #{env[:body]}"
277
277
  end
278
278
 
@@ -283,7 +283,11 @@ module Faraday
283
283
  else
284
284
  stub.block.call(env, meta)
285
285
  end
286
- save_response(env, status, body, headers)
286
+
287
+ # We need to explicitly pass `reason_phrase = nil` here to avoid keyword args conflicts.
288
+ # See https://github.com/lostisland/faraday/issues/1444
289
+ # TODO: remove `nil` explicit reason_phrase once Ruby 3.0 becomes minimum req. version
290
+ save_response(env, status, body, headers, nil)
287
291
 
288
292
  @app.call(env)
289
293
  end
@@ -537,7 +537,7 @@ module Faraday
537
537
  end
538
538
 
539
539
  def find_default_proxy
540
- uri = ENV['http_proxy']
540
+ uri = ENV.fetch('http_proxy', nil)
541
541
  return unless uri && !uri.empty?
542
542
 
543
543
  uri = "http://#{uri}" unless uri.match?(/^http/i)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Faraday
4
- VERSION = '2.5.1'
4
+ VERSION = '2.5.2'
5
5
  end
@@ -6,7 +6,7 @@ class CustomEncoder
6
6
  end
7
7
 
8
8
  def decode(params)
9
- params.split(',').map { |pair| pair.split('-') }.to_h
9
+ params.split(',').to_h { |pair| pair.split('-') }
10
10
  end
11
11
  end
12
12
 
@@ -511,7 +511,7 @@ RSpec.describe Faraday::Connection do
511
511
  it 'uses env http_proxy' do
512
512
  with_env 'http_proxy' => 'http://proxy.com' do
513
513
  conn = Faraday.new
514
- expect(conn.instance_variable_get('@manual_proxy')).to be_falsey
514
+ expect(conn.instance_variable_get(:@manual_proxy)).to be_falsey
515
515
  expect(conn.proxy_for_request('http://google.co.uk').host).to eq('proxy.com')
516
516
  end
517
517
  end
@@ -519,7 +519,7 @@ RSpec.describe Faraday::Connection do
519
519
  it 'uses processes no_proxy before http_proxy' do
520
520
  with_env 'http_proxy' => 'http://proxy.com', 'no_proxy' => 'google.co.uk' do
521
521
  conn = Faraday.new
522
- expect(conn.instance_variable_get('@manual_proxy')).to be_falsey
522
+ expect(conn.instance_variable_get(:@manual_proxy)).to be_falsey
523
523
  expect(conn.proxy_for_request('http://google.co.uk')).to be_nil
524
524
  end
525
525
  end
@@ -527,7 +527,7 @@ RSpec.describe Faraday::Connection do
527
527
  it 'uses env https_proxy' do
528
528
  with_env 'https_proxy' => 'https://proxy.com' do
529
529
  conn = Faraday.new
530
- expect(conn.instance_variable_get('@manual_proxy')).to be_falsey
530
+ expect(conn.instance_variable_get(:@manual_proxy)).to be_falsey
531
531
  expect(conn.proxy_for_request('https://google.co.uk').host).to eq('proxy.com')
532
532
  end
533
533
  end
@@ -535,7 +535,7 @@ RSpec.describe Faraday::Connection do
535
535
  it 'uses processes no_proxy before https_proxy' do
536
536
  with_env 'https_proxy' => 'https://proxy.com', 'no_proxy' => 'google.co.uk' do
537
537
  conn = Faraday.new
538
- expect(conn.instance_variable_get('@manual_proxy')).to be_falsey
538
+ expect(conn.instance_variable_get(:@manual_proxy)).to be_falsey
539
539
  expect(conn.proxy_for_request('https://google.co.uk')).to be_nil
540
540
  end
541
541
  end
@@ -545,7 +545,7 @@ RSpec.describe Faraday::Connection do
545
545
  conn = Faraday.new
546
546
  conn.proxy = 'http://proxy2.com'
547
547
 
548
- expect(conn.instance_variable_get('@manual_proxy')).to be_truthy
548
+ expect(conn.instance_variable_get(:@manual_proxy)).to be_truthy
549
549
  expect(conn.proxy_for_request('https://google.co.uk').host).to eq('proxy2.com')
550
550
  end
551
551
  end
@@ -580,7 +580,7 @@ RSpec.describe Faraday::Connection do
580
580
  end
581
581
 
582
582
  conn.get(url)
583
- expect(conn.instance_variable_get('@temp_proxy')).to be_nil
583
+ expect(conn.instance_variable_get(:@temp_proxy)).to be_nil
584
584
  end
585
585
 
586
586
  it 'dynamically check no proxy' do
@@ -37,7 +37,7 @@ shared_examples 'adapter examples' do |**options|
37
37
 
38
38
  let(:conn) do
39
39
  conn_options[:ssl] ||= {}
40
- conn_options[:ssl][:ca_file] ||= ENV['SSL_FILE']
40
+ conn_options[:ssl][:ca_file] ||= ENV.fetch('SSL_FILE', nil)
41
41
  conn_options[:ssl][:verify_hostname] ||= ENV['SSL_VERIFY_HOSTNAME'] == 'yes'
42
42
 
43
43
  Faraday.new(remote, conn_options) do |conn|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faraday
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - "@technoweenie"
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-08-08 00:00:00.000000000 Z
13
+ date: 2022-08-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: faraday-net_http
@@ -131,7 +131,7 @@ licenses:
131
131
  - MIT
132
132
  metadata:
133
133
  homepage_uri: https://lostisland.github.io/faraday
134
- changelog_uri: https://github.com/lostisland/faraday/releases/tag/v2.5.1
134
+ changelog_uri: https://github.com/lostisland/faraday/releases/tag/v2.5.2
135
135
  source_code_uri: https://github.com/lostisland/faraday
136
136
  bug_tracker_uri: https://github.com/lostisland/faraday/issues
137
137
  post_install_message: