jruby-openssl 0.11.0.cr1-java → 0.11.0-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: f3f30690dc2b33cef639d984152204e362ca32fe
4
- data.tar.gz: e28ede260833c9223108b43ca15d725224c678b7
3
+ metadata.gz: 3b0af65b0a40658f2bfafdd3d8a6bd3112dd0c13
4
+ data.tar.gz: a5d16510be892effe0c7e3004823136f5eaaf196
5
5
  SHA512:
6
- metadata.gz: c061354db76fc82fc1b554e633c4192f3795e109a78e4aba8fe9d3d3a244a2dc5ff29ee8e6389876abf12999c080375c191f7be654d3fe839f01a9882589d8af
7
- data.tar.gz: 2cc1932d607582de0f4858c6e11fc32774ca3a1653ce3efc9bea20204e358feffe274e13c1d96c44cff5fa77600678c4703cdaf7d4a0e62f27a9c08982457e29
6
+ metadata.gz: 14b8ac25affa194b9de7637468d1cf73934c99d6eaa35e6d1882de3e42aaaba27c86409423850c23b9f554f21d6bb9fc64688655de32361723ef9a1cd469df5a
7
+ data.tar.gz: 48cb81a70fd513ffec64a8eea55132eaaa244e61c0a1b809e7fbc32650eb8960345c4b3d527b30e0927a0158d736026d764b23dd2857982c29682e366dd11ec0
data/History.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## 0.11.0
2
+
3
+ NOTE: This release aims to adapt the certificate verification logic to be aligned
4
+ with OpenSSL 1.1.1 as a resolution to issues due *DST Root CA X3* expiration, more
5
+ details at: https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/
6
+
7
+ The port is expected to be superior compared to the simple legacy verification,
8
+ however in case of issues the previous algorithm is still around and can be toggled
9
+ using `JRUBY_OPTS="-J-Djruby.openssl.x509.store.verify=legacy"` system property.
10
+
11
+ * **OpenSSL 1.1.1 cert verification port** (fixes #236) (#239)
12
+ - as a side-effect part of the PR to "allow multiple certs with same SubjectDN"
13
+ (#198) got reverted, this has been causing verification regressions (since 0.10.5)
14
+ for some users (#232) and is expected to be fixed
15
+ * [fix] replace deprecated getPeerCertificateChain (#231)
16
+
1
17
  ## 0.10.7
2
18
 
3
19
  * [feat] upgrade BC library to 1.68
data/Mavenfile CHANGED
@@ -7,7 +7,7 @@ distribution_management do
7
7
  repository :id => :ossrh, :url => 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
8
8
  end
9
9
 
10
- java_target = '1.8'
10
+ java_target = '1.7'
11
11
  gen_sources = '${basedir}/target/generated-sources' # hard-coded in AnnotationBinder
12
12
 
13
13
  plugin( 'org.codehaus.mojo:exec-maven-plugin', '1.3.2' ) do
@@ -46,7 +46,7 @@ plugin( 'org.codehaus.mojo:build-helper-maven-plugin', '1.9' ) do
46
46
  end
47
47
 
48
48
  plugin( :compiler, '3.1',
49
- :source => '1.8', :target => java_target,
49
+ :source => '1.7', :target => java_target,
50
50
  :encoding => 'UTF-8', :debug => true,
51
51
  :showWarnings => true, :showDeprecation => true,
52
52
  :excludes => [ 'module-info.java' ],
@@ -1,5 +1,5 @@
1
1
  module JOpenSSL
2
- VERSION = '0.11.0.cr1'
2
+ VERSION = '0.11.0'
3
3
  BOUNCY_CASTLE_VERSION = '1.68'
4
4
  end
5
5
 
data/lib/jopenssl.jar CHANGED
Binary file
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.11.0.cr1-SNAPSHOT</version>
14
+ <version>0.11.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>
@@ -209,7 +209,7 @@ DO NOT MODIFIY - GENERATED CODE
209
209
  <executable>java</executable>
210
210
  <classpathScope>compile</classpathScope>
211
211
  <arguments>
212
- <argument>-Djruby.bytecode.version=1.8</argument>
212
+ <argument>-Djruby.bytecode.version=1.7</argument>
213
213
  <argument>-classpath</argument>
214
214
  <classpath />
215
215
  <argument>org.jruby.anno.InvokerGenerator</argument>
@@ -261,8 +261,8 @@ DO NOT MODIFIY - GENERATED CODE
261
261
  </execution>
262
262
  </executions>
263
263
  <configuration>
264
- <source>1.8</source>
265
- <target>1.8</target>
264
+ <source>1.7</source>
265
+ <target>1.7</target>
266
266
  <encoding>UTF-8</encoding>
267
267
  <debug>true</debug>
268
268
  <showWarnings>true</showWarnings>
@@ -368,7 +368,7 @@ DO NOT MODIFIY - GENERATED CODE
368
368
  <version>3.8.1</version>
369
369
  <configuration>
370
370
  <source>9</source>
371
- <target>1.8</target>
371
+ <target>1.7</target>
372
372
  <release>9</release>
373
373
  <includes>
374
374
  <include>module-info.java</include>
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.11.0.cr1
4
+ version: 0.11.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: 2021-10-20 00:00:00.000000000 Z
13
+ date: 2021-10-25 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 native library.
16
16
  email: self+jruby-openssl@kares.org