jruby-openssl 0.15.4.pre1-java → 0.15.5-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8783369be714774eb17afb15310b6fb22d9f6df666682b86f2b5f8f13412fdec
4
- data.tar.gz: 4ad8d8a5bfc0cbb0cb65fab31ff175960a2f2ad066d61a5807ca6bc9ebd47859
3
+ metadata.gz: cdaa4d0178493f8513475352340c08ebc227940a0952285378ef16b7447a6927
4
+ data.tar.gz: 2559085b52ffdc8f3c337dcef67647afae6d0b7b94e486a5423326e132534dc9
5
5
  SHA512:
6
- metadata.gz: 7d8c46d86ccad8bfc0e9ceb8e7e40585f4ca8eebc59d8668ad0246abd472c80e448b45a20441c9e1dd49020bb57b0e70b0a15eccb1f2f5d31caf4479a4e9a942
7
- data.tar.gz: 0b82ac3e94d8414400bad5adf316fea94c79491d9b0ce2a2549a3fd6fd6e9250706220fd315f6ad7ae1231805ca16266bf668b743cff66d99409f9d62fbd1600
6
+ metadata.gz: 4490359da0c9a05d948c10be73a8b229d8341f5109b81345640840a63fa58f169f8f1d18bdbf0ba0f0b85d0f24f4497688097ac587c88b327b6aab9624f93819
7
+ data.tar.gz: aec61c569dae2eddafcba83ec38e52c7da97d9798ee12f47606620a19bf5e51ca99fb01fba9f16b61eaf7c9924b40e7bb573619a07d0131d67a33d1e9817dd08
data/History.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## 0.15.5
2
+
3
+ * [deps] upgrade BC to version 1.81
4
+ * Improving completeness of ASN1 encoding/decoding (#335)
5
+ * [fix] OpenSSL::X509::CRL#to_pem when building CRL from scratch (#163)
6
+ * [fix] OpenSSL::ASN1::ASN1Data encoding/decoding compatibility (#265)
7
+
8
+ ## 0.15.4
9
+
10
+ * Verify hostname by default
11
+
12
+ This addresses **CVE-2025-46551** and **GHSA-72qj-48g4-5xgx**.
13
+
14
+ Users can work around this by applying this patch manually to their
15
+ own jruby-openssl and jruby installs, or by re-enabling hostname
16
+ verification with the following code early in application boot:
17
+ ```ruby
18
+ require 'openssl'
19
+
20
+ OpenSSL::SSL::SSLContext::DEFAULT_PARAMS[:verify_hostname] = true
21
+ ```
22
+
1
23
  ## 0.15.3
2
24
 
3
25
  * [fix] keep curve name when group is set into another key
@@ -1,6 +1,6 @@
1
1
  module JOpenSSL
2
- VERSION = '0.15.4.pre1'
3
- BOUNCY_CASTLE_VERSION = '1.80'
2
+ VERSION = '0.15.5'
3
+ BOUNCY_CASTLE_VERSION = '1.81'
4
4
  end
5
5
 
6
6
  Object.class_eval do
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.15.4.pre1-SNAPSHOT</version>
14
+ <version>0.15.5</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>
@@ -60,7 +60,7 @@ DO NOT MODIFY - GENERATED CODE
60
60
  </snapshotRepository>
61
61
  </distributionManagement>
62
62
  <properties>
63
- <bc.versions>1.80</bc.versions>
63
+ <bc.versions>1.81</bc.versions>
64
64
  <invoker.skip>${maven.test.skip}</invoker.skip>
65
65
  <invoker.test>${bc.versions}</invoker.test>
66
66
  <jruby.plugins.version>3.0.2</jruby.plugins.version>
@@ -77,22 +77,22 @@ DO NOT MODIFY - GENERATED CODE
77
77
  <dependency>
78
78
  <groupId>org.bouncycastle</groupId>
79
79
  <artifactId>bcprov-jdk18on</artifactId>
80
- <version>1.80</version>
80
+ <version>1.81</version>
81
81
  </dependency>
82
82
  <dependency>
83
83
  <groupId>org.bouncycastle</groupId>
84
84
  <artifactId>bcpkix-jdk18on</artifactId>
85
- <version>1.80</version>
85
+ <version>1.81</version>
86
86
  </dependency>
87
87
  <dependency>
88
88
  <groupId>org.bouncycastle</groupId>
89
89
  <artifactId>bctls-jdk18on</artifactId>
90
- <version>1.80</version>
90
+ <version>1.81</version>
91
91
  </dependency>
92
92
  <dependency>
93
93
  <groupId>org.bouncycastle</groupId>
94
94
  <artifactId>bcutil-jdk18on</artifactId>
95
- <version>1.80</version>
95
+ <version>1.81</version>
96
96
  </dependency>
97
97
  <dependency>
98
98
  <groupId>org.jruby</groupId>
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.15.4.pre1
4
+ version: 0.15.5
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: 2025-04-22 00:00:00.000000000 Z
13
+ date: 2025-07-25 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.
@@ -41,10 +41,10 @@ files:
41
41
  - lib/openssl/pkey.rb
42
42
  - lib/openssl/ssl.rb
43
43
  - lib/openssl/x509.rb
44
- - lib/org/bouncycastle/bcpkix-jdk18on/1.80/bcpkix-jdk18on-1.80.jar
45
- - lib/org/bouncycastle/bcprov-jdk18on/1.80/bcprov-jdk18on-1.80.jar
46
- - lib/org/bouncycastle/bctls-jdk18on/1.80/bctls-jdk18on-1.80.jar
47
- - lib/org/bouncycastle/bcutil-jdk18on/1.80/bcutil-jdk18on-1.80.jar
44
+ - lib/org/bouncycastle/bcpkix-jdk18on/1.81/bcpkix-jdk18on-1.81.jar
45
+ - lib/org/bouncycastle/bcprov-jdk18on/1.81/bcprov-jdk18on-1.81.jar
46
+ - lib/org/bouncycastle/bctls-jdk18on/1.81/bctls-jdk18on-1.81.jar
47
+ - lib/org/bouncycastle/bcutil-jdk18on/1.81/bcutil-jdk18on-1.81.jar
48
48
  - pom.xml
49
49
  homepage: https://github.com/jruby/jruby-openssl
50
50
  licenses:
@@ -63,14 +63,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
63
  version: 2.5.0
64
64
  required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ">"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 1.3.1
68
+ version: '0'
69
69
  requirements:
70
- - jar org.bouncycastle:bcprov-jdk18on, 1.80
71
- - jar org.bouncycastle:bcpkix-jdk18on, 1.80
72
- - jar org.bouncycastle:bctls-jdk18on, 1.80
73
- - jar org.bouncycastle:bcutil-jdk18on, 1.80
70
+ - jar org.bouncycastle:bcprov-jdk18on, 1.81
71
+ - jar org.bouncycastle:bcpkix-jdk18on, 1.81
72
+ - jar org.bouncycastle:bctls-jdk18on, 1.81
73
+ - jar org.bouncycastle:bcutil-jdk18on, 1.81
74
74
  rubygems_version: 3.1.6
75
75
  signing_key:
76
76
  specification_version: 4