openssl 4.0.0-java → 4.0.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 +42 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b4f65de19d5d2b6eb9ee376b796a0ace078e7a87233fff949af4f3a826d9746
|
|
4
|
+
data.tar.gz: 9423d6a4f4b7be4815071fd964037bfce89c0f3dd75cc1681d409e773a0291bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e06185db11bb266f3978cf21989796a49ea35220f40773b4f625ab70d78b79d0446f277335b696f09e84b9f50b9451ea09a4176c7814a1e403dd70ee6337259
|
|
7
|
+
data.tar.gz: 9c1bc6e28c8ae7d395a9eabfd01101c27f1da6aa087d7e8a77c70d3b66dce35712b6d92e5a430129b65297180c960c10e1af80bbae78d18960c28494bffc6207
|
data/History.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
Version 4.0.2
|
|
2
|
+
=============
|
|
3
|
+
|
|
4
|
+
Merged changes in 3.2.4 and 3.3.3.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Version 4.0.1
|
|
8
|
+
=============
|
|
9
|
+
|
|
10
|
+
Notable changes
|
|
11
|
+
---------------
|
|
12
|
+
|
|
13
|
+
* Add `sync_close` keyword argument to `OpenSSL::SSL::SSLSocket.new` as a
|
|
14
|
+
short-hand for setting `sync_close` attribute on the created `SSLSocket`
|
|
15
|
+
instance.
|
|
16
|
+
[[GitHub #955]](https://github.com/ruby/openssl/issues/955)
|
|
17
|
+
[[GitHub #996]](https://github.com/ruby/openssl/pull/996)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
Bug fixes
|
|
21
|
+
---------
|
|
22
|
+
|
|
23
|
+
* Fix uninitialized variables in `OpenSSL::OCSP::BasicResponse#status`.
|
|
24
|
+
[[GitHub #1004]](https://github.com/ruby/openssl/pull/1004)
|
|
25
|
+
|
|
26
|
+
|
|
1
27
|
Version 4.0.0
|
|
2
28
|
=============
|
|
3
29
|
|
|
@@ -83,6 +109,12 @@ Notable changes
|
|
|
83
109
|
[[GitHub #983]](https://github.com/ruby/openssl/pull/983)
|
|
84
110
|
|
|
85
111
|
|
|
112
|
+
Version 3.3.3
|
|
113
|
+
=============
|
|
114
|
+
|
|
115
|
+
Merged changes in 3.2.4.
|
|
116
|
+
|
|
117
|
+
|
|
86
118
|
Version 3.3.2
|
|
87
119
|
=============
|
|
88
120
|
|
|
@@ -171,6 +203,16 @@ And various non-user-visible changes and bug fixes. Please see the commit
|
|
|
171
203
|
history for more details.
|
|
172
204
|
|
|
173
205
|
|
|
206
|
+
Version 3.2.4
|
|
207
|
+
=============
|
|
208
|
+
|
|
209
|
+
Notable changes
|
|
210
|
+
---------------
|
|
211
|
+
|
|
212
|
+
* Add support for OpenSSL 4.0.
|
|
213
|
+
[[GitHub #1051]](https://github.com/ruby/openssl/pull/1051)
|
|
214
|
+
|
|
215
|
+
|
|
174
216
|
Version 3.2.3
|
|
175
217
|
=============
|
|
176
218
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openssl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Bosslet
|
|
@@ -62,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
63
|
version: '0'
|
|
64
64
|
requirements: []
|
|
65
|
-
rubygems_version:
|
|
65
|
+
rubygems_version: 4.0.3
|
|
66
66
|
specification_version: 4
|
|
67
67
|
summary: SSL/TLS and general-purpose cryptography for Ruby
|
|
68
68
|
test_files: []
|