openssl 3.2.1-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 +23 -0
- metadata +4 -7
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,9 @@
|
|
1
|
+
Version 3.2.2
|
2
|
+
=============
|
3
|
+
|
4
|
+
Merged changes in 3.1.2.
|
5
|
+
|
6
|
+
|
1
7
|
Version 3.2.1
|
2
8
|
=============
|
3
9
|
|
@@ -44,6 +50,23 @@ Notable changes
|
|
44
50
|
[[GitHub #141]](https://github.com/ruby/openssl/pull/141)
|
45
51
|
|
46
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
|
+
|
47
70
|
Version 3.1.1
|
48
71
|
=============
|
49
72
|
|
metadata
CHANGED
@@ -1,25 +1,24 @@
|
|
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
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -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: []
|