You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by nk...@apache.org on 2019/05/28 14:06:56 UTC

[zookeeper] branch branch-3.5 updated: ZOOKEEPER-3404: Downgrade BouncyCastle to 1.60

This is an automated email from the ASF dual-hosted git repository.

nkalmar pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new d6194f6  ZOOKEEPER-3404: Downgrade BouncyCastle to 1.60
d6194f6 is described below

commit d6194f62b57de6ff413d7151028787146bbf84f1
Author: Andor Molnar <an...@apache.org>
AuthorDate: Tue May 28 16:04:34 2019 +0200

    ZOOKEEPER-3404: Downgrade BouncyCastle to 1.60
    
    I've seen a lot of test timeout errors with QuorumSSL tests since I upgraded master to BouncyCastle 1.61 due to a Java 9 warning. The warning has been reported by Enrico Olivelli which we tried to solve by the upgrade, but the warning message is still present so I don't see any harm in downgrading to the previous version.
    
    https://issues.apache.org/jira/browse/ZOOKEEPER-3404
    
    Author: Andor Molnar <an...@apache.org>
    
    Reviewers: Enrico Olivelli <eo...@apache.org>, Norbert Kalmar <nk...@apache.org>
    
    Closes #961 from anmolnar/ZOOKEEPER-3404
    
    (cherry picked from commit 78b3d1a8c1ea8453423682ad09675dfb1df04384)
    Signed-off-by: Norbert Kalmar <nk...@apache.org>
---
 build.xml | 2 +-
 pom.xml   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.xml b/build.xml
index 0233465..ad35fc3 100644
--- a/build.xml
+++ b/build.xml
@@ -44,7 +44,7 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
     <property name="checkstyle.version" value="7.1.2"/>
     <property name="commons-collections.version" value="3.2.2"/>
 
-    <property name="bouncycastle.version" value="1.61"/>
+    <property name="bouncycastle.version" value="1.60"/>
 
     <property name="jdiff.version" value="1.0.9"/>
     <property name="xerces.version" value="1.4.4"/>
diff --git a/pom.xml b/pom.xml
index d8944ea..5dfbda4 100755
--- a/pom.xml
+++ b/pom.xml
@@ -284,7 +284,7 @@
     <jline.version>2.11</jline.version>
     <snappy.version>1.1.7</snappy.version>
     <kerby.version>1.1.0</kerby.version>
-    <bouncycastle.version>1.61</bouncycastle.version>
+    <bouncycastle.version>1.60</bouncycastle.version>
     <commons-collections.version>3.2.2</commons-collections.version>
     <spotbugsannotations.version>3.1.9</spotbugsannotations.version>
     <checkstyle.version>8.17</checkstyle.version>