aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-08 05:26:44 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-08 05:26:44 +0000
commit4b395bb4cecf23244617319a187391b7c885d864 (patch)
tree376b67ef95c2260d08923541ce1acef4156c6f8a /NEWS
parent25a8b98e3a07e2cc6e644e816e3421464e709981 (diff)
downloadruby-4b395bb4cecf23244617319a187391b7c885d864.tar.gz
* ext/openssl/lib/openssl/ssl.rb: Default to TLSv1.2 and drop TLS v1
Patch provided by @claudijd [Fixes GH-873] [Feature #11524]: https://github.com/ruby/ruby/pull/873 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 8a4141e198..16c4a2b62b 100644
--- a/NEWS
+++ b/NEWS
@@ -129,6 +129,8 @@ with all sufficient information, see the ChangeLog file.
* OpenSSL
* OpenSSL::SSL::SSLSocket#accept_nonblock and
OpenSSL::SSL::SSLSocket#connect_nonblock supports `exception: false`.
+ * OpenSSL::SSL::SSLContext defaults to TLS v1.2.
+ Please use `ctx.ssl_version = :TLSv1` or `:SSLv23` at your own risk.
* Pathname
* Pathname#descend and Pathname#ascend supported blockless form.