Skip to content

Commit

Permalink
Ruby/OpenSSL 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rhenium committed Dec 18, 2024
1 parent 3427222 commit 5e27700
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
Version 3.0.3
=============

Bug fixes
---------

* Fix a performance regression introduced in v2.1.3 on a buffered write to
`SSLSocket`.
[[GitHub #706]](https://github.com/ruby/openssl/pull/706)
* Fix `OpenSSL::PKCS7` to handle PKCS#7 structures without content.
[[GitHub #690]](https://github.com/ruby/openssl/pull/690)
[[GitHub #752]](https://github.com/ruby/openssl/pull/752)
* Fix `OpenSSL::ASN1::ObjectId#==` with OIDs without a known name.
[[GitHub #791]](https://github.com/ruby/openssl/issues/791)
[[GitHub #792]](https://github.com/ruby/openssl/pull/792)
* Fix `OpenSSL::X509::Certificate#crl_uris` to handle CDP with multiple CRL
URIs.
[[GitHub #775]](https://github.com/ruby/openssl/issues/775)
[[GitHub #776]](https://github.com/ruby/openssl/pull/776)
* Fix `OpenSSL::Cipher#update` to always make the output buffer `String`
independent.
[[Bug #20937]](https://bugs.ruby-lang.org/issues/20937)
[[GitHub #824]](https://github.com/ruby/openssl/pull/824)


Version 3.0.2
=============

Expand Down
2 changes: 1 addition & 1 deletion lib/openssl/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module OpenSSL
VERSION = "3.0.2"
VERSION = "3.0.3"
end
2 changes: 1 addition & 1 deletion openssl.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
spec.version = "3.0.2"
spec.version = "3.0.3"
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
spec.email = ["[email protected]"]
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}
Expand Down

0 comments on commit 5e27700

Please sign in to comment.