Skip to content

Commit

Permalink
prepare for 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kares committed Feb 18, 2020
1 parent d6c98cf commit c862feb
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 18 deletions.
21 changes: 21 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.10.3

* [fix] implement (missing) PKey::DSA#params
* [fix] authorityKeyIdentifier ext (general-name) value
* [fix] authority keyid extension's :always part optional (#174)
* [fix] work-around for not setting certificate serial
raise a more friendly error (jruby/jruby#1691)
* [fix] PKey.read not parsing RSA pub-key (#176)
* [feat] support reading DSA (public key) in full DER
* [fix] RSA key DER format to closely follow OpenSSL
* [fix] add missing ASN1 factory methods (Null, EndOfContent)
* [fix] support getting password from block for PKeys
* [fix] incorrect ASN.1 for wrapped Integer type
* [fix] correct public key for subjectKeyIdentifier ext (#173)
* [fix] invalid Cert#sign handling -> raise (instead of ClassCastException)
* [feat] more TLS (GCM) ciphers - supported on Java 8+
* [feat] add ECDHE-RSA-AES128-GCM-SHA256 as supported cipher (#185)
* [feat] add support for ECDHE-RSA-AES256-GCM-SHA384 (#187)
* [fix] try hard not to fail on unkown oids (OpenSSL::X509::Certificate#to_text)
* update Bouncy-Castle to 1.62 (and handle supported BC compatibility)

## 0.10.2

* update Bouncy-Castle to 1.61 (and handle supported BC compatibility)
Expand Down
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ the JRuby [mailing list][1] or the [bug tracker][2].
| 0.9.17 | 1.6.8-9.1.5 | Java 6-8 | 1.50-1.54 |
| ~>0.9.18 | 1.6.8-9.1.x | Java 6-8 | 1.50-1.55 |
| 0.10.0 | 1.7.20-9.2.x | Java 7-10 | 1.55-1.59 |
| 0.10.3 | 1.7.20-9.2.x | Java 7-11 | 1.56-1.62 |

NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**

Expand All @@ -42,28 +43,24 @@ any of OpenSSL's C code, only Ruby parts (*.rb) are the same as in MRI's OpenSSL
mvn test

will run (junit as well as ruby) tests and a some ruby tests against the default
jruby version. to pick a different version and/or modes (1.8, 1.9, 2.0, 2.1) run
jruby version. to pick a different JRuby version run

mvn test -Djruby.versions=1.7.12 -Djruby.modes=1.8
mvn test -Djruby.versions=9.2.8.0

for running integration-tests the gem will be first installed and then the same
tests run for each possible bouncy-castle version (see [listing][3]), run with

mvn verify -P test-9.0.4.0,test-1.7.22
mvn verify -P test-9.2.9.0,test-9.1.17.0

or pick a bouncy-castle version

mvn verify -P test-1.6.8 -Dbc.versions=1.50

or simply be more picky

mvn verify -P test-1.7.4 -Dbc.versions=1.49 -Djruby.modes=1.9
mvn verify -P test-9.2.9.0 -Dbc.versions=1.60

NOTE: you can pick any jruby version which is on [central][4] or on [ci.jruby][5]

## License

(c) 2009-2018 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
(c) 2009-2020 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1

[0]: https://secure.travis-ci.org/jruby/jruby-openssl.svg
[1]: http://xircles.codehaus.org/projects/jruby/lists
Expand Down
2 changes: 1 addition & 1 deletion lib/jopenssl/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module JOpenSSL
VERSION = '0.10.3.dev'
VERSION = '0.10.3'
BOUNCY_CASTLE_VERSION = '1.62'
end

Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jruby-openssl</artifactId>
<version>0.10.3.dev-SNAPSHOT</version>
<version>0.10.3</version>
<packaging>gem</packaging>
<name>JRuby OpenSSL</name>
<description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
Expand Down Expand Up @@ -61,17 +61,17 @@ DO NOT MODIFIY - GENERATED CODE
</distributionManagement>
<properties>
<bc.versions>1.62</bc.versions>
<mavengem.wagon.version>1.0.3</mavengem.wagon.version>
<invoker.skip>${maven.test.skip}</invoker.skip>
<invoker.test>${bc.versions}</invoker.test>
<jruby.plugins.version>1.1.8</jruby.plugins.version>
<jruby.switches>-W0</jruby.switches>
<jruby.version>9.1.17.0</jruby.version>
<jruby.plugins.version>1.1.8</jruby.plugins.version>
<invoker.skip>${maven.test.skip}</invoker.skip>
<runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
<mavengem-wagon.version>1.0.3</mavengem-wagon.version>
<jruby.versions>9.1.17.0</jruby.versions>
<polyglot.dump.readonly>true</polyglot.dump.readonly>
<mavengem-wagon.version>1.0.3</mavengem-wagon.version>
<mavengem.wagon.version>1.0.3</mavengem.wagon.version>
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
<invoker.test>${bc.versions}</invoker.test>
<polyglot.dump.readonly>true</polyglot.dump.readonly>
<runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit c862feb

Please sign in to comment.