jruby-openssl 0.9.20-java → 0.9.21-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +36 -1
- data/Mavenfile +3 -3
- data/README.md +1 -1
- data/lib/jopenssl.jar +0 -0
- data/lib/jopenssl/version.rb +1 -1
- data/pom.xml +51 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e87052a06d037261241a3833d07f02f7c974238f
|
4
|
+
data.tar.gz: fbf9ff734c95504b5c562765bbcee6b09fe0889a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ea15dc9d8bb3504bb752e0a556d9639261090d29879f10206c72e904140d4627e9c46cdbcd5fbbd2786898ac0132bcab8940a650165602a56dff53a1102d775
|
7
|
+
data.tar.gz: d052da3f78a6b0c5236ce796e52f47ed88fe2cc54271b2e25453a41000cc6a8d286b8fe15dacc8074bc66d59b3c325edb67fbc598e215ef05325dd6babd0b635
|
data/History.md
CHANGED
@@ -1,10 +1,45 @@
|
|
1
|
+
## 0.9.21
|
2
|
+
|
3
|
+
* adjust X.509 value handling to parse subjectAltName recursively (#134)
|
4
|
+
* SKI expected to be always octet wrapped - do not check for length (#131)
|
5
|
+
* respect jruby.preferred.prng and use/tune its SecureRandom defaults
|
6
|
+
trying to avoid BC generator's constant attempts for seeding itself
|
7
|
+
as an attempt to 'fix' low-entropy systems wating for */dev/random*
|
8
|
+
* Random#add; Random#egd shall return true on JVM
|
9
|
+
* move "DEFAULT" special case handling to match OpenSSL behaviour (#136)
|
10
|
+
(jruby/jruby#2193)
|
11
|
+
* If data is not provided, extract it from the PKCS7 instance (#132)
|
12
|
+
* Add cipher suite strings for IBM JRE (#126) - thanks @ysohda
|
13
|
+
* use the helper to printStackTrace (no System.err printing by default)
|
14
|
+
* add OCSP support (#124) - thanks so very much @lampad
|
15
|
+
* add support for renegotiation_cb on SSLContext (#121) - thanks @lampad
|
16
|
+
|
17
|
+
## 0.9.20
|
18
|
+
|
19
|
+
* upgrade Bouncy-Castle to 1.56 http://bouncycastle.org/releasenotes.html
|
20
|
+
(additional security and robustness with 10 CVEs submitted as a result)
|
21
|
+
* add a dummy SSLContext#security_level= implementation
|
22
|
+
* no dup-ing for SSLContext/SSLSocket and X509 Store/StoreContext
|
23
|
+
* implement PKey initialize_copy (dup-ing)
|
24
|
+
* digest can be passed in as a String on PKey#sign/verify
|
25
|
+
* DSA+SHA1 is actually a supported algorithm
|
26
|
+
* reset signed-request -> sub-sequent req.verify will work correctly
|
27
|
+
* allow for digest name to be passed into Cert#sign
|
28
|
+
* be less fatal on Java 9
|
29
|
+
won't attempt reflective SPIs when accessibility checks fail!
|
30
|
+
* remove obsolete (deprecated) renamed classes
|
31
|
+
* verify correct WaitReadable is raised on connect_nonblock (jruby/jruby#1716)
|
32
|
+
* non-connected ssl socket raises EPIPE on connect_nonblock (MRI compat)
|
33
|
+
* fine to close a SSLSocket which is not-yet-connected (like in MRI)
|
34
|
+
* fix NPE when reading private keys (with passwd) (jruby/jruby#1784)
|
35
|
+
|
1
36
|
## 0.9.19
|
2
37
|
|
3
38
|
* re-use secure random from thread-context on SSL context initialization
|
4
39
|
* preliminary OpenSSL 1.1 (Ruby 2.4) compatibility bits (#112)
|
5
40
|
* try using thread-shared secure random gen (in PKey-s) where possible
|
6
41
|
* implement PKeyDSA#syssign and PKeyDSA#sysverify methods
|
7
|
-
* avoid (unnecessary) byte[] copies in PKey#sign/verify
|
42
|
+
* avoid (unnecessary) byte[] copies in PKey#sign/verify
|
8
43
|
* fix ClassCastException error in X509Store.verify (#113)
|
9
44
|
* align BH#hash with eql? (+ equals/hashCode on Java)
|
10
45
|
|
data/Mavenfile
CHANGED
@@ -49,7 +49,7 @@ plugin( 'org.codehaus.mojo:build-helper-maven-plugin', '1.9' ) do
|
|
49
49
|
end
|
50
50
|
|
51
51
|
plugin( :compiler, '3.1',
|
52
|
-
:source =>
|
52
|
+
:source => '1.6', :target => java_target,
|
53
53
|
:encoding => 'UTF-8', :debug => true,
|
54
54
|
:showWarnings => true, :showDeprecation => true,
|
55
55
|
|
@@ -158,7 +158,7 @@ profile :id => 'test-1.7.4' do
|
|
158
158
|
end
|
159
159
|
|
160
160
|
jruby_1_7_versions = %w{ 1.7.13 1.7.15 1.7.16 1.7.18 1.7.20 1.7.22 1.7.23 }
|
161
|
-
jruby_1_7_versions += %w{ 1.7.24 1.7.25 1.7.26 }
|
161
|
+
jruby_1_7_versions += %w{ 1.7.24 1.7.25 1.7.26 1.7.27 }
|
162
162
|
|
163
163
|
jruby_1_7_versions.each { |version|
|
164
164
|
|
@@ -172,7 +172,7 @@ end
|
|
172
172
|
|
173
173
|
}
|
174
174
|
|
175
|
-
jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.
|
175
|
+
jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.2.0 9.1.5.0 9.1.8.0 9.1.12.0 }
|
176
176
|
|
177
177
|
jruby_9_K_versions.each { |version|
|
178
178
|
profile :id => "test-#{version}" do
|
data/README.md
CHANGED
@@ -64,7 +64,7 @@ NOTE: you can pick any jruby version which is on [central][4] or on [ci.jruby][5
|
|
64
64
|
|
65
65
|
(c) 2009-2017 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
|
66
66
|
|
67
|
-
[0]: https://secure.travis-ci.org/jruby/jruby-openssl.
|
67
|
+
[0]: https://secure.travis-ci.org/jruby/jruby-openssl.svg
|
68
68
|
[1]: http://xircles.codehaus.org/projects/jruby/lists
|
69
69
|
[2]: https://github.com/jruby/jruby/issues
|
70
70
|
[3]: https://github.com/jruby/jruby-openssl/tree/master/integration
|
data/lib/jopenssl.jar
CHANGED
Binary file
|
data/lib/jopenssl/version.rb
CHANGED
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.9.
|
14
|
+
<version>0.9.21</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>
|
@@ -829,6 +829,44 @@ DO NOT MODIFIY - GENERATED CODE
|
|
829
829
|
<jruby.versions>1.7.26</jruby.versions>
|
830
830
|
</properties>
|
831
831
|
</profile>
|
832
|
+
<profile>
|
833
|
+
<id>test-1.7.27</id>
|
834
|
+
<build>
|
835
|
+
<plugins>
|
836
|
+
<plugin>
|
837
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
838
|
+
<version>1.8</version>
|
839
|
+
<executions>
|
840
|
+
<execution>
|
841
|
+
<goals>
|
842
|
+
<goal>install</goal>
|
843
|
+
<goal>run</goal>
|
844
|
+
</goals>
|
845
|
+
<configuration>
|
846
|
+
<projectsDirectory>integration</projectsDirectory>
|
847
|
+
<pomIncludes>
|
848
|
+
<pomInclude>*/pom.xml</pomInclude>
|
849
|
+
</pomIncludes>
|
850
|
+
<streamLogs>true</streamLogs>
|
851
|
+
<properties>
|
852
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
853
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
854
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
855
|
+
<bc.versions>${bc.versions}</bc.versions>
|
856
|
+
<runit.dir>${runit.dir}</runit.dir>
|
857
|
+
</properties>
|
858
|
+
</configuration>
|
859
|
+
</execution>
|
860
|
+
</executions>
|
861
|
+
</plugin>
|
862
|
+
</plugins>
|
863
|
+
</build>
|
864
|
+
<properties>
|
865
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
866
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
867
|
+
<jruby.versions>1.7.27</jruby.versions>
|
868
|
+
</properties>
|
869
|
+
</profile>
|
832
870
|
<profile>
|
833
871
|
<id>test-9.0.1.0</id>
|
834
872
|
<build>
|
@@ -906,7 +944,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
906
944
|
</properties>
|
907
945
|
</profile>
|
908
946
|
<profile>
|
909
|
-
<id>test-9.1.
|
947
|
+
<id>test-9.1.2.0</id>
|
910
948
|
<build>
|
911
949
|
<plugins>
|
912
950
|
<plugin>
|
@@ -939,12 +977,12 @@ DO NOT MODIFIY - GENERATED CODE
|
|
939
977
|
</build>
|
940
978
|
<properties>
|
941
979
|
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
942
|
-
<jruby.version>9.1.
|
943
|
-
<jruby.versions>9.1.
|
980
|
+
<jruby.version>9.1.2.0</jruby.version>
|
981
|
+
<jruby.versions>9.1.2.0</jruby.versions>
|
944
982
|
</properties>
|
945
983
|
</profile>
|
946
984
|
<profile>
|
947
|
-
<id>test-9.1.
|
985
|
+
<id>test-9.1.5.0</id>
|
948
986
|
<build>
|
949
987
|
<plugins>
|
950
988
|
<plugin>
|
@@ -977,12 +1015,12 @@ DO NOT MODIFIY - GENERATED CODE
|
|
977
1015
|
</build>
|
978
1016
|
<properties>
|
979
1017
|
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
980
|
-
<jruby.version>9.1.
|
981
|
-
<jruby.versions>9.1.
|
1018
|
+
<jruby.version>9.1.5.0</jruby.version>
|
1019
|
+
<jruby.versions>9.1.5.0</jruby.versions>
|
982
1020
|
</properties>
|
983
1021
|
</profile>
|
984
1022
|
<profile>
|
985
|
-
<id>test-9.1.
|
1023
|
+
<id>test-9.1.8.0</id>
|
986
1024
|
<build>
|
987
1025
|
<plugins>
|
988
1026
|
<plugin>
|
@@ -1015,12 +1053,12 @@ DO NOT MODIFIY - GENERATED CODE
|
|
1015
1053
|
</build>
|
1016
1054
|
<properties>
|
1017
1055
|
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
1018
|
-
<jruby.version>9.1.
|
1019
|
-
<jruby.versions>9.1.
|
1056
|
+
<jruby.version>9.1.8.0</jruby.version>
|
1057
|
+
<jruby.versions>9.1.8.0</jruby.versions>
|
1020
1058
|
</properties>
|
1021
1059
|
</profile>
|
1022
1060
|
<profile>
|
1023
|
-
<id>test-9.1.
|
1061
|
+
<id>test-9.1.12.0</id>
|
1024
1062
|
<build>
|
1025
1063
|
<plugins>
|
1026
1064
|
<plugin>
|
@@ -1053,8 +1091,8 @@ DO NOT MODIFIY - GENERATED CODE
|
|
1053
1091
|
</build>
|
1054
1092
|
<properties>
|
1055
1093
|
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
1056
|
-
<jruby.version>9.1.
|
1057
|
-
<jruby.versions>9.1.
|
1094
|
+
<jruby.version>9.1.12.0</jruby.version>
|
1095
|
+
<jruby.versions>9.1.12.0</jruby.versions>
|
1058
1096
|
</properties>
|
1059
1097
|
</profile>
|
1060
1098
|
<profile>
|
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.9.
|
4
|
+
version: 0.9.21
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Ola Bini
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-07-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|