openssl 3.2.0-java → 3.2.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +61 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7118193174bc50bc9b926a1d1c6625cbd64ff42334d2f33c87d88bc4129b192c
|
4
|
+
data.tar.gz: ff411348c2c0b78641d83a88bff53f08bda4d37c41a84cae5f41b84e0f04ed7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60823b33432a584e65cd2664af3801238306b8a8f5a38c82eb1cc58001b0fb133ec62a4f70d610ae70b66341b07f13a2293b2f5f9ac05474d9830ae5443057d5
|
7
|
+
data.tar.gz: e2f3ce35ac7ff4662c67326f007b5c61bd05ee860a0cdad68e0fe7c6514827aa146372e2368e82ba435f6df404a89b750825e0572cba781a2089998870f6cdaa
|
data/History.md
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
Version 3.2.2
|
2
|
+
=============
|
3
|
+
|
4
|
+
Merged changes in 3.1.2.
|
5
|
+
|
6
|
+
|
7
|
+
Version 3.2.1
|
8
|
+
=============
|
9
|
+
|
10
|
+
Merged changes in 3.0.3.
|
11
|
+
|
12
|
+
|
1
13
|
Version 3.2.0
|
2
14
|
=============
|
3
15
|
|
@@ -38,6 +50,29 @@ Notable changes
|
|
38
50
|
[[GitHub #141]](https://github.com/ruby/openssl/pull/141)
|
39
51
|
|
40
52
|
|
53
|
+
Version 3.1.2
|
54
|
+
=============
|
55
|
+
|
56
|
+
Bug fixes
|
57
|
+
---------
|
58
|
+
|
59
|
+
* Fix crash when attempting to export an incomplete `OpenSSL::PKey::DSA` key.
|
60
|
+
[[GitHub #845]](https://github.com/ruby/openssl/issues/845)
|
61
|
+
[[GitHub #847]](https://github.com/ruby/openssl/pull/847)
|
62
|
+
* Remove the `OpenSSL::X509::V_FLAG_CRL_CHECK_ALL` flag from the default store
|
63
|
+
used by `OpenSSL::SSL::SSLContext#set_params`. It causes certificate
|
64
|
+
verification to fail with OpenSSL 3.6.0. It has no effect with any other
|
65
|
+
OpenSSL versions.
|
66
|
+
[[GitHub #949]](https://github.com/ruby/openssl/issues/949)
|
67
|
+
[[GitHub #950]](https://github.com/ruby/openssl/pull/950)
|
68
|
+
|
69
|
+
|
70
|
+
Version 3.1.1
|
71
|
+
=============
|
72
|
+
|
73
|
+
Merged changes in 3.0.3.
|
74
|
+
|
75
|
+
|
41
76
|
Version 3.1.0
|
42
77
|
=============
|
43
78
|
|
@@ -74,6 +109,31 @@ Notable changes
|
|
74
109
|
LibreSSL 3.6 and Ed25519 support in LibreSSL 3.7.
|
75
110
|
|
76
111
|
|
112
|
+
Version 3.0.3
|
113
|
+
=============
|
114
|
+
|
115
|
+
Bug fixes
|
116
|
+
---------
|
117
|
+
|
118
|
+
* Fix a performance regression introduced in v2.1.3 on a buffered write to
|
119
|
+
`SSLSocket`.
|
120
|
+
[[GitHub #706]](https://github.com/ruby/openssl/pull/706)
|
121
|
+
* Fix `OpenSSL::PKCS7` to handle PKCS#7 structures without content.
|
122
|
+
[[GitHub #690]](https://github.com/ruby/openssl/pull/690)
|
123
|
+
[[GitHub #752]](https://github.com/ruby/openssl/pull/752)
|
124
|
+
* Fix `OpenSSL::ASN1::ObjectId#==` with OIDs without a known name.
|
125
|
+
[[GitHub #791]](https://github.com/ruby/openssl/issues/791)
|
126
|
+
[[GitHub #792]](https://github.com/ruby/openssl/pull/792)
|
127
|
+
* Fix `OpenSSL::X509::Certificate#crl_uris` to handle CDP with multiple CRL
|
128
|
+
URIs.
|
129
|
+
[[GitHub #775]](https://github.com/ruby/openssl/issues/775)
|
130
|
+
[[GitHub #776]](https://github.com/ruby/openssl/pull/776)
|
131
|
+
* Fix `OpenSSL::Cipher#update` to always make the output buffer `String`
|
132
|
+
independent.
|
133
|
+
[[Bug #20937]](https://bugs.ruby-lang.org/issues/20937)
|
134
|
+
[[GitHub #824]](https://github.com/ruby/openssl/pull/824)
|
135
|
+
|
136
|
+
|
77
137
|
Version 3.0.2
|
78
138
|
=============
|
79
139
|
|
@@ -457,7 +517,7 @@ Security fixes
|
|
457
517
|
Bug fixes
|
458
518
|
---------
|
459
519
|
|
460
|
-
* Fixed OpenSSL::PKey
|
520
|
+
* Fixed OpenSSL::PKey::\*.{new,generate} immediately aborting if the thread is
|
461
521
|
interrupted.
|
462
522
|
[[Bug #14882]](https://bugs.ruby-lang.org/issues/14882)
|
463
523
|
[[GitHub #205]](https://github.com/ruby/openssl/pull/205)
|
metadata
CHANGED
@@ -1,27 +1,26 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Martin Bosslet
|
8
8
|
- SHIBATA Hiroshi
|
9
9
|
- Zachary Scott
|
10
10
|
- Kazuki Yamaguchi
|
11
|
-
autorequire:
|
12
11
|
bindir: bin
|
13
12
|
cert_chain: []
|
14
|
-
date:
|
13
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
16
|
+
name: jruby-openssl
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
19
|
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
21
|
version: '0.14'
|
22
|
-
name: jruby-openssl
|
23
|
-
prerelease: false
|
24
22
|
type: :runtime
|
23
|
+
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
26
25
|
requirements:
|
27
26
|
- - "~>"
|
@@ -46,7 +45,6 @@ licenses:
|
|
46
45
|
- Ruby
|
47
46
|
metadata:
|
48
47
|
msys2_mingw_dependencies: openssl
|
49
|
-
post_install_message:
|
50
48
|
rdoc_options:
|
51
49
|
- "--main"
|
52
50
|
- README.md
|
@@ -63,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
61
|
- !ruby/object:Gem::Version
|
64
62
|
version: '0'
|
65
63
|
requirements: []
|
66
|
-
rubygems_version: 3.
|
67
|
-
signing_key:
|
64
|
+
rubygems_version: 3.6.9
|
68
65
|
specification_version: 4
|
69
66
|
summary: SSL/TLS and general-purpose cryptography for Ruby
|
70
67
|
test_files: []
|