File tree 3 files changed +13
-23
lines changed
3 files changed +13
-23
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.10.5
2
+
3
+ * [ fix] EC key sign/verify (#193 )
4
+ * [ feat] upgrade BC library to 1.65
5
+ * [ refactor] clean security helpers to avoid reflection (#197 )
6
+ * Just use normal getInstance to get KeyFactory (fixes #197 )
7
+ * Allow multiple Certificates with the same SubjectDN in the store (#198 )
8
+ * Try direct path for MessageDigest before invasive path (#194 )
9
+ (relates to jruby/jruby #6098 )
10
+ * [ refactor] avoid NativeException usage (jruby/jruby #5646 )
11
+
1
12
## 0.10.4
2
13
3
14
* Use CertificateFactory.getInstance rather than reflection
Original file line number Diff line number Diff line change 1
1
module JOpenSSL
2
- VERSION = '0.10.5.dev '
2
+ VERSION = '0.10.5'
3
3
BOUNCY_CASTLE_VERSION = '1.65'
4
4
end
5
5
Original file line number Diff line number Diff line change @@ -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.10.5.dev-SNAPSHOT </version >
14
+ <version >0.10.5</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 >
@@ -74,27 +74,6 @@ DO NOT MODIFIY - GENERATED CODE
74
74
<runit .dir>src/test/ruby/**/test_*.rb</runit .dir>
75
75
</properties >
76
76
<dependencies >
77
- <dependency >
78
- <groupId >rubygems</groupId >
79
- <artifactId >jar-dependencies</artifactId >
80
- <version >[0.1,0.99999]</version >
81
- <type >gem</type >
82
- <scope >test</scope >
83
- </dependency >
84
- <dependency >
85
- <groupId >rubygems</groupId >
86
- <artifactId >mocha</artifactId >
87
- <version >[1.4,2.0)</version >
88
- <type >gem</type >
89
- <scope >test</scope >
90
- </dependency >
91
- <dependency >
92
- <groupId >rubygems</groupId >
93
- <artifactId >ruby-maven</artifactId >
94
- <version >[3.0,3.99999]</version >
95
- <type >gem</type >
96
- <scope >test</scope >
97
- </dependency >
98
77
<dependency >
99
78
<groupId >org.bouncycastle</groupId >
100
79
<artifactId >bcprov-jdk15on</artifactId >
You can’t perform that action at this time.
0 commit comments