jruby-openssl 0.10.2-java → 0.10.3-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
2
  SHA1:
3
- metadata.gz: 343b359b46d39883800a0aaba541f0f84ca42a2c
4
- data.tar.gz: eb5936b080874abf7656fa8d0b27d6198248aa7c
3
+ metadata.gz: 179c591ca920396e5cd7c744af1d7ae7cba62d37
4
+ data.tar.gz: 715e08ce0ec69e1b78798565a4e58feec6b85c2a
5
5
  SHA512:
6
- metadata.gz: 05e7c1241d7762a10aef45024cd518ae3b7ac33642a5ff06868dcac49c0949cf4c5d376d7cede4f5bf86b2660318ac767af1fd2bae90bd2bc6a1855228980a88
7
- data.tar.gz: 12ed4b28cc7a408d72e6f9b46120468c1d5d14f35cde805528d4793d8392d3ad73ed420b0350a2967b5613c38aab4adde4e19836101c73050be2f82305bb4352
6
+ metadata.gz: e12416104dda2fc1a04dab1c80cca4f8bf2f6f22ca6a0c68b908eda511b1cabf3c59df7f22864a55acc05a483a490434cdfbabadd097facd306988b0762844ed
7
+ data.tar.gz: a0bc43d562689b760e151845e065de6a69a68672702fc464eff60dc058ecb83ffd04ad64c7e3248659d0365181f8b418811fcc2327b7ac36ee98c7e609a65eed
data/History.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## 0.10.3
2
+
3
+ * [fix] implement (missing) PKey::DSA#params
4
+ * [fix] authorityKeyIdentifier ext (general-name) value
5
+ * [fix] authority keyid extension's :always part optional (#174)
6
+ * [fix] work-around for not setting certificate serial
7
+ raise a more friendly error (jruby/jruby#1691)
8
+ * [fix] PKey.read not parsing RSA pub-key (#176)
9
+ * [feat] support reading DSA (public key) in full DER
10
+ * [fix] RSA key DER format to closely follow OpenSSL
11
+ * [fix] add missing ASN1 factory methods (Null, EndOfContent)
12
+ * [fix] support getting password from block for PKeys
13
+ * [fix] incorrect ASN.1 for wrapped Integer type
14
+ * [fix] correct public key for subjectKeyIdentifier ext (#173)
15
+ * [fix] invalid Cert#sign handling -> raise (instead of ClassCastException)
16
+ * [feat] more TLS (GCM) ciphers - supported on Java 8+
17
+ * [feat] add ECDHE-RSA-AES128-GCM-SHA256 as supported cipher (#185)
18
+ * [feat] add support for ECDHE-RSA-AES256-GCM-SHA384 (#187)
19
+ * [fix] try hard not to fail on unkown oids (OpenSSL::X509::Certificate#to_text)
20
+ * update Bouncy-Castle to 1.62 (and handle supported BC compatibility)
21
+
1
22
  ## 0.10.2
2
23
 
3
24
  * update Bouncy-Castle to 1.61 (and handle supported BC compatibility)
data/Mavenfile CHANGED
@@ -50,10 +50,10 @@ plugin( :compiler, '3.1',
50
50
  :encoding => 'UTF-8', :debug => true,
51
51
  :showWarnings => true, :showDeprecation => true,
52
52
  :excludes => [ 'module-info.java' ],
53
+ #:jdkToolchain => { :version => '[1.7,11)' },
53
54
 
54
55
  :generatedSourcesDirectory => gen_sources,
55
- :annotationProcessors => [ 'org.jruby.anno.AnnotationBinder' ],
56
- :compilerArgs => [ '-XDignore.symbol.file=true' ] ) do
56
+ :annotationProcessors => [ 'org.jruby.anno.AnnotationBinder' ]) do
57
57
 
58
58
  #execute_goal :compile, :id => 'annotation-binder', :phase => 'compile',
59
59
  # :generatedSourcesDirectory => gen_sources, #:outputDirectory => gen_sources,
@@ -62,15 +62,19 @@ plugin( :compiler, '3.1',
62
62
  # :useIncrementalCompilation => false, :fork => true, :verbose => true,
63
63
  # :compilerArgs => [ '-XDignore.symbol.file=true', '-J-Dfile.encoding=UTF-8' ]
64
64
 
65
- execute_goal :compile, :id => 'compile-populators', :phase => 'process-classes',
66
- :includes => [ 'org/jruby/gen/**/*.java' ], :optimize => true,
67
- :compilerArgs => [ '-XDignore.symbol.file=true' ]
68
- # NOTE: maybe '-J-Xbootclasspath/p:${unsafe.jar}' ... as well ?!
65
+ execute_goal :compile,
66
+ :id => 'compile-populators', :phase => 'process-classes',
67
+ :includes => [ 'org/jruby/gen/**/*.java' ],
68
+ :optimize => true,
69
+ :compilerArgs => [ '', '-XDignore.symbol.file=true' ]
69
70
  end
70
71
 
71
72
  profile 'module-info' do
72
73
  activation { jdk '[9,)' }
73
- plugin :compiler, '3.1', :source => '9', :target => java_target, :includes => [ 'module-info.java' ]
74
+ plugin :compiler, '3.8.1',
75
+ :source => '9', :target => java_target,
76
+ :release => '9',
77
+ :includes => [ 'module-info.java' ]
74
78
  end
75
79
 
76
80
  plugin :clean do
@@ -86,6 +90,11 @@ end
86
90
  jar 'org.jruby:jruby-core', '1.7.20', :scope => :provided
87
91
  jar 'junit:junit', '4.11', :scope => :test
88
92
 
93
+ # 9.1.17.0 is Java 7 compatible (till supporting JRuby 1.7)
94
+ # NOTE: to build on Java 11 - installing gems fails (due old jossl) with:
95
+ # load error: jopenssl/load -- java.lang.StringIndexOutOfBoundsException
96
+ MVN_JRUBY_VERSION = ENV_JAVA['java.version'].to_i >= 9 ? '9.2.9.0' : '9.1.17.0'
97
+
89
98
  jruby_plugin! :gem do
90
99
  # when installing dependent gems we want to use the built in openssl not the one from this lib directory
91
100
  # we compile against jruby-core-1.7.20 and want to keep this out of the plugin execution here
@@ -98,21 +107,22 @@ plugin :deploy, '2.8.1' do
98
107
  execute_goals( :deploy, :skip => false )
99
108
  end
100
109
 
101
- supported_bc_versions = %w{ 1.55 1.56 1.57 1.58 1.59 1.60 1.61 }
110
+ supported_bc_versions = %w{ 1.56 1.57 1.58 1.59 1.60 1.61 1.62 1.63 1.64 }
102
111
 
103
112
  default_bc_version = File.read File.expand_path('lib/jopenssl/version.rb', File.dirname(__FILE__))
104
113
  default_bc_version = default_bc_version[/BOUNCY_CASTLE_VERSION\s?=\s?'(.*?)'/, 1]
105
114
 
106
- properties( 'jruby.plugins.version' => '1.1.6',
107
- 'jruby.versions' => '9.1.17.0',
115
+ properties( 'jruby.plugins.version' => '1.1.8',
108
116
  'jruby.switches' => '-W0', # https://github.com/torquebox/jruby-maven-plugins/issues/94
109
117
  'bc.versions' => default_bc_version,
110
118
  'invoker.test' => '${bc.versions}',
111
119
  # allow to skip all tests with -Dmaven.test.skip
112
120
  'invoker.skip' => '${maven.test.skip}',
113
121
  'runit.dir' => 'src/test/ruby/**/test_*.rb',
114
- # use this version of jruby for ALL the jruby-maven-plugins
115
- 'jruby.version' => '9.1.17.0', # Java 7 compatible till supporting JRuby 1.7
122
+ 'mavengem.wagon.version' => '1.0.3', # for jruby plugin
123
+ 'mavengem-wagon.version' => '1.0.3', # for polyglot-ruby
124
+ # use this version of jruby for the jruby-maven-plugins
125
+ 'jruby.versions' => MVN_JRUBY_VERSION, 'jruby.version' => MVN_JRUBY_VERSION,
116
126
  # dump pom.xml as readonly when running 'rmvn'
117
127
  'polyglot.dump.pom' => 'pom.xml',
118
128
  'polyglot.dump.readonly' => true )
@@ -156,7 +166,7 @@ end
156
166
  }
157
167
 
158
168
  jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.2.0 9.1.8.0 9.1.12.0 9.1.16.0 9.1.17.0 }
159
- jruby_9_K_versions += %w{ 9.2.0.0 9.2.5.0 9.2.6.0 }
169
+ jruby_9_K_versions += %w{ 9.2.0.0 9.2.5.0 9.2.6.0 9.2.7.0 9.2.8.0 9.2.9.0 }
160
170
 
161
171
  jruby_9_K_versions.each { |version|
162
172
  profile :id => "test-#{version}" do
data/README.md CHANGED
@@ -23,6 +23,7 @@ the JRuby [mailing list][1] or the [bug tracker][2].
23
23
  | 0.9.17 | 1.6.8-9.1.5 | Java 6-8 | 1.50-1.54 |
24
24
  | ~>0.9.18 | 1.6.8-9.1.x | Java 6-8 | 1.50-1.55 |
25
25
  | 0.10.0 | 1.7.20-9.2.x | Java 7-10 | 1.55-1.59 |
26
+ | 0.10.3 | 1.7.20-9.2.x | Java 7-11 | 1.56-1.62 |
26
27
 
27
28
  NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
28
29
 
@@ -42,28 +43,24 @@ any of OpenSSL's C code, only Ruby parts (*.rb) are the same as in MRI's OpenSSL
42
43
  mvn test
43
44
 
44
45
  will run (junit as well as ruby) tests and a some ruby tests against the default
45
- jruby version. to pick a different version and/or modes (1.8, 1.9, 2.0, 2.1) run
46
+ jruby version. to pick a different JRuby version run
46
47
 
47
- mvn test -Djruby.versions=1.7.12 -Djruby.modes=1.8
48
+ mvn test -Djruby.versions=9.2.8.0
48
49
 
49
50
  for running integration-tests the gem will be first installed and then the same
50
51
  tests run for each possible bouncy-castle version (see [listing][3]), run with
51
52
 
52
- mvn verify -P test-9.0.4.0,test-1.7.22
53
+ mvn verify -P test-9.2.9.0,test-9.1.17.0
53
54
 
54
55
  or pick a bouncy-castle version
55
56
 
56
- mvn verify -P test-1.6.8 -Dbc.versions=1.50
57
-
58
- or simply be more picky
59
-
60
- mvn verify -P test-1.7.4 -Dbc.versions=1.49 -Djruby.modes=1.9
57
+ mvn verify -P test-9.2.9.0 -Dbc.versions=1.60
61
58
 
62
59
  NOTE: you can pick any jruby version which is on [central][4] or on [ci.jruby][5]
63
60
 
64
61
  ## License
65
62
 
66
- (c) 2009-2018 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
63
+ (c) 2009-2020 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
67
64
 
68
65
  [0]: https://secure.travis-ci.org/jruby/jruby-openssl.svg
69
66
  [1]: http://xircles.codehaus.org/projects/jruby/lists
Binary file
@@ -1,9 +1,9 @@
1
1
  module JOpenSSL
2
- VERSION = '0.10.2'
3
- BOUNCY_CASTLE_VERSION = '1.61'
2
+ VERSION = '0.10.3'
3
+ BOUNCY_CASTLE_VERSION = '1.62'
4
4
  end
5
5
 
6
6
  Object.class_eval do
7
7
  Jopenssl = JOpenSSL
8
8
  private_constant :Jopenssl if respond_to?(:private_constant)
9
- end
9
+ end
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>rubygems</groupId>
13
13
  <artifactId>jruby-openssl</artifactId>
14
- <version>0.10.2</version>
14
+ <version>0.10.3</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,14 +60,15 @@ DO NOT MODIFIY - GENERATED CODE
60
60
  </snapshotRepository>
61
61
  </distributionManagement>
62
62
  <properties>
63
- <bc.versions>1.61</bc.versions>
63
+ <bc.versions>1.62</bc.versions>
64
64
  <invoker.skip>${maven.test.skip}</invoker.skip>
65
65
  <invoker.test>${bc.versions}</invoker.test>
66
- <jruby.plugins.version>1.1.6</jruby.plugins.version>
66
+ <jruby.plugins.version>1.1.8</jruby.plugins.version>
67
67
  <jruby.switches>-W0</jruby.switches>
68
68
  <jruby.version>9.1.17.0</jruby.version>
69
69
  <jruby.versions>9.1.17.0</jruby.versions>
70
- <mavengem.wagon.version>0.2.1</mavengem.wagon.version>
70
+ <mavengem-wagon.version>1.0.3</mavengem-wagon.version>
71
+ <mavengem.wagon.version>1.0.3</mavengem.wagon.version>
71
72
  <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
72
73
  <polyglot.dump.readonly>true</polyglot.dump.readonly>
73
74
  <runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
@@ -83,7 +84,7 @@ DO NOT MODIFIY - GENERATED CODE
83
84
  <dependency>
84
85
  <groupId>rubygems</groupId>
85
86
  <artifactId>mocha</artifactId>
86
- <version>[1.1.0,1.1.99999]</version>
87
+ <version>[1.4,2.0)</version>
87
88
  <type>gem</type>
88
89
  <scope>test</scope>
89
90
  </dependency>
@@ -97,17 +98,17 @@ DO NOT MODIFIY - GENERATED CODE
97
98
  <dependency>
98
99
  <groupId>org.bouncycastle</groupId>
99
100
  <artifactId>bcprov-jdk15on</artifactId>
100
- <version>1.61</version>
101
+ <version>1.62</version>
101
102
  </dependency>
102
103
  <dependency>
103
104
  <groupId>org.bouncycastle</groupId>
104
105
  <artifactId>bcpkix-jdk15on</artifactId>
105
- <version>1.61</version>
106
+ <version>1.62</version>
106
107
  </dependency>
107
108
  <dependency>
108
109
  <groupId>org.bouncycastle</groupId>
109
110
  <artifactId>bctls-jdk15on</artifactId>
110
- <version>1.61</version>
111
+ <version>1.62</version>
111
112
  </dependency>
112
113
  <dependency>
113
114
  <groupId>org.jruby</groupId>
@@ -274,6 +275,7 @@ DO NOT MODIFIY - GENERATED CODE
274
275
  </includes>
275
276
  <optimize>true</optimize>
276
277
  <compilerArgs>
278
+ <compilerArg></compilerArg>
277
279
  <compilerArg>-XDignore.symbol.file=true</compilerArg>
278
280
  </compilerArgs>
279
281
  </configuration>
@@ -293,9 +295,6 @@ DO NOT MODIFIY - GENERATED CODE
293
295
  <annotationProcessors>
294
296
  <annotationProcessor>org.jruby.anno.AnnotationBinder</annotationProcessor>
295
297
  </annotationProcessors>
296
- <compilerArgs>
297
- <compilerArg>-XDignore.symbol.file=true</compilerArg>
298
- </compilerArgs>
299
298
  </configuration>
300
299
  </plugin>
301
300
  <plugin>
@@ -387,10 +386,11 @@ DO NOT MODIFIY - GENERATED CODE
387
386
  <plugins>
388
387
  <plugin>
389
388
  <artifactId>maven-compiler-plugin</artifactId>
390
- <version>3.1</version>
389
+ <version>3.8.1</version>
391
390
  <configuration>
392
391
  <source>9</source>
393
392
  <target>1.7</target>
393
+ <release>9</release>
394
394
  <includes>
395
395
  <include>module-info.java</include>
396
396
  </includes>
@@ -433,7 +433,7 @@ DO NOT MODIFIY - GENERATED CODE
433
433
  </plugins>
434
434
  </build>
435
435
  <properties>
436
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
436
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
437
437
  <jruby.modes>1.9,2.0</jruby.modes>
438
438
  <jruby.versions>1.7.20</jruby.versions>
439
439
  </properties>
@@ -471,7 +471,7 @@ DO NOT MODIFIY - GENERATED CODE
471
471
  </plugins>
472
472
  </build>
473
473
  <properties>
474
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
474
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
475
475
  <jruby.modes>1.9,2.0</jruby.modes>
476
476
  <jruby.versions>1.7.22</jruby.versions>
477
477
  </properties>
@@ -509,7 +509,7 @@ DO NOT MODIFIY - GENERATED CODE
509
509
  </plugins>
510
510
  </build>
511
511
  <properties>
512
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
512
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
513
513
  <jruby.modes>1.9,2.0</jruby.modes>
514
514
  <jruby.versions>1.7.23</jruby.versions>
515
515
  </properties>
@@ -547,7 +547,7 @@ DO NOT MODIFIY - GENERATED CODE
547
547
  </plugins>
548
548
  </build>
549
549
  <properties>
550
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
550
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
551
551
  <jruby.modes>1.9,2.0</jruby.modes>
552
552
  <jruby.versions>1.7.24</jruby.versions>
553
553
  </properties>
@@ -585,7 +585,7 @@ DO NOT MODIFIY - GENERATED CODE
585
585
  </plugins>
586
586
  </build>
587
587
  <properties>
588
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
588
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
589
589
  <jruby.modes>1.9,2.0</jruby.modes>
590
590
  <jruby.versions>1.7.25</jruby.versions>
591
591
  </properties>
@@ -623,7 +623,7 @@ DO NOT MODIFIY - GENERATED CODE
623
623
  </plugins>
624
624
  </build>
625
625
  <properties>
626
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
626
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
627
627
  <jruby.modes>1.9,2.0</jruby.modes>
628
628
  <jruby.versions>1.7.26</jruby.versions>
629
629
  </properties>
@@ -661,7 +661,7 @@ DO NOT MODIFIY - GENERATED CODE
661
661
  </plugins>
662
662
  </build>
663
663
  <properties>
664
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
664
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
665
665
  <jruby.modes>1.9,2.0</jruby.modes>
666
666
  <jruby.versions>1.7.27</jruby.versions>
667
667
  </properties>
@@ -699,7 +699,7 @@ DO NOT MODIFIY - GENERATED CODE
699
699
  </plugins>
700
700
  </build>
701
701
  <properties>
702
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
702
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
703
703
  <jruby.version>9.0.1.0</jruby.version>
704
704
  <jruby.versions>9.0.1.0</jruby.versions>
705
705
  </properties>
@@ -737,7 +737,7 @@ DO NOT MODIFIY - GENERATED CODE
737
737
  </plugins>
738
738
  </build>
739
739
  <properties>
740
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
740
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
741
741
  <jruby.version>9.0.5.0</jruby.version>
742
742
  <jruby.versions>9.0.5.0</jruby.versions>
743
743
  </properties>
@@ -775,7 +775,7 @@ DO NOT MODIFIY - GENERATED CODE
775
775
  </plugins>
776
776
  </build>
777
777
  <properties>
778
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
778
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
779
779
  <jruby.version>9.1.2.0</jruby.version>
780
780
  <jruby.versions>9.1.2.0</jruby.versions>
781
781
  </properties>
@@ -813,7 +813,7 @@ DO NOT MODIFIY - GENERATED CODE
813
813
  </plugins>
814
814
  </build>
815
815
  <properties>
816
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
816
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
817
817
  <jruby.version>9.1.8.0</jruby.version>
818
818
  <jruby.versions>9.1.8.0</jruby.versions>
819
819
  </properties>
@@ -851,7 +851,7 @@ DO NOT MODIFIY - GENERATED CODE
851
851
  </plugins>
852
852
  </build>
853
853
  <properties>
854
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
854
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
855
855
  <jruby.version>9.1.12.0</jruby.version>
856
856
  <jruby.versions>9.1.12.0</jruby.versions>
857
857
  </properties>
@@ -889,7 +889,7 @@ DO NOT MODIFIY - GENERATED CODE
889
889
  </plugins>
890
890
  </build>
891
891
  <properties>
892
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
892
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
893
893
  <jruby.version>9.1.16.0</jruby.version>
894
894
  <jruby.versions>9.1.16.0</jruby.versions>
895
895
  </properties>
@@ -927,7 +927,7 @@ DO NOT MODIFIY - GENERATED CODE
927
927
  </plugins>
928
928
  </build>
929
929
  <properties>
930
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
930
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
931
931
  <jruby.version>9.1.17.0</jruby.version>
932
932
  <jruby.versions>9.1.17.0</jruby.versions>
933
933
  </properties>
@@ -965,7 +965,7 @@ DO NOT MODIFIY - GENERATED CODE
965
965
  </plugins>
966
966
  </build>
967
967
  <properties>
968
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
968
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
969
969
  <jruby.version>9.2.0.0</jruby.version>
970
970
  <jruby.versions>9.2.0.0</jruby.versions>
971
971
  </properties>
@@ -1003,7 +1003,7 @@ DO NOT MODIFIY - GENERATED CODE
1003
1003
  </plugins>
1004
1004
  </build>
1005
1005
  <properties>
1006
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
1006
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
1007
1007
  <jruby.version>9.2.5.0</jruby.version>
1008
1008
  <jruby.versions>9.2.5.0</jruby.versions>
1009
1009
  </properties>
@@ -1041,11 +1041,125 @@ DO NOT MODIFIY - GENERATED CODE
1041
1041
  </plugins>
1042
1042
  </build>
1043
1043
  <properties>
1044
- <bc.versions>1.55,1.56,1.57,1.58,1.59,1.60,1.61</bc.versions>
1044
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
1045
1045
  <jruby.version>9.2.6.0</jruby.version>
1046
1046
  <jruby.versions>9.2.6.0</jruby.versions>
1047
1047
  </properties>
1048
1048
  </profile>
1049
+ <profile>
1050
+ <id>test-9.2.7.0</id>
1051
+ <build>
1052
+ <plugins>
1053
+ <plugin>
1054
+ <artifactId>maven-invoker-plugin</artifactId>
1055
+ <version>1.8</version>
1056
+ <executions>
1057
+ <execution>
1058
+ <goals>
1059
+ <goal>install</goal>
1060
+ <goal>run</goal>
1061
+ </goals>
1062
+ <configuration>
1063
+ <projectsDirectory>integration</projectsDirectory>
1064
+ <pomIncludes>
1065
+ <pomInclude>*/pom.xml</pomInclude>
1066
+ </pomIncludes>
1067
+ <streamLogs>true</streamLogs>
1068
+ <properties>
1069
+ <jruby.versions>${jruby.versions}</jruby.versions>
1070
+ <jruby.modes>${jruby.modes}</jruby.modes>
1071
+ <jruby.openssl.version>${project.version}</jruby.openssl.version>
1072
+ <bc.versions>${bc.versions}</bc.versions>
1073
+ <runit.dir>${runit.dir}</runit.dir>
1074
+ </properties>
1075
+ </configuration>
1076
+ </execution>
1077
+ </executions>
1078
+ </plugin>
1079
+ </plugins>
1080
+ </build>
1081
+ <properties>
1082
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
1083
+ <jruby.version>9.2.7.0</jruby.version>
1084
+ <jruby.versions>9.2.7.0</jruby.versions>
1085
+ </properties>
1086
+ </profile>
1087
+ <profile>
1088
+ <id>test-9.2.8.0</id>
1089
+ <build>
1090
+ <plugins>
1091
+ <plugin>
1092
+ <artifactId>maven-invoker-plugin</artifactId>
1093
+ <version>1.8</version>
1094
+ <executions>
1095
+ <execution>
1096
+ <goals>
1097
+ <goal>install</goal>
1098
+ <goal>run</goal>
1099
+ </goals>
1100
+ <configuration>
1101
+ <projectsDirectory>integration</projectsDirectory>
1102
+ <pomIncludes>
1103
+ <pomInclude>*/pom.xml</pomInclude>
1104
+ </pomIncludes>
1105
+ <streamLogs>true</streamLogs>
1106
+ <properties>
1107
+ <jruby.versions>${jruby.versions}</jruby.versions>
1108
+ <jruby.modes>${jruby.modes}</jruby.modes>
1109
+ <jruby.openssl.version>${project.version}</jruby.openssl.version>
1110
+ <bc.versions>${bc.versions}</bc.versions>
1111
+ <runit.dir>${runit.dir}</runit.dir>
1112
+ </properties>
1113
+ </configuration>
1114
+ </execution>
1115
+ </executions>
1116
+ </plugin>
1117
+ </plugins>
1118
+ </build>
1119
+ <properties>
1120
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
1121
+ <jruby.version>9.2.8.0</jruby.version>
1122
+ <jruby.versions>9.2.8.0</jruby.versions>
1123
+ </properties>
1124
+ </profile>
1125
+ <profile>
1126
+ <id>test-9.2.9.0</id>
1127
+ <build>
1128
+ <plugins>
1129
+ <plugin>
1130
+ <artifactId>maven-invoker-plugin</artifactId>
1131
+ <version>1.8</version>
1132
+ <executions>
1133
+ <execution>
1134
+ <goals>
1135
+ <goal>install</goal>
1136
+ <goal>run</goal>
1137
+ </goals>
1138
+ <configuration>
1139
+ <projectsDirectory>integration</projectsDirectory>
1140
+ <pomIncludes>
1141
+ <pomInclude>*/pom.xml</pomInclude>
1142
+ </pomIncludes>
1143
+ <streamLogs>true</streamLogs>
1144
+ <properties>
1145
+ <jruby.versions>${jruby.versions}</jruby.versions>
1146
+ <jruby.modes>${jruby.modes}</jruby.modes>
1147
+ <jruby.openssl.version>${project.version}</jruby.openssl.version>
1148
+ <bc.versions>${bc.versions}</bc.versions>
1149
+ <runit.dir>${runit.dir}</runit.dir>
1150
+ </properties>
1151
+ </configuration>
1152
+ </execution>
1153
+ </executions>
1154
+ </plugin>
1155
+ </plugins>
1156
+ </build>
1157
+ <properties>
1158
+ <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
1159
+ <jruby.version>9.2.9.0</jruby.version>
1160
+ <jruby.versions>9.2.9.0</jruby.versions>
1161
+ </properties>
1162
+ </profile>
1049
1163
  <profile>
1050
1164
  <id>release</id>
1051
1165
  <build>
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.2
4
+ version: 0.10.3
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: 2019-03-01 00:00:00.000000000 Z
13
+ date: 2020-02-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  requirement: !ruby/object:Gem::Requirement
@@ -31,7 +31,10 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 1.1.0
34
+ version: '1.4'
35
+ - - "<"
36
+ - !ruby/object:Gem::Version
37
+ version: '2.0'
35
38
  name: mocha
36
39
  prerelease: false
37
40
  type: :development
@@ -39,7 +42,10 @@ dependencies:
39
42
  requirements:
40
43
  - - "~>"
41
44
  - !ruby/object:Gem::Version
42
- version: 1.1.0
45
+ version: '1.4'
46
+ - - "<"
47
+ - !ruby/object:Gem::Version
48
+ version: '2.0'
43
49
  - !ruby/object:Gem::Dependency
44
50
  requirement: !ruby/object:Gem::Requirement
45
51
  requirements:
@@ -118,9 +124,9 @@ files:
118
124
  - lib/openssl/ssl.rb
119
125
  - lib/openssl/x509-internal.rb
120
126
  - lib/openssl/x509.rb
121
- - lib/org/bouncycastle/bcpkix-jdk15on/1.61/bcpkix-jdk15on-1.61.jar
122
- - lib/org/bouncycastle/bcprov-jdk15on/1.61/bcprov-jdk15on-1.61.jar
123
- - lib/org/bouncycastle/bctls-jdk15on/1.61/bctls-jdk15on-1.61.jar
127
+ - lib/org/bouncycastle/bcpkix-jdk15on/1.62/bcpkix-jdk15on-1.62.jar
128
+ - lib/org/bouncycastle/bcprov-jdk15on/1.62/bcprov-jdk15on-1.62.jar
129
+ - lib/org/bouncycastle/bctls-jdk15on/1.62/bctls-jdk15on-1.62.jar
124
130
  - pom.xml
125
131
  homepage: https://github.com/jruby/jruby-openssl
126
132
  licenses:
@@ -143,9 +149,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
149
  - !ruby/object:Gem::Version
144
150
  version: 2.4.8
145
151
  requirements:
146
- - jar org.bouncycastle:bcprov-jdk15on, 1.61
147
- - jar org.bouncycastle:bcpkix-jdk15on, 1.61
148
- - jar org.bouncycastle:bctls-jdk15on, 1.61
152
+ - jar org.bouncycastle:bcprov-jdk15on, 1.62
153
+ - jar org.bouncycastle:bcpkix-jdk15on, 1.62
154
+ - jar org.bouncycastle:bctls-jdk15on, 1.62
149
155
  rubyforge_project:
150
156
  rubygems_version: 2.6.14.1
151
157
  signing_key: