1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/openssl] Ruby/OpenSSL 3.0.1

https://github.com/ruby/openssl/commit/e5bbd015dc
This commit is contained in:
Kazuki Yamaguchi 2022-09-08 18:34:26 +09:00
parent 15a966a674
commit cd83f5b961
3 changed files with 26 additions and 2 deletions

View file

@ -1,3 +1,27 @@
Version 3.0.1
=============
Merged changes in 2.1.4 and 2.2.2. Additionally, the following issues are fixed
by this release.
Bug fixes
---------
* Add missing type check in OpenSSL::PKey::PKey#sign's optional parameters.
[[GitHub #531]](https://github.com/ruby/openssl/pull/531)
* Work around OpenSSL 3.0's HMAC issues with a zero-length key.
[[GitHub #538]](https://github.com/ruby/openssl/pull/538)
* Fix a regression in OpenSSL::PKey::DSA.generate's default of 'q' size.
[[GitHub #483]](https://github.com/ruby/openssl/issues/483)
[[GitHub #539]](https://github.com/ruby/openssl/pull/539)
* Restore OpenSSL::PKey.read's ability to decode "openssl ecparam -genkey"
output when linked against OpenSSL 3.0.
[[GitHub #535]](https://github.com/ruby/openssl/pull/535)
[[GitHub #540]](https://github.com/ruby/openssl/pull/540)
* Restore error checks in OpenSSL::PKey::EC#{to_der,to_pem}.
[[GitHub #541]](https://github.com/ruby/openssl/pull/541)
Version 3.0.0 Version 3.0.0
============= =============

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module OpenSSL module OpenSSL
VERSION = "3.0.0" VERSION = "3.0.1"
end end

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "openssl" spec.name = "openssl"
spec.version = "3.0.0" spec.version = "3.0.1"
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"] spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
spec.email = ["ruby-core@ruby-lang.org"] spec.email = ["ruby-core@ruby-lang.org"]
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.} spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}