Skip to content

Commit 5e27700

Browse files
committed
Ruby/OpenSSL 3.0.3
1 parent 3427222 commit 5e27700

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

History.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
Version 3.0.3
2+
=============
3+
4+
Bug fixes
5+
---------
6+
7+
* Fix a performance regression introduced in v2.1.3 on a buffered write to
8+
`SSLSocket`.
9+
[[GitHub #706]](https://github.com/ruby/openssl/pull/706)
10+
* Fix `OpenSSL::PKCS7` to handle PKCS#7 structures without content.
11+
[[GitHub #690]](https://github.com/ruby/openssl/pull/690)
12+
[[GitHub #752]](https://github.com/ruby/openssl/pull/752)
13+
* Fix `OpenSSL::ASN1::ObjectId#==` with OIDs without a known name.
14+
[[GitHub #791]](https://github.com/ruby/openssl/issues/791)
15+
[[GitHub #792]](https://github.com/ruby/openssl/pull/792)
16+
* Fix `OpenSSL::X509::Certificate#crl_uris` to handle CDP with multiple CRL
17+
URIs.
18+
[[GitHub #775]](https://github.com/ruby/openssl/issues/775)
19+
[[GitHub #776]](https://github.com/ruby/openssl/pull/776)
20+
* Fix `OpenSSL::Cipher#update` to always make the output buffer `String`
21+
independent.
22+
[[Bug #20937]](https://bugs.ruby-lang.org/issues/20937)
23+
[[GitHub #824]](https://github.com/ruby/openssl/pull/824)
24+
25+
126
Version 3.0.2
227
=============
328

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.0.2"
4+
VERSION = "3.0.3"
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.0.2"
3+
spec.version = "3.0.3"
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)