jruby-openssl 0.9.17-java → 0.9.18-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: 54fe73283dd1bf1d21f0838b07d74d69b9dc2712
4
- data.tar.gz: e913cf2109cae61539fa77462ead94bd848b7f49
3
+ metadata.gz: 7f388e4b46a1251e1b24c13f15a7bde0f18e08a7
4
+ data.tar.gz: 4e1b627fe988301ef5cb741837459427b902d0a7
5
5
  SHA512:
6
- metadata.gz: 0b7acfce75c719f7493618d9f1a231bc113e753efd1117155970b0175ddfb4bcfa452ac47b64087462885d1c8c8bb1b7c70285e40d9cc4197d7030cdfa8850d2
7
- data.tar.gz: e80da49c3c0757fd04f120721fe70b7186ef15f80a830677fbc5d7e8aa0afa16cd4c5933203230a50287b9043442293bd90d2c6a80b06f573f43a3254dc5d1b8
6
+ metadata.gz: 4952dbaa5751dca5391834d9640e87685acd2c239794332fb7c548bbe7843ebef64a787794fccfa874bf75982faa80f036395674479ab73d21bc8f028cef7b7c
7
+ data.tar.gz: 81a1455e6c84d53198db6b4f7c49037d26cae33fb1a4fbd29977ed5f19a950253daa8028fbbdb3f9b23356752cc9a4f6461b14e5c6e64674badcdc94eccc76de
data/History.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 0.9.18
2
+
3
+ * handle X.509 authorityKeyIdentifier parsing somehow right (#102)
4
+ * simple resolution for handling subjectAltName multiple DNS: names (#102)
5
+ * upgrading BC to 1.55
6
+ normalize "brainpoolP512t1" curve name for BC 1.55 compatibility
7
+ * allow for X509::Certificate to be converted to a Java certificate
8
+ * at least OpenSSL.debug potential env read failure on set_default_paths
9
+ * negative BN values are always considered not prime.
10
+ * Don't print a warning for missing client certs (#110)
11
+
1
12
  ## 0.9.17
2
13
 
3
14
  * temporarily register BC provider on X.509 factory (work-around for #94)
data/Mavenfile CHANGED
@@ -102,7 +102,8 @@ end
102
102
 
103
103
  supported_bc_versions = %w{ 1.51 1.52 1.53 1.54 } # due EC support dropped <= 1.50
104
104
 
105
- default_bc_version = File.read('lib/jopenssl/version.rb')[/BOUNCY_CASTLE_VERSION\s?=\s?'(.*?)'/, 1]
105
+ default_bc_version = File.expand_path('lib/jopenssl/version.rb', File.dirname(__FILE__))
106
+ default_bc_version = default_bc_version[/BOUNCY_CASTLE_VERSION\s?=\s?'(.*?)'/, 1]
106
107
 
107
108
  properties( 'jruby.plugins.version' => '1.0.10',
108
109
  'jruby.versions' => '1.7.18',
@@ -157,7 +158,7 @@ profile :id => 'test-1.7.4' do
157
158
  end
158
159
 
159
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 }
160
- jruby_1_7_versions += %w{ 1.7.24 1.7.25 }
161
+ jruby_1_7_versions += %w{ 1.7.24 1.7.25 1.7.26 }
161
162
 
162
163
  jruby_1_7_versions.each { |version|
163
164
 
@@ -171,7 +172,7 @@ end
171
172
 
172
173
  }
173
174
 
174
- jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.0.0 9.1.1.0 9.1.2.0 }
175
+ jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.0.0 9.1.1.0 9.1.2.0 9.1.5.0 }
175
176
 
176
177
  jruby_9_K_versions.each { |version|
177
178
  profile :id => "test-#{version}" do
data/Rakefile CHANGED
@@ -39,7 +39,7 @@ file('lib/jopenssl.jar') { Rake::Task['jar'].invoke }
39
39
 
40
40
  require 'rake/testtask'
41
41
  Rake::TestTask.new do |task|
42
- task.libs << 'src/test/ruby'
42
+ task.libs << File.expand_path('src/test/ruby', File.dirname(__FILE__))
43
43
  test_files = FileList['src/test/ruby/**/test*.rb'].to_a
44
44
  task.test_files = test_files.map { |path| path.sub('src/test/ruby/', '') }
45
45
  task.verbose = true
@@ -60,10 +60,8 @@ namespace :integration do
60
60
  unless File.exist?(File.join(it_path, 'Gemfile.lock'))
61
61
  raise "bundle not installed, run `rake integration:install'"
62
62
  end
63
- loader = "ARGV.each { |f| require f }"
64
- test_files = FileList['src/test/integration/*_test.rb'].to_a
65
- test_files.map! { |path| path.sub('src/test/integration/', '') }
66
- lib = [ 'lib', 'src/test/integration' ]
67
- ruby "-I#{lib.join(':')} -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
63
+ loader = "ARGV.each { |f| require f }" ; lib = [ 'lib', it_path ]
64
+ test_files = FileList['src/test/integration/*_test.rb'].map { |path| path.sub('src/test/integration/', '') }
65
+ ruby "-I#{lib.join(':')} -C src/test/integration -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
68
66
  end
69
67
  end
data/lib/jopenssl.jar CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  module Jopenssl
2
- VERSION = '0.9.17'
3
- BOUNCY_CASTLE_VERSION = '1.54'
2
+ VERSION = '0.9.18'
3
+ BOUNCY_CASTLE_VERSION = '1.55'
4
4
  # @deprecated
5
5
  module Version
6
6
  # @private
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.17</version>
14
+ <version>0.9.18</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>
@@ -57,7 +57,7 @@ DO NOT MODIFIY - GENERATED CODE
57
57
  </snapshotRepository>
58
58
  </distributionManagement>
59
59
  <properties>
60
- <bc.versions>1.54</bc.versions>
60
+ <bc.versions></bc.versions>
61
61
  <jruby.plugins.version>1.0.10</jruby.plugins.version>
62
62
  <invoker.skip>${maven.test.skip}</invoker.skip>
63
63
  <jruby.version>1.7.18</jruby.version>
@@ -94,12 +94,12 @@ DO NOT MODIFIY - GENERATED CODE
94
94
  <dependency>
95
95
  <groupId>org.bouncycastle</groupId>
96
96
  <artifactId>bcpkix-jdk15on</artifactId>
97
- <version>1.54</version>
97
+ <version>1.55</version>
98
98
  </dependency>
99
99
  <dependency>
100
100
  <groupId>org.bouncycastle</groupId>
101
101
  <artifactId>bcprov-jdk15on</artifactId>
102
- <version>1.54</version>
102
+ <version>1.55</version>
103
103
  </dependency>
104
104
  <dependency>
105
105
  <groupId>org.jruby</groupId>
@@ -791,6 +791,44 @@ DO NOT MODIFIY - GENERATED CODE
791
791
  <jruby.versions>1.7.25</jruby.versions>
792
792
  </properties>
793
793
  </profile>
794
+ <profile>
795
+ <id>test-1.7.26</id>
796
+ <build>
797
+ <plugins>
798
+ <plugin>
799
+ <artifactId>maven-invoker-plugin</artifactId>
800
+ <version>1.8</version>
801
+ <executions>
802
+ <execution>
803
+ <goals>
804
+ <goal>install</goal>
805
+ <goal>run</goal>
806
+ </goals>
807
+ <configuration>
808
+ <projectsDirectory>integration</projectsDirectory>
809
+ <pomIncludes>
810
+ <pomInclude>*/pom.xml</pomInclude>
811
+ </pomIncludes>
812
+ <streamLogs>true</streamLogs>
813
+ <properties>
814
+ <jruby.versions>${jruby.versions}</jruby.versions>
815
+ <jruby.modes>${jruby.modes}</jruby.modes>
816
+ <jruby.openssl.version>${project.version}</jruby.openssl.version>
817
+ <bc.versions>${bc.versions}</bc.versions>
818
+ <runit.dir>${runit.dir}</runit.dir>
819
+ </properties>
820
+ </configuration>
821
+ </execution>
822
+ </executions>
823
+ </plugin>
824
+ </plugins>
825
+ </build>
826
+ <properties>
827
+ <bc.versions>1.51,1.52,1.53,1.54</bc.versions>
828
+ <jruby.modes>1.8,1.9,2.0</jruby.modes>
829
+ <jruby.versions>1.7.26</jruby.versions>
830
+ </properties>
831
+ </profile>
794
832
  <profile>
795
833
  <id>test-9.0.1.0</id>
796
834
  <build>
@@ -981,6 +1019,44 @@ DO NOT MODIFIY - GENERATED CODE
981
1019
  <jruby.versions>9.1.2.0</jruby.versions>
982
1020
  </properties>
983
1021
  </profile>
1022
+ <profile>
1023
+ <id>test-9.1.5.0</id>
1024
+ <build>
1025
+ <plugins>
1026
+ <plugin>
1027
+ <artifactId>maven-invoker-plugin</artifactId>
1028
+ <version>1.8</version>
1029
+ <executions>
1030
+ <execution>
1031
+ <goals>
1032
+ <goal>install</goal>
1033
+ <goal>run</goal>
1034
+ </goals>
1035
+ <configuration>
1036
+ <projectsDirectory>integration</projectsDirectory>
1037
+ <pomIncludes>
1038
+ <pomInclude>*/pom.xml</pomInclude>
1039
+ </pomIncludes>
1040
+ <streamLogs>true</streamLogs>
1041
+ <properties>
1042
+ <jruby.versions>${jruby.versions}</jruby.versions>
1043
+ <jruby.modes>${jruby.modes}</jruby.modes>
1044
+ <jruby.openssl.version>${project.version}</jruby.openssl.version>
1045
+ <bc.versions>${bc.versions}</bc.versions>
1046
+ <runit.dir>${runit.dir}</runit.dir>
1047
+ </properties>
1048
+ </configuration>
1049
+ </execution>
1050
+ </executions>
1051
+ </plugin>
1052
+ </plugins>
1053
+ </build>
1054
+ <properties>
1055
+ <bc.versions>1.51,1.52,1.53,1.54</bc.versions>
1056
+ <jruby.version>9.1.5.0</jruby.version>
1057
+ <jruby.versions>9.1.5.0</jruby.versions>
1058
+ </properties>
1059
+ </profile>
984
1060
  <profile>
985
1061
  <id>release</id>
986
1062
  <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.9.17
4
+ version: 0.9.18
5
5
  platform: java
6
6
  authors:
7
7
  - Ola Bini
@@ -9,50 +9,50 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-06-09 00:00:00.000000000 Z
12
+ date: 2016-11-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: jar-dependencies
16
- version_requirements: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - ~>
19
- - !ruby/object:Gem::Version
20
- version: '0.1'
21
15
  requirement: !ruby/object:Gem::Requirement
22
16
  requirements:
23
17
  - - ~>
24
18
  - !ruby/object:Gem::Version
25
19
  version: '0.1'
20
+ name: jar-dependencies
26
21
  prerelease: false
27
22
  type: :development
28
- - !ruby/object:Gem::Dependency
29
- name: mocha
30
23
  version_requirements: !ruby/object:Gem::Requirement
31
24
  requirements:
32
25
  - - ~>
33
26
  - !ruby/object:Gem::Version
34
- version: 1.1.0
27
+ version: '0.1'
28
+ - !ruby/object:Gem::Dependency
35
29
  requirement: !ruby/object:Gem::Requirement
36
30
  requirements:
37
31
  - - ~>
38
32
  - !ruby/object:Gem::Version
39
33
  version: 1.1.0
34
+ name: mocha
40
35
  prerelease: false
41
36
  type: :development
42
- - !ruby/object:Gem::Dependency
43
- name: ruby-maven
44
37
  version_requirements: !ruby/object:Gem::Requirement
45
38
  requirements:
46
39
  - - ~>
47
40
  - !ruby/object:Gem::Version
48
- version: '3.0'
41
+ version: 1.1.0
42
+ - !ruby/object:Gem::Dependency
49
43
  requirement: !ruby/object:Gem::Requirement
50
44
  requirements:
51
45
  - - ~>
52
46
  - !ruby/object:Gem::Version
53
47
  version: '3.0'
48
+ name: ruby-maven
54
49
  prerelease: false
55
50
  type: :development
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ version: '3.0'
56
56
  description: JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.
57
57
  email: ola.bini@gmail.com
58
58
  executables: []
@@ -134,8 +134,8 @@ files:
134
134
  - lib/openssl/x509.rb
135
135
  - pom.xml
136
136
  - lib/jopenssl.jar
137
- - lib/org/bouncycastle/bcpkix-jdk15on/1.54/bcpkix-jdk15on-1.54.jar
138
- - lib/org/bouncycastle/bcprov-jdk15on/1.54/bcprov-jdk15on-1.54.jar
137
+ - lib/org/bouncycastle/bcpkix-jdk15on/1.55/bcpkix-jdk15on-1.55.jar
138
+ - lib/org/bouncycastle/bcprov-jdk15on/1.55/bcprov-jdk15on-1.55.jar
139
139
  homepage: https://github.com/jruby/jruby-openssl
140
140
  licenses:
141
141
  - EPL-1.0
@@ -157,8 +157,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  - !ruby/object:Gem::Version
158
158
  version: '0'
159
159
  requirements:
160
- - jar org.bouncycastle:bcpkix-jdk15on, 1.54
161
- - jar org.bouncycastle:bcprov-jdk15on, 1.54
160
+ - jar org.bouncycastle:bcpkix-jdk15on, 1.55
161
+ - jar org.bouncycastle:bcprov-jdk15on, 1.55
162
162
  rubyforge_project:
163
163
  rubygems_version: 2.1.9
164
164
  signing_key: