jruby-openssl 0.12.2-java → 0.13.0-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 +14 -0
- data/lib/jopenssl/version.rb +1 -1
- data/lib/jopenssl.jar +0 -0
- data/pom.xml +1 -1
- 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: 84f4d596b14dec42d317e4dbce655038025b0fd08901240b63400db474afd86c
|
|
4
|
+
data.tar.gz: b7413e3da9dd4afda4f79093bc5d9993d79286ba34297b2a5256e7ae05b779d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c78e50af357bf7adcdaac3ee38b437d17a7a83b98d664cc48dec957828b5e3aa15bb4378900a9796e7efe6f94fd1e3dbc54843e48fa1a4fe9a5b5f73806a4709
|
|
7
|
+
data.tar.gz: b0a8990ed96db10431e440f1f2551686efa4cc04d902a5ecdc89ec5b11c81fc5b9f814da50d0bd74ae8bcb9bcd0fa8726494f4f1912cc2d5455dad6197ac4303
|
data/History.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 0.13.0
|
|
2
|
+
|
|
3
|
+
* [fix] ASN1::EndOfContent ancestor hierarchy (#228)
|
|
4
|
+
* [fix] handle X509::Name type conversion (#206)
|
|
5
|
+
* [fix] handle invalid type when creating `X509::Name`
|
|
6
|
+
* [fix] `OpenSSL::X509::Name#inspect` compatibility
|
|
7
|
+
* [fix] escaping with `OpenSSL::X509::Name::RFC2253`
|
|
8
|
+
* [feat] implement `OpenSSL::X509::Name#to_utf8`
|
|
9
|
+
* [fix] compat missing `OpenSSL::SSL::OP_NO_TLSv1_3`
|
|
10
|
+
* [refactor] performance - do not encode/decode cert objects
|
|
11
|
+
* [fix] make sure `Context.ciphers` are not mutated (#219)
|
|
12
|
+
* [feat] support `to_java` conversion for CRL
|
|
13
|
+
* [feat] support `to_java` protocol for PKey (#250)
|
|
14
|
+
|
|
1
15
|
## 0.12.2
|
|
2
16
|
|
|
3
17
|
* [fix] work-around JRuby 9.2 autoload behavior (#248)
|
data/lib/jopenssl/version.rb
CHANGED
data/lib/jopenssl.jar
CHANGED
|
Binary file
|
data/pom.xml
CHANGED
|
@@ -11,7 +11,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
|
12
12
|
<groupId>rubygems</groupId>
|
|
13
13
|
<artifactId>jruby-openssl</artifactId>
|
|
14
|
-
<version>0.
|
|
14
|
+
<version>0.13.0</version>
|
|
15
15
|
<packaging>gem</packaging>
|
|
16
16
|
<name>JRuby OpenSSL</name>
|
|
17
17
|
<description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby-openssl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Karol Bucek
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-05-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL
|
|
16
16
|
native library.
|