jruby-openssl 0.15.7-java → 0.16.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 +17 -0
- data/Mavenfile +16 -11
- data/README.md +1 -2
- data/Rakefile +2 -2
- data/lib/jopenssl/version.rb +2 -2
- data/lib/jopenssl.jar +0 -0
- data/lib/org/bouncycastle/bcpkix-jdk18on/{1.83/bcpkix-jdk18on-1.83.jar → 1.84/bcpkix-jdk18on-1.84.jar} +0 -0
- data/lib/org/bouncycastle/bcprov-jdk18on/{1.83/bcprov-jdk18on-1.83.jar → 1.84/bcprov-jdk18on-1.84.jar} +0 -0
- data/lib/org/bouncycastle/bctls-jdk18on/{1.83/bctls-jdk18on-1.83.jar → 1.84/bctls-jdk18on-1.84.jar} +0 -0
- data/lib/org/bouncycastle/bcutil-jdk18on/{1.83/bcutil-jdk18on-1.83.jar → 1.84/bcutil-jdk18on-1.84.jar} +0 -0
- data/pom.xml +41 -31
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59707dcf352c6c902a707bfec1d0dfac1ba7be49a9d50f7ea5c9ba8afbad8052
|
|
4
|
+
data.tar.gz: 50261d4fca0b69f9b289df3165407e4c465acb6f33ed50f9bd459e4a0f6191fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4be4fc25cf41e7601d34a200c8d7d018516690dce35fb08fd189b1032fe7cfd9627318bce391bc5c9b03d462403004ea69c49a1059f69053f2689334daf4bf31
|
|
7
|
+
data.tar.gz: d84ee0c194473fab1ca2665735af092cd80520096ae03c6e0dab2d3cc502f52ae6d58573598809bfc4858e478456463a608cc93cd4bbef4a65fcffa561483776
|
data/History.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## 0.16.0
|
|
2
|
+
|
|
3
|
+
Upgrading Bouncy Castle to version 1.84.
|
|
4
|
+
SSL non-blocking I/O improvements.
|
|
5
|
+
|
|
6
|
+
- [feat] implement `OpenSSL::ASN1.traverse` helper
|
|
7
|
+
- [feat] remove SHA1PRNG fallback: use default `SecureRandom`
|
|
8
|
+
- [fix] SSL write loss on non-blocking partial flush (#242)
|
|
9
|
+
- [fix] `read_nonblock(exception: false)` raising `SSLErrorWaitReadable`
|
|
10
|
+
- [fix] `X509::Certificate#dup` dropping all extensions (#356)
|
|
11
|
+
- [fix] format `authorityInfoAccess` extension values (#210)
|
|
12
|
+
- [fix] coerce `HMAC#update` input as `String`
|
|
13
|
+
- [compat] undefine `clone` on `Store` and `StoreContext`
|
|
14
|
+
- [refactor] use constant-time comparison in PKCS7 and SimpleSecretKey
|
|
15
|
+
- [refactor] overflow protection in `MemBIO` buffer reallocation
|
|
16
|
+
- [deps] upgrade BC to version 1.84
|
|
17
|
+
|
|
1
18
|
## 0.15.7
|
|
2
19
|
|
|
3
20
|
* [fix] handle CRL with optional nextUpdate absent
|
data/Mavenfile
CHANGED
|
@@ -10,7 +10,7 @@ end
|
|
|
10
10
|
java_target = '1.8'
|
|
11
11
|
gen_sources = '${basedir}/target/generated-sources' # hard-coded in AnnotationBinder
|
|
12
12
|
|
|
13
|
-
plugin( 'org.codehaus.mojo:exec-maven-plugin', '
|
|
13
|
+
plugin( 'org.codehaus.mojo:exec-maven-plugin', '3.5.0' ) do
|
|
14
14
|
|
|
15
15
|
=begin
|
|
16
16
|
invoker_main = '-Djruby.bytecode.version=${compiler.target}'
|
|
@@ -41,7 +41,7 @@ plugin( 'org.codehaus.mojo:exec-maven-plugin', '1.3.2' ) do
|
|
|
41
41
|
'${project.build.outputDirectory}' ]
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
-
plugin( 'org.codehaus.mojo:build-helper-maven-plugin', '1
|
|
44
|
+
plugin( 'org.codehaus.mojo:build-helper-maven-plugin', '3.6.1' ) do
|
|
45
45
|
execute_goal 'add-source', :phase => 'process-classes', :sources => [ gen_sources ]
|
|
46
46
|
end
|
|
47
47
|
|
|
@@ -56,7 +56,7 @@ compiler_configuration = {
|
|
|
56
56
|
}
|
|
57
57
|
compiler_configuration.delete(:release) if ENV_JAVA['java.specification.version'] == '1.8'
|
|
58
58
|
|
|
59
|
-
plugin( :compiler, '3.
|
|
59
|
+
plugin( :compiler, '3.15.0', compiler_configuration) do
|
|
60
60
|
|
|
61
61
|
#execute_goal :compile, :id => 'annotation-binder', :phase => 'compile',
|
|
62
62
|
# :generatedSourcesDirectory => gen_sources, #:outputDirectory => gen_sources,
|
|
@@ -82,10 +82,15 @@ plugin :clean do
|
|
|
82
82
|
'failOnError' => 'false' )
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
jruby_compile_compat = '9.2.1.0'
|
|
86
|
+
jar 'org.jruby:jruby-core', jruby_compile_compat, :scope => :provided
|
|
86
87
|
# for invoker generated classes we need to add javax.annotation when on Java > 8
|
|
87
88
|
jar 'javax.annotation:javax.annotation-api', '1.3.1', :scope => :compile
|
|
88
|
-
jar 'junit:junit', '
|
|
89
|
+
jar 'org.junit.jupiter:junit-jupiter', '5.11.4', :scope => :test
|
|
90
|
+
# a test dependency to provide digest and other stdlib bits, needed when loading OpenSSL in Java unit tests
|
|
91
|
+
jar 'org.jruby:jruby-stdlib', jruby_compile_compat, :scope => :test
|
|
92
|
+
|
|
93
|
+
plugin :surefire, '3.5.5'
|
|
89
94
|
|
|
90
95
|
# NOTE: to build on Java 11 - installing gems fails (due old jossl) with:
|
|
91
96
|
# load error: jopenssl/load -- java.lang.StringIndexOutOfBoundsException
|
|
@@ -98,16 +103,16 @@ jruby_plugin! :gem do
|
|
|
98
103
|
end
|
|
99
104
|
|
|
100
105
|
# we want to have the snapshots on oss.sonatype.org and the released gems on maven central
|
|
101
|
-
plugin :deploy, '
|
|
106
|
+
plugin :deploy, '3.1.4' do
|
|
102
107
|
execute_goals( :deploy, :skip => false )
|
|
103
108
|
end
|
|
104
109
|
|
|
105
|
-
supported_bc_versions = %w{ 1.78 1.79 1.80 1.81 1.82 1.83 }
|
|
110
|
+
supported_bc_versions = %w{ 1.78 1.79 1.80 1.81 1.82 1.83 1.84 }
|
|
106
111
|
|
|
107
112
|
default_bc_version = File.read File.expand_path('lib/jopenssl/version.rb', File.dirname(__FILE__))
|
|
108
113
|
default_bc_version = default_bc_version[/BOUNCY_CASTLE_VERSION\s?=\s?'(.*?)'/, 1]
|
|
109
114
|
|
|
110
|
-
properties( 'jruby.plugins.version' => '3.0.
|
|
115
|
+
properties( 'jruby.plugins.version' => '3.0.6',
|
|
111
116
|
'jruby.switches' => '-W0', # https://github.com/torquebox/jruby-maven-plugins/issues/94
|
|
112
117
|
'bc.versions' => default_bc_version,
|
|
113
118
|
'invoker.test' => '${bc.versions}',
|
|
@@ -116,7 +121,7 @@ properties( 'jruby.plugins.version' => '3.0.2',
|
|
|
116
121
|
'skipRunit' => 'true',
|
|
117
122
|
'runit.dir' => 'src/test/ruby/**/test_*.rb',
|
|
118
123
|
'mavengem.wagon.version' => '2.0.2', # for jruby plugin
|
|
119
|
-
'mavengem-wagon.version' => '
|
|
124
|
+
'mavengem-wagon.version' => '3.0.0', # for polyglot-ruby
|
|
120
125
|
# use this version of jruby for the jruby-maven-plugins
|
|
121
126
|
'jruby.versions' => MVN_JRUBY_VERSION, 'jruby.version' => MVN_JRUBY_VERSION,
|
|
122
127
|
# dump pom.xml when running 'rmvn'
|
|
@@ -155,7 +160,7 @@ jruby_versions += %w{ 10.0.2.0 }
|
|
|
155
160
|
|
|
156
161
|
jruby_versions.each do |version|
|
|
157
162
|
profile :id => "test-#{version}" do
|
|
158
|
-
plugin :invoker, '
|
|
163
|
+
plugin :invoker, '3.8.1' do
|
|
159
164
|
execute_goals( :install, :run, invoker_run_options )
|
|
160
165
|
end
|
|
161
166
|
properties 'jruby.version' => version,
|
|
@@ -165,7 +170,7 @@ jruby_versions.each do |version|
|
|
|
165
170
|
end
|
|
166
171
|
|
|
167
172
|
profile :id => 'release' do
|
|
168
|
-
plugin :gpg, '1.
|
|
173
|
+
plugin :gpg, '3.1.0' do
|
|
169
174
|
execute_goal :sign, :phase => :verify
|
|
170
175
|
end
|
|
171
176
|
end
|
data/README.md
CHANGED
|
@@ -29,8 +29,7 @@ the JRuby [mailing list][1] or the [bug tracker][2].
|
|
|
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
31
|
| ~>0.15.x | 9.2.x-10.0.x | Java 8-25 | 1.78-1.83 |
|
|
32
|
-
|
|
33
|
-
NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
|
|
32
|
+
| ~>0.16.x | 9.3.x-10.0.x | Java 8-25 | 1.83-1.84 |
|
|
34
33
|
|
|
35
34
|
## Security
|
|
36
35
|
|
data/Rakefile
CHANGED
|
@@ -34,7 +34,7 @@ Rake::TestTask.new do |task|
|
|
|
34
34
|
test_files = FileList['src/test/ruby/**/test*.rb'].to_a
|
|
35
35
|
task.test_files = test_files.map { |path| path.sub('src/test/ruby/', '') }
|
|
36
36
|
task.verbose = true
|
|
37
|
-
task.loader =
|
|
37
|
+
task.loader = "ARGV.each { |f| require f unless f.start_with?('-') }"
|
|
38
38
|
task.ruby_opts = [ '-C', 'src/test/ruby', '-rbundler/setup' ]
|
|
39
39
|
end
|
|
40
40
|
task :test => 'lib/jopenssl.jar'
|
|
@@ -49,7 +49,7 @@ namespace :integration do
|
|
|
49
49
|
unless File.exist?(File.join(it_path, 'Gemfile.lock'))
|
|
50
50
|
raise "bundle not installed, run `rake integration:install'"
|
|
51
51
|
end
|
|
52
|
-
loader = "ARGV.each { |f| require f }"
|
|
52
|
+
loader = "ARGV.each { |f| require f unless f.start_with?('-') }"
|
|
53
53
|
lib = [ File.expand_path('../lib', __FILE__), it_path ]
|
|
54
54
|
test_files = FileList['src/test/integration/*_test.rb'].map { |path| path.sub('src/test/integration/', '') }
|
|
55
55
|
ruby "-I#{lib.join(':')} -C src/test/integration -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
|
data/lib/jopenssl/version.rb
CHANGED
data/lib/jopenssl.jar
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/org/bouncycastle/bctls-jdk18on/{1.83/bctls-jdk18on-1.83.jar → 1.84/bctls-jdk18on-1.84.jar}
RENAMED
|
Binary file
|
|
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.16.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>
|
|
@@ -60,14 +60,14 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
60
60
|
</snapshotRepository>
|
|
61
61
|
</distributionManagement>
|
|
62
62
|
<properties>
|
|
63
|
-
<bc.versions>1.
|
|
63
|
+
<bc.versions>1.84</bc.versions>
|
|
64
64
|
<invoker.skip>${maven.test.skip}</invoker.skip>
|
|
65
65
|
<invoker.test>${bc.versions}</invoker.test>
|
|
66
|
-
<jruby.plugins.version>3.0.
|
|
66
|
+
<jruby.plugins.version>3.0.6</jruby.plugins.version>
|
|
67
67
|
<jruby.switches>-W0</jruby.switches>
|
|
68
68
|
<jruby.version>9.2.19.0</jruby.version>
|
|
69
69
|
<jruby.versions>9.2.19.0</jruby.versions>
|
|
70
|
-
<mavengem-wagon.version>
|
|
70
|
+
<mavengem-wagon.version>3.0.0</mavengem-wagon.version>
|
|
71
71
|
<mavengem.wagon.version>2.0.2</mavengem.wagon.version>
|
|
72
72
|
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
|
|
73
73
|
<polyglot.dump.readonly>false</polyglot.dump.readonly>
|
|
@@ -78,27 +78,27 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
78
78
|
<dependency>
|
|
79
79
|
<groupId>org.bouncycastle</groupId>
|
|
80
80
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
81
|
-
<version>1.
|
|
81
|
+
<version>1.84</version>
|
|
82
82
|
</dependency>
|
|
83
83
|
<dependency>
|
|
84
84
|
<groupId>org.bouncycastle</groupId>
|
|
85
85
|
<artifactId>bcpkix-jdk18on</artifactId>
|
|
86
|
-
<version>1.
|
|
86
|
+
<version>1.84</version>
|
|
87
87
|
</dependency>
|
|
88
88
|
<dependency>
|
|
89
89
|
<groupId>org.bouncycastle</groupId>
|
|
90
90
|
<artifactId>bctls-jdk18on</artifactId>
|
|
91
|
-
<version>1.
|
|
91
|
+
<version>1.84</version>
|
|
92
92
|
</dependency>
|
|
93
93
|
<dependency>
|
|
94
94
|
<groupId>org.bouncycastle</groupId>
|
|
95
95
|
<artifactId>bcutil-jdk18on</artifactId>
|
|
96
|
-
<version>1.
|
|
96
|
+
<version>1.84</version>
|
|
97
97
|
</dependency>
|
|
98
98
|
<dependency>
|
|
99
99
|
<groupId>org.jruby</groupId>
|
|
100
100
|
<artifactId>jruby-core</artifactId>
|
|
101
|
-
<version>9.2.
|
|
101
|
+
<version>9.2.1.0</version>
|
|
102
102
|
<scope>provided</scope>
|
|
103
103
|
</dependency>
|
|
104
104
|
<dependency>
|
|
@@ -108,9 +108,15 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
108
108
|
<scope>compile</scope>
|
|
109
109
|
</dependency>
|
|
110
110
|
<dependency>
|
|
111
|
-
<groupId>junit</groupId>
|
|
112
|
-
<artifactId>junit</artifactId>
|
|
113
|
-
<version>
|
|
111
|
+
<groupId>org.junit.jupiter</groupId>
|
|
112
|
+
<artifactId>junit-jupiter</artifactId>
|
|
113
|
+
<version>5.11.4</version>
|
|
114
|
+
<scope>test</scope>
|
|
115
|
+
</dependency>
|
|
116
|
+
<dependency>
|
|
117
|
+
<groupId>org.jruby</groupId>
|
|
118
|
+
<artifactId>jruby-stdlib</artifactId>
|
|
119
|
+
<version>9.2.1.0</version>
|
|
114
120
|
<scope>test</scope>
|
|
115
121
|
</dependency>
|
|
116
122
|
</dependencies>
|
|
@@ -209,7 +215,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
209
215
|
<plugin>
|
|
210
216
|
<groupId>org.codehaus.mojo</groupId>
|
|
211
217
|
<artifactId>exec-maven-plugin</artifactId>
|
|
212
|
-
<version>
|
|
218
|
+
<version>3.5.0</version>
|
|
213
219
|
<executions>
|
|
214
220
|
<execution>
|
|
215
221
|
<id>invoker-generator</id>
|
|
@@ -235,7 +241,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
235
241
|
<plugin>
|
|
236
242
|
<groupId>org.codehaus.mojo</groupId>
|
|
237
243
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
238
|
-
<version>1
|
|
244
|
+
<version>3.6.1</version>
|
|
239
245
|
<executions>
|
|
240
246
|
<execution>
|
|
241
247
|
<phase>process-classes</phase>
|
|
@@ -252,7 +258,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
252
258
|
</plugin>
|
|
253
259
|
<plugin>
|
|
254
260
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
255
|
-
<version>3.
|
|
261
|
+
<version>3.15.0</version>
|
|
256
262
|
<executions>
|
|
257
263
|
<execution>
|
|
258
264
|
<id>compile-populators</id>
|
|
@@ -320,9 +326,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
320
326
|
</execution>
|
|
321
327
|
</executions>
|
|
322
328
|
</plugin>
|
|
329
|
+
<plugin>
|
|
330
|
+
<artifactId>maven-surefire-plugin</artifactId>
|
|
331
|
+
<version>3.5.5</version>
|
|
332
|
+
</plugin>
|
|
323
333
|
<plugin>
|
|
324
334
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
325
|
-
<version>
|
|
335
|
+
<version>3.1.4</version>
|
|
326
336
|
<executions>
|
|
327
337
|
<execution>
|
|
328
338
|
<goals>
|
|
@@ -374,7 +384,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
374
384
|
<plugins>
|
|
375
385
|
<plugin>
|
|
376
386
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
377
|
-
<version>
|
|
387
|
+
<version>3.8.1</version>
|
|
378
388
|
<executions>
|
|
379
389
|
<execution>
|
|
380
390
|
<id>tests-with-different-bc-versions</id>
|
|
@@ -402,7 +412,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
402
412
|
</plugins>
|
|
403
413
|
</build>
|
|
404
414
|
<properties>
|
|
405
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
415
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
406
416
|
<jruby.version>9.2.19.0</jruby.version>
|
|
407
417
|
<jruby.versions>9.2.19.0</jruby.versions>
|
|
408
418
|
</properties>
|
|
@@ -413,7 +423,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
413
423
|
<plugins>
|
|
414
424
|
<plugin>
|
|
415
425
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
416
|
-
<version>
|
|
426
|
+
<version>3.8.1</version>
|
|
417
427
|
<executions>
|
|
418
428
|
<execution>
|
|
419
429
|
<goals>
|
|
@@ -440,7 +450,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
440
450
|
</plugins>
|
|
441
451
|
</build>
|
|
442
452
|
<properties>
|
|
443
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
453
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
444
454
|
<jruby.version>9.2.20.1</jruby.version>
|
|
445
455
|
<jruby.versions>9.2.20.1</jruby.versions>
|
|
446
456
|
</properties>
|
|
@@ -451,7 +461,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
451
461
|
<plugins>
|
|
452
462
|
<plugin>
|
|
453
463
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
454
|
-
<version>
|
|
464
|
+
<version>3.8.1</version>
|
|
455
465
|
<executions>
|
|
456
466
|
<execution>
|
|
457
467
|
<goals>
|
|
@@ -478,7 +488,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
478
488
|
</plugins>
|
|
479
489
|
</build>
|
|
480
490
|
<properties>
|
|
481
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
491
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
482
492
|
<jruby.version>9.3.3.0</jruby.version>
|
|
483
493
|
<jruby.versions>9.3.3.0</jruby.versions>
|
|
484
494
|
</properties>
|
|
@@ -489,7 +499,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
489
499
|
<plugins>
|
|
490
500
|
<plugin>
|
|
491
501
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
492
|
-
<version>
|
|
502
|
+
<version>3.8.1</version>
|
|
493
503
|
<executions>
|
|
494
504
|
<execution>
|
|
495
505
|
<goals>
|
|
@@ -516,7 +526,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
516
526
|
</plugins>
|
|
517
527
|
</build>
|
|
518
528
|
<properties>
|
|
519
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
529
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
520
530
|
<jruby.version>9.3.13.0</jruby.version>
|
|
521
531
|
<jruby.versions>9.3.13.0</jruby.versions>
|
|
522
532
|
</properties>
|
|
@@ -527,7 +537,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
527
537
|
<plugins>
|
|
528
538
|
<plugin>
|
|
529
539
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
530
|
-
<version>
|
|
540
|
+
<version>3.8.1</version>
|
|
531
541
|
<executions>
|
|
532
542
|
<execution>
|
|
533
543
|
<goals>
|
|
@@ -554,7 +564,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
554
564
|
</plugins>
|
|
555
565
|
</build>
|
|
556
566
|
<properties>
|
|
557
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
567
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
558
568
|
<jruby.version>9.4.8.0</jruby.version>
|
|
559
569
|
<jruby.versions>9.4.8.0</jruby.versions>
|
|
560
570
|
</properties>
|
|
@@ -565,7 +575,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
565
575
|
<plugins>
|
|
566
576
|
<plugin>
|
|
567
577
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
568
|
-
<version>
|
|
578
|
+
<version>3.8.1</version>
|
|
569
579
|
<executions>
|
|
570
580
|
<execution>
|
|
571
581
|
<goals>
|
|
@@ -592,7 +602,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
592
602
|
</plugins>
|
|
593
603
|
</build>
|
|
594
604
|
<properties>
|
|
595
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
605
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
596
606
|
<jruby.version>9.4.14.0</jruby.version>
|
|
597
607
|
<jruby.versions>9.4.14.0</jruby.versions>
|
|
598
608
|
</properties>
|
|
@@ -603,7 +613,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
603
613
|
<plugins>
|
|
604
614
|
<plugin>
|
|
605
615
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
606
|
-
<version>
|
|
616
|
+
<version>3.8.1</version>
|
|
607
617
|
<executions>
|
|
608
618
|
<execution>
|
|
609
619
|
<goals>
|
|
@@ -630,7 +640,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
630
640
|
</plugins>
|
|
631
641
|
</build>
|
|
632
642
|
<properties>
|
|
633
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
643
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
634
644
|
<jruby.version>10.0.2.0</jruby.version>
|
|
635
645
|
<jruby.versions>10.0.2.0</jruby.versions>
|
|
636
646
|
</properties>
|
|
@@ -641,7 +651,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
641
651
|
<plugins>
|
|
642
652
|
<plugin>
|
|
643
653
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
644
|
-
<version>1.
|
|
654
|
+
<version>3.1.0</version>
|
|
645
655
|
<executions>
|
|
646
656
|
<execution>
|
|
647
657
|
<phase>verify</phase>
|
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.16.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: 2026-04-
|
|
13
|
+
date: 2026-04-20 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.
|
|
45
|
-
- lib/org/bouncycastle/bcprov-jdk18on/1.
|
|
46
|
-
- lib/org/bouncycastle/bctls-jdk18on/1.
|
|
47
|
-
- lib/org/bouncycastle/bcutil-jdk18on/1.
|
|
44
|
+
- lib/org/bouncycastle/bcpkix-jdk18on/1.84/bcpkix-jdk18on-1.84.jar
|
|
45
|
+
- lib/org/bouncycastle/bcprov-jdk18on/1.84/bcprov-jdk18on-1.84.jar
|
|
46
|
+
- lib/org/bouncycastle/bctls-jdk18on/1.84/bctls-jdk18on-1.84.jar
|
|
47
|
+
- lib/org/bouncycastle/bcutil-jdk18on/1.84/bcutil-jdk18on-1.84.jar
|
|
48
48
|
- pom.xml
|
|
49
49
|
homepage: https://github.com/jruby/jruby-openssl
|
|
50
50
|
licenses:
|
|
@@ -67,10 +67,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
69
|
requirements:
|
|
70
|
-
- jar org.bouncycastle:bcprov-jdk18on, 1.
|
|
71
|
-
- jar org.bouncycastle:bcpkix-jdk18on, 1.
|
|
72
|
-
- jar org.bouncycastle:bctls-jdk18on, 1.
|
|
73
|
-
- jar org.bouncycastle:bcutil-jdk18on, 1.
|
|
70
|
+
- jar org.bouncycastle:bcprov-jdk18on, 1.84
|
|
71
|
+
- jar org.bouncycastle:bcpkix-jdk18on, 1.84
|
|
72
|
+
- jar org.bouncycastle:bctls-jdk18on, 1.84
|
|
73
|
+
- jar org.bouncycastle:bcutil-jdk18on, 1.84
|
|
74
74
|
rubygems_version: 3.1.6
|
|
75
75
|
signing_key:
|
|
76
76
|
specification_version: 4
|