jruby-openssl 0.9.19-java → 0.9.20-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: fb1f830ea348fd26b11fe83a542a77aac7e4e330
4
- data.tar.gz: 091f65172ee221e9441934259149bb111ce15fcd
3
+ metadata.gz: 577486949f6eaa93a6143c4da6663196785ca64a
4
+ data.tar.gz: deadd1567288f80226d39a751db2802a12169000
5
5
  SHA512:
6
- metadata.gz: 210b5e716e5ac06ebeddb756b887adb31fae18b337c55ba7ef7ca60137f44185cbb4b6e4e8cff7f223cd70d14559be59b85cd2d450e104d6cced43e9fb53c1ae
7
- data.tar.gz: 68e72a6edc19f06dd5288589b8c09949067e782a8bdb39ac74a9841fac46858e8a9c5e3dcc5b28f823777e77ed5504f139124642d9e59b321a4eb2360bd42373
6
+ metadata.gz: f7aa39d4de5becaa47abd8ad85c5f2f4e83cbdcdfc95293f1294457baf3faa81e0559f443c63a18954ab33dcf4450cbd3f0ba5db63f80a947ef4f41a1b715011
7
+ data.tar.gz: f4c3eed0ae106c414ba730b1b78ae045e79c8ea9b1957b5f73a75f796ab1aeb6fd35007dd26fc325363cd8362636333f612baaf93cd6d12561e735126536e807
@@ -18,7 +18,7 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18
18
  DEALINGS IN THE SOFTWARE.
19
19
 
20
20
  Copyright (C) 2007-2009 Ola Bini <ola.bini@gmail.com>
21
- Copyright (C) 2009-2016 The JRuby Team
21
+ Copyright (C) 2009-2017 The JRuby Team
22
22
 
23
23
  Alternatively, the contents of this file may be used under the terms of
24
24
  either of the GNU General Public License Version 2 or later (the "GPL"),
data/README.md CHANGED
@@ -5,16 +5,33 @@
5
5
 
6
6
  Under the hood uses the [Bouncy Castle Crypto APIs](http://www.bouncycastle.org/).
7
7
 
8
+ Each jruby-openssl gem release includes a certain version, usually the latest available,
9
+ of the library (namely BC Provider and PKIX/CMS/EAC/PKCS/OCSP/TSP/OPENSSL jars).
10
+
8
11
  Please report bugs and incompatibilities (preferably with test-cases) to either
9
12
  the JRuby [mailing list][1] or the [bug tracker][2].
10
13
 
11
14
  ## Compatibility
12
15
 
13
- Since version **0.9.6** jruby-openssl aims to be compatible with all JRuby versions
14
- **>= 1.6.8** (including 1.7 and 9k), if it's not we consider that a bug, report.
15
16
 
16
- We currently (for 0.9.x) require the Bouncy Castle Java APIs to be **>= 1.49**,
17
- for JRuby-OpenSSL **gem <= 0.9.6** you also need to make sure BC jars <= 1.50 !
17
+ | JRuby-OpenSSL | JRuby compat | JVM compat | supported BC |
18
+ | ------------- |:-------------:| ----------:| ------------:|
19
+ | 0.9.6 | 1.6.8-9.0.2 | Java 6-8 | 1.47-1.50 |
20
+ | 0.9.12 | 1.6.8-9.0.5 | Java 6-8 | 1.47-1.52 |
21
+ | 0.9.13 | 1.6.8-9.1.2 | Java 6-8 | 1.49-1.52 |
22
+ | 0.9.14 | 1.6.8-9.1.5 | Java 6-8 | 1.49-1.54 |
23
+ | 0.9.17 | 1.6.8-9.1.5 | Java 6-8 | 1.50-1.54 |
24
+ | 0.9.18 | 1.6.8-9.1.7 | Java 6-8 | 1.50-1.55 |
25
+
26
+ NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
27
+
28
+ ## Security
29
+
30
+ JRuby-OpenSSL is an essential part of [JRuby](http://jruby.org), please report security
31
+ vulnerabilities to `security@jruby.org` as detailed on JRuby's [security page](http://jruby.org/security).
32
+
33
+ Please note that most OpenSSL vulnerabilities do not effect JRuby since its not using
34
+ any of OpenSSL's C code, only Ruby parts (*.rb) are the same as in MRI's OpenSSL library.
18
35
 
19
36
  ## Testing
20
37
 
@@ -45,11 +62,11 @@ NOTE: you can pick any jruby version which is on [central][4] or on [ci.jruby][5
45
62
 
46
63
  ## License
47
64
 
48
- (c) 2009-2016 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
65
+ (c) 2009-2017 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
49
66
 
50
67
  [0]: https://secure.travis-ci.org/jruby/jruby-openssl.png
51
68
  [1]: http://xircles.codehaus.org/projects/jruby/lists
52
69
  [2]: https://github.com/jruby/jruby/issues
53
70
  [3]: https://github.com/jruby/jruby-openssl/tree/master/integration
54
71
  [4]: http://central.maven.org/maven2/org/jruby/
55
- [5]: http://ci.jruby.org/snapshots/maven/org.jruby/
72
+ [5]: http://ci.jruby.org/snapshots/maven/org.jruby/
Binary file
@@ -1,6 +1,6 @@
1
1
  module Jopenssl
2
- VERSION = '0.9.19'
3
- BOUNCY_CASTLE_VERSION = '1.55'
2
+ VERSION = '0.9.20'
3
+ BOUNCY_CASTLE_VERSION = '1.56'
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.19</version>
14
+ <version>0.9.20</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>
@@ -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.55</version>
97
+ <version>1.56</version>
98
98
  </dependency>
99
99
  <dependency>
100
100
  <groupId>org.bouncycastle</groupId>
101
101
  <artifactId>bcprov-jdk15on</artifactId>
102
- <version>1.55</version>
102
+ <version>1.56</version>
103
103
  </dependency>
104
104
  <dependency>
105
105
  <groupId>org.jruby</groupId>
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.19
4
+ version: 0.9.20
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: 2016-12-02 00:00:00.000000000 Z
12
+ date: 2017-03-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement
@@ -135,8 +135,8 @@ files:
135
135
  - lib/openssl/x509.rb
136
136
  - pom.xml
137
137
  - lib/jopenssl.jar
138
- - lib/org/bouncycastle/bcpkix-jdk15on/1.55/bcpkix-jdk15on-1.55.jar
139
- - lib/org/bouncycastle/bcprov-jdk15on/1.55/bcprov-jdk15on-1.55.jar
138
+ - lib/org/bouncycastle/bcpkix-jdk15on/1.56/bcpkix-jdk15on-1.56.jar
139
+ - lib/org/bouncycastle/bcprov-jdk15on/1.56/bcprov-jdk15on-1.56.jar
140
140
  homepage: https://github.com/jruby/jruby-openssl
141
141
  licenses:
142
142
  - EPL-1.0
@@ -158,8 +158,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  requirements:
161
- - jar org.bouncycastle:bcpkix-jdk15on, 1.55
162
- - jar org.bouncycastle:bcprov-jdk15on, 1.55
161
+ - jar org.bouncycastle:bcpkix-jdk15on, 1.56
162
+ - jar org.bouncycastle:bcprov-jdk15on, 1.56
163
163
  rubyforge_project:
164
164
  rubygems_version: 2.1.9
165
165
  signing_key: