excon 0.53.0 → 0.54.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of excon might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 107f2915312740816e1f7e464721943befb46df9
4
- data.tar.gz: cf47a20d525466fc3251872cb062fc0604291cde
3
+ metadata.gz: 9c46f23043daf2c412025b8931f759d216f606c8
4
+ data.tar.gz: d370bca3b418e680a04ae0d5ae216537076c73d4
5
5
  SHA512:
6
- metadata.gz: 723ddc673863eaed03cdd701e6acc96d145b91606992580f6521685e09a9698844f106b99bda867941d90854bb176eb55e6784a9815c5885212623918a99932d
7
- data.tar.gz: c156cf208eb0a4180489c4106a38adb6b68a4e7258b34a5cdeaa86ef000d58bbe2d40e06843e32de595ae4d3cf2272dbf42e58ea9253e1202f288aa8b716b6a4
6
+ metadata.gz: c5bab91b2d66946c1f3877d12431cb9a40aa087cc1409df6e75d05671aa05e18a590d1ea45eff487d6f187da6a4e18e55129099fd7588d3a7a3f51e898512cb3
7
+ data.tar.gz: 7af9e24bf6f338957246d3497fabbeaa999c21a5cf01b052153fe699de651121ff0f4772934b3ec3bbbaeb186c3729c753896ed8cf0ccefc1cfc4486ce53150c
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- excon (0.53.0)
4
+ excon (0.54.0)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
data/Rakefile CHANGED
@@ -152,3 +152,10 @@ task :update_certs do
152
152
  file.write(data)
153
153
  end
154
154
  end
155
+
156
+ desc "check ssl settings"
157
+ task :hows_my_ssl do
158
+ require File.join(File.dirname(__FILE__), 'lib', 'excon')
159
+ data = Excon.get("https://www.howsmyssl.com/a/check").body
160
+ puts data
161
+ end
@@ -1,4 +1,11 @@
1
- 0.32.0 09/27/2016
1
+ 0.54.0 10/17/2016
2
+ =================
3
+
4
+ add howsmyssl rake task for sanity checking
5
+ update default ciphers to mozilla intermediate list
6
+ fix typo in changelog
7
+
8
+ 0.53.0 09/27/2016
2
9
  =================
3
10
 
4
11
  add ability to pass ssl options as strings
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'excon'
16
- s.version = '0.53.0'
17
- s.date = '2016-09-27'
16
+ s.version = '0.54.0'
17
+ s.date = '2016-10-17'
18
18
  s.rubyforge_project = 'excon'
19
19
 
20
20
  ## Make sure your summary is short. The description may be as long
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
  module Excon
3
3
 
4
- VERSION = '0.53.0'
4
+ VERSION = '0.54.0'
5
5
 
6
6
  CR_NL = "\r\n"
7
7
 
@@ -110,7 +110,8 @@ module Excon
110
110
  # these come last as they rely on the above
111
111
  DEFAULTS = {
112
112
  :chunk_size => CHUNK_SIZE || DEFAULT_CHUNK_SIZE,
113
- :ciphers => 'HIGH:!SSLv2:!aNULL:!eNULL:!3DES',
113
+ # see https://wiki.mozilla.org/Security/Server_Side_TLS#Intermediate_compatibility_.28default.29
114
+ :ciphers => 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS',
114
115
  :connect_timeout => 60,
115
116
  :debug_request => false,
116
117
  :debug_response => false,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: excon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - dpiddy (Dan Peterson)
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-09-27 00:00:00.000000000 Z
13
+ date: 2016-10-17 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rspec