jruby-openssl 0.15.1-java → 0.15.2-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f1a25faec82c8bb510ce995706c75f2aeb4db3d0
4
- data.tar.gz: 2dafa26f100d33e527be8aec1ad885164ba72147
2
+ SHA256:
3
+ metadata.gz: 3b322a7977111ba9770b41e0401f501af7409f3b9d37299e1e7b792fb2987b63
4
+ data.tar.gz: 9a5b49175af58f39f0d2c5113eb0487fed68bfbb3cff76e2417dcf8d874030d0
5
5
  SHA512:
6
- metadata.gz: 18cbcd4c738ec6398c996cb4ab9b05a9a2c5dba4c446a11dbf2da5484b279b591ece959139d7099dc0db58eb30fd040700350daf9f2c274dab380985794e02fd
7
- data.tar.gz: 10da5fb052bf224aaa70253ebed31fc6a0ceb3f08cbdc22dc15b86153f56fe10ec9cd424b0c1d53beabe54267a3818942ff4198e9e80d559e77e50d941d91e60
6
+ metadata.gz: ed0d9547185e0ade1eff94d60b2c926cfc8c2c69bf273db53ce978f45a75067a4436caf0cf68f3c52a79b07abe5fa9067262c1701044dc8d6537bf5b5fcdfb50
7
+ data.tar.gz: f0083caf3519b9815b675ab9c65a33f6f77f71409f5e77613bc01c7bed8c82b39e8c9f75b886a2616979ffe52f880688fbaedbcd09a46db17e4e33ba1102ee35
data/History.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.15.2
2
+
3
+ * [deps] upgrade BC to version 1.79
4
+ * [fix] avoid PKey::EC.new failing with specific DER (#318)
5
+ * [fix] have a useful OPENSSL_VERSION_NUMBER
6
+
1
7
  ## 0.15.1
2
8
 
3
9
  * [deps] upgrade BC to version 1.78.1
data/README.md CHANGED
@@ -28,7 +28,7 @@ the JRuby [mailing list][1] or the [bug tracker][2].
28
28
  | ~>0.12.x | 9.1.x-9.3.x | Java 8-15 | 1.65-1.68 |
29
29
  | ~>0.13.x | 9.1.x-9.4.x | Java 8-17 | 1.68-1.69 |
30
30
  | ~>0.14.x | 9.1.x-9.4.x | Java 8-21 | 1.71-1.74 |
31
- | ~>0.15.x | 9.2.x-9.4.x | Java 8-21 | 1.76-1.78 |
31
+ | ~>0.15.x | 9.2.x-9.4.x | Java 8-21 | 1.76-1.79 |
32
32
 
33
33
  NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
34
34
 
@@ -1,6 +1,6 @@
1
1
  module JOpenSSL
2
- VERSION = '0.15.1'
3
- BOUNCY_CASTLE_VERSION = '1.78.1'
2
+ VERSION = '0.15.2'
3
+ BOUNCY_CASTLE_VERSION = '1.79'
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.1</version>
14
+ <version>0.15.2</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,13 +60,13 @@ DO NOT MODIFY - GENERATED CODE
60
60
  </snapshotRepository>
61
61
  </distributionManagement>
62
62
  <properties>
63
- <bc.versions>1.78.1</bc.versions>
63
+ <bc.versions>1.79</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>
67
67
  <jruby.switches>-W0</jruby.switches>
68
- <jruby.version>9.1.17.0</jruby.version>
69
- <jruby.versions>9.1.17.0</jruby.versions>
68
+ <jruby.version>9.2.19.0</jruby.version>
69
+ <jruby.versions>9.2.19.0</jruby.versions>
70
70
  <mavengem-wagon.version>2.0.2</mavengem-wagon.version>
71
71
  <mavengem.wagon.version>2.0.2</mavengem.wagon.version>
72
72
  <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
@@ -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.78.1</version>
80
+ <version>1.79</version>
81
81
  </dependency>
82
82
  <dependency>
83
83
  <groupId>org.bouncycastle</groupId>
84
84
  <artifactId>bcpkix-jdk18on</artifactId>
85
- <version>1.78.1</version>
85
+ <version>1.79</version>
86
86
  </dependency>
87
87
  <dependency>
88
88
  <groupId>org.bouncycastle</groupId>
89
89
  <artifactId>bctls-jdk18on</artifactId>
90
- <version>1.78.1</version>
90
+ <version>1.79</version>
91
91
  </dependency>
92
92
  <dependency>
93
93
  <groupId>org.bouncycastle</groupId>
94
94
  <artifactId>bcutil-jdk18on</artifactId>
95
- <version>1.78.1</version>
95
+ <version>1.79</version>
96
96
  </dependency>
97
97
  <dependency>
98
98
  <groupId>org.jruby</groupId>
@@ -274,6 +274,7 @@ DO NOT MODIFY - GENERATED CODE
274
274
  <configuration>
275
275
  <source>1.8</source>
276
276
  <target>1.8</target>
277
+ <release>8</release>
277
278
  <encoding>UTF-8</encoding>
278
279
  <debug>true</debug>
279
280
  <showWarnings>true</showWarnings>
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.1
4
+ version: 0.15.2
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: 2024-09-27 00:00:00.000000000 Z
13
+ date: 2024-11-24 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.
@@ -42,10 +42,10 @@ files:
42
42
  - lib/openssl/pkey.rb
43
43
  - lib/openssl/ssl.rb
44
44
  - lib/openssl/x509.rb
45
- - lib/org/bouncycastle/bcpkix-jdk18on/1.78.1/bcpkix-jdk18on-1.78.1.jar
46
- - lib/org/bouncycastle/bcprov-jdk18on/1.78.1/bcprov-jdk18on-1.78.1.jar
47
- - lib/org/bouncycastle/bctls-jdk18on/1.78.1/bctls-jdk18on-1.78.1.jar
48
- - lib/org/bouncycastle/bcutil-jdk18on/1.78.1/bcutil-jdk18on-1.78.1.jar
45
+ - lib/org/bouncycastle/bcpkix-jdk18on/1.79/bcpkix-jdk18on-1.79.jar
46
+ - lib/org/bouncycastle/bcprov-jdk18on/1.79/bcprov-jdk18on-1.79.jar
47
+ - lib/org/bouncycastle/bctls-jdk18on/1.79/bctls-jdk18on-1.79.jar
48
+ - lib/org/bouncycastle/bcutil-jdk18on/1.79/bcutil-jdk18on-1.79.jar
49
49
  - pom.xml
50
50
  homepage: https://github.com/jruby/jruby-openssl
51
51
  licenses:
@@ -68,12 +68,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
70
  requirements:
71
- - jar org.bouncycastle:bcprov-jdk18on, 1.78.1
72
- - jar org.bouncycastle:bcpkix-jdk18on, 1.78.1
73
- - jar org.bouncycastle:bctls-jdk18on, 1.78.1
74
- - jar org.bouncycastle:bcutil-jdk18on, 1.78.1
75
- rubyforge_project:
76
- rubygems_version: 2.6.14.1
71
+ - jar org.bouncycastle:bcprov-jdk18on, 1.79
72
+ - jar org.bouncycastle:bcpkix-jdk18on, 1.79
73
+ - jar org.bouncycastle:bctls-jdk18on, 1.79
74
+ - jar org.bouncycastle:bcutil-jdk18on, 1.79
75
+ rubygems_version: 3.1.6
77
76
  signing_key:
78
77
  specification_version: 4
79
78
  summary: JRuby OpenSSL