Skip to content

Commit 2687f96

Browse files
committed
Ruby/OpenSSL 3.1.2
1 parent 06592e4 commit 2687f96

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

History.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
Version 3.1.2
2+
=============
3+
4+
Bug fixes
5+
---------
6+
7+
* Fix crash when attempting to export an incomplete `OpenSSL::PKey::DSA` key.
8+
[[GitHub #845]](https://github.com/ruby/openssl/issues/845)
9+
[[GitHub #847]](https://github.com/ruby/openssl/pull/847)
10+
* Remove the `OpenSSL::X509::V_FLAG_CRL_CHECK_ALL` flag from the default store
11+
used by `OpenSSL::SSL::SSLContext#set_params`. It causes certificate
12+
verification to fail with OpenSSL 3.6.0. It has no effect with any other
13+
OpenSSL versions.
14+
[[GitHub #949]](https://github.com/ruby/openssl/issues/949)
15+
[[GitHub #950]](https://github.com/ruby/openssl/pull/950)
16+
17+
118
Version 3.1.1
219
=============
320

lib/openssl/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module OpenSSL
4-
VERSION = "3.1.1"
4+
VERSION = "3.1.2"
55
end

openssl.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |spec|
22
spec.name = "openssl"
3-
spec.version = "3.1.1"
3+
spec.version = "3.1.2"
44
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
55
spec.email = ["[email protected]"]
66
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}

0 commit comments

Comments
 (0)