jruby-openssl 0.10.5-java → 0.10.7-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
  SHA1:
3
- metadata.gz: 9d6499fed6e65be2c2ce456ff6aa60748cf25877
4
- data.tar.gz: eb002de6cd119571cd27844029a92034deb0e585
3
+ metadata.gz: 5556d31972e0e74ffc7e20e662b8e1666cce85b0
4
+ data.tar.gz: '0439ad0115cdb8ebef38c1a10a514ee4dc48d58c'
5
5
  SHA512:
6
- metadata.gz: d720cada18be2c96df796c93fe545a72b58fc53d24d06781509f50751bafb340886840530b6b469c0c97b66aedff9a13bde58017cff5b1514330a1611ec31464
7
- data.tar.gz: 9eb17b1809536887e1c7beef398bebce95c86ed5ed0d46e43c658396387cec56f7fafbd4098fa4c2f273960faf5cae12fe980131eb6ab56bee8a694fdc75eea5
6
+ metadata.gz: fcd2ba1d6d0e2c43a9f30250c441590a1d1490b271c09ff8f08f014daf48c4f6ad77de55a59d7dc33bef17f93f3b9bdd6fa613418db9a6b7736fe95b6bce2865
7
+ data.tar.gz: 9dbb39508d7f2685c428605493984908c506251e4fcaf15c2dafb3f4ead92e5a556de3687ae273ca602e555cf8c9a8329b697c68a5e9da1794f0b66cf6f1b486
data/History.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## 0.10.7
2
+
3
+ * [feat] upgrade BC library to 1.68
4
+ * [fix] SSLContext#ciphers= (fixes #221 and jruby/jruby#3100) (#222)
5
+ * [fix] Java::JavaLang::StringIndexOutOfBoundsException on ctx.cipher=[] (fixes #220) (#223)
6
+ * [fix] SSLContext#ciphers= compatibility (fixes #223) (#220)
7
+ * [fix] Match OpenSSL::X509::Name.hash implementation with Ruby (#216, #218)
8
+ * [fix] OpenSSL::SSL::SSLContext#min_version= failure (#215)
9
+ * [fix] adds OpenSSL::Cipher#iv_len= setter (#208)
10
+
11
+ ## 0.10.6 (yanked)
12
+
13
+ Due several regressions please update to version 0.10.7 or higher.
14
+
1
15
  ## 0.10.5
2
16
 
3
17
  * [fix] EC key sign/verify (#193)
data/Mavenfile CHANGED
@@ -88,7 +88,7 @@ plugin :clean do
88
88
  end
89
89
 
90
90
  jar 'org.jruby:jruby-core', '1.7.20', :scope => :provided
91
- jar 'junit:junit', '4.11', :scope => :test
91
+ jar 'junit:junit', '[4.13.1,)', :scope => :test
92
92
 
93
93
  # 9.1.17.0 is Java 7 compatible (till supporting JRuby 1.7)
94
94
  # NOTE: to build on Java 11 - installing gems fails (due old jossl) with:
@@ -123,9 +123,8 @@ properties( 'jruby.plugins.version' => '1.1.8',
123
123
  'mavengem-wagon.version' => '1.0.3', # for polyglot-ruby
124
124
  # use this version of jruby for the jruby-maven-plugins
125
125
  'jruby.versions' => MVN_JRUBY_VERSION, 'jruby.version' => MVN_JRUBY_VERSION,
126
- # dump pom.xml as readonly when running 'rmvn'
127
- 'polyglot.dump.pom' => 'pom.xml',
128
- 'polyglot.dump.readonly' => true )
126
+ # dump pom.xml when running 'rmvn'
127
+ 'polyglot.dump.pom' => 'pom.xml', 'polyglot.dump.readonly' => false )
129
128
 
130
129
  # make sure we have the embedded jars in place before we run runit plugin
131
130
  plugin! :dependency do
data/lib/jopenssl.jar CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  module JOpenSSL
2
- VERSION = '0.10.5'
3
- BOUNCY_CASTLE_VERSION = '1.65'
2
+ VERSION = '0.10.7'
3
+ BOUNCY_CASTLE_VERSION = '1.68'
4
4
  end
5
5
 
6
6
  Object.class_eval do
data/pom.xml CHANGED
@@ -6,12 +6,12 @@ DO NOT MODIFIY - GENERATED CODE
6
6
 
7
7
 
8
8
  -->
9
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
9
+ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
10
10
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>rubygems</groupId>
13
13
  <artifactId>jruby-openssl</artifactId>
14
- <version>0.10.5</version>
14
+ <version>0.10.7</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,34 +60,34 @@ DO NOT MODIFIY - GENERATED CODE
60
60
  </snapshotRepository>
61
61
  </distributionManagement>
62
62
  <properties>
63
- <bc.versions>1.65</bc.versions>
64
- <invoker.skip>${maven.test.skip}</invoker.skip>
65
- <invoker.test>${bc.versions}</invoker.test>
66
- <jruby.plugins.version>1.1.8</jruby.plugins.version>
63
+ <bc.versions>1.68</bc.versions>
64
+ <mavengem.wagon.version>1.0.3</mavengem.wagon.version>
67
65
  <jruby.switches>-W0</jruby.switches>
68
66
  <jruby.version>9.1.17.0</jruby.version>
69
- <jruby.versions>9.1.17.0</jruby.versions>
67
+ <jruby.plugins.version>1.1.8</jruby.plugins.version>
68
+ <invoker.skip>${maven.test.skip}</invoker.skip>
69
+ <runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
70
70
  <mavengem-wagon.version>1.0.3</mavengem-wagon.version>
71
- <mavengem.wagon.version>1.0.3</mavengem.wagon.version>
71
+ <jruby.versions>9.1.17.0</jruby.versions>
72
+ <polyglot.dump.readonly>false</polyglot.dump.readonly>
72
73
  <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
73
- <polyglot.dump.readonly>true</polyglot.dump.readonly>
74
- <runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
74
+ <invoker.test>${bc.versions}</invoker.test>
75
75
  </properties>
76
76
  <dependencies>
77
77
  <dependency>
78
78
  <groupId>org.bouncycastle</groupId>
79
79
  <artifactId>bcprov-jdk15on</artifactId>
80
- <version>1.65</version>
80
+ <version>1.68</version>
81
81
  </dependency>
82
82
  <dependency>
83
83
  <groupId>org.bouncycastle</groupId>
84
84
  <artifactId>bcpkix-jdk15on</artifactId>
85
- <version>1.65</version>
85
+ <version>1.68</version>
86
86
  </dependency>
87
87
  <dependency>
88
88
  <groupId>org.bouncycastle</groupId>
89
89
  <artifactId>bctls-jdk15on</artifactId>
90
- <version>1.65</version>
90
+ <version>1.68</version>
91
91
  </dependency>
92
92
  <dependency>
93
93
  <groupId>org.jruby</groupId>
@@ -98,7 +98,7 @@ DO NOT MODIFIY - GENERATED CODE
98
98
  <dependency>
99
99
  <groupId>junit</groupId>
100
100
  <artifactId>junit</artifactId>
101
- <version>4.11</version>
101
+ <version>[4.13.1,)</version>
102
102
  <scope>test</scope>
103
103
  </dependency>
104
104
  </dependencies>
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.10.5
4
+ version: 0.10.7
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: 2020-10-01 00:00:00.000000000 Z
13
+ date: 2021-04-28 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 native library.
16
16
  email: [email protected]
@@ -76,9 +76,9 @@ files:
76
76
  - lib/openssl/ssl.rb
77
77
  - lib/openssl/x509-internal.rb
78
78
  - lib/openssl/x509.rb
79
- - lib/org/bouncycastle/bcpkix-jdk15on/1.65/bcpkix-jdk15on-1.65.jar
80
- - lib/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar
81
- - lib/org/bouncycastle/bctls-jdk15on/1.65/bctls-jdk15on-1.65.jar
79
+ - lib/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar
80
+ - lib/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar
81
+ - lib/org/bouncycastle/bctls-jdk15on/1.68/bctls-jdk15on-1.68.jar
82
82
  - pom.xml
83
83
  homepage: https://github.com/jruby/jruby-openssl
84
84
  licenses:
@@ -101,9 +101,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
101
  - !ruby/object:Gem::Version
102
102
  version: 2.4.8
103
103
  requirements:
104
- - jar org.bouncycastle:bcprov-jdk15on, 1.65
105
- - jar org.bouncycastle:bcpkix-jdk15on, 1.65
106
- - jar org.bouncycastle:bctls-jdk15on, 1.65
104
+ - jar org.bouncycastle:bcprov-jdk15on, 1.68
105
+ - jar org.bouncycastle:bcpkix-jdk15on, 1.68
106
+ - jar org.bouncycastle:bctls-jdk15on, 1.68
107
107
  rubyforge_project:
108
108
  rubygems_version: 2.6.14.1
109
109
  signing_key: