Browse Source

Preparing for release 3.5.7

Norbert Kalmar 5 years ago
parent
commit
fc233d1a91

+ 1 - 1
NOTICE.txt

@@ -1,5 +1,5 @@
 Apache ZooKeeper
-Copyright 2009-2019 The Apache Software Foundation
+Copyright 2009-2020 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

+ 1 - 1
pom.xml

@@ -30,7 +30,7 @@
   <groupId>org.apache.zookeeper</groupId>
   <artifactId>parent</artifactId>
   <packaging>pom</packaging>
-  <version>3.5.7-SNAPSHOT</version>
+  <version>3.5.7</version>
   <name>Apache ZooKeeper</name>
   <description>
     ZooKeeper is a centralized service for maintaining configuration information, naming,

+ 1 - 1
zookeeper-assembly/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
     <relativePath>..</relativePath>
   </parent>
 

+ 1 - 1
zookeeper-client/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
     <relativePath>..</relativePath>
   </parent>
 

+ 1 - 1
zookeeper-client/zookeeper-client-c/include/zookeeper_version.h

@@ -24,7 +24,7 @@ extern "C" {
 
 #define ZOO_MAJOR_VERSION 3
 #define ZOO_MINOR_VERSION 5
-#define ZOO_PATCH_VERSION 6
+#define ZOO_PATCH_VERSION 7
 
 #ifdef __cplusplus
 }

+ 1 - 1
zookeeper-client/zookeeper-client-c/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-client</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
     <relativePath>..</relativePath>
   </parent>
 

+ 1 - 1
zookeeper-contrib/pom.xml

@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-contrib/zookeeper-contrib-loggraph/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-contrib</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-contrib/zookeeper-contrib-rest/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-contrib</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-contrib/zookeeper-contrib-zooinspector/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-contrib</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-docs/pom.xml

@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.zookeeper</groupId>
         <artifactId>parent</artifactId>
-        <version>3.5.7-SNAPSHOT</version>
+        <version>3.5.7</version>
         <relativePath>..</relativePath>
     </parent>
 

+ 32 - 0
zookeeper-docs/src/main/resources/markdown/releasenotes.md

@@ -14,6 +14,38 @@ See the License for the specific language governing permissions and
 limitations under the License.
 //-->
 
+# Release Notes - ZooKeeper - Version 3.5.7
+
+## Bug
+
+* [ZOOKEEPER-1105](https://issues.apache.org/jira/browse/ZOOKEEPER-1105) - c client zookeeper_close not send CLOSE_OP request to server
+* [ZOOKEEPER-2282](https://issues.apache.org/jira/browse/ZOOKEEPER-2282) - chroot not stripped from path in asynchronous callbacks
+* [ZOOKEEPER-3057](https://issues.apache.org/jira/browse/ZOOKEEPER-3057) - Fix IPv6 literal usage
+* [ZOOKEEPER-3496](https://issues.apache.org/jira/browse/ZOOKEEPER-3496) - Transaction larger than jute.maxbuffer makes ZooKeeper unavailable
+* [ZOOKEEPER-3590](https://issues.apache.org/jira/browse/ZOOKEEPER-3590) - Zookeeper is unable to set the zookeeper.sasl.client.canonicalize.hostname using system variable
+* [ZOOKEEPER-3613](https://issues.apache.org/jira/browse/ZOOKEEPER-3613) - ZKConfig fails to return proper value on getBoolean() when user accidentally includes spaces at the end of the value
+* [ZOOKEEPER-3633](https://issues.apache.org/jira/browse/ZOOKEEPER-3633) - AdminServer commands throw NPE when only secure client port is used
+* [ZOOKEEPER-3644](https://issues.apache.org/jira/browse/ZOOKEEPER-3644) - Data loss after upgrading standalone ZK server 3.4.14 to 3.5.6 with snapshot.trust.empty=true
+* [ZOOKEEPER-3667](https://issues.apache.org/jira/browse/ZOOKEEPER-3667) - set jute.maxbuffer hexadecimal number throw parseInt error
+* [ZOOKEEPER-3699](https://issues.apache.org/jira/browse/ZOOKEEPER-3699) - upgrade jackson-databind to address CVE-2019-20330
+
+## Improvement
+
+* [ZOOKEEPER-1467](https://issues.apache.org/jira/browse/ZOOKEEPER-1467) - Make server principal configurable at client side.
+* [ZOOKEEPER-2084](https://issues.apache.org/jira/browse/ZOOKEEPER-2084) - Document local session parameters
+* [ZOOKEEPER-3388](https://issues.apache.org/jira/browse/ZOOKEEPER-3388) - Allow client port to support plaintext and encrypted connections simultaneously
+* [ZOOKEEPER-3482](https://issues.apache.org/jira/browse/ZOOKEEPER-3482) - SASL (Kerberos) Authentication with SSL for clients and Quorum
+* [ZOOKEEPER-3627](https://issues.apache.org/jira/browse/ZOOKEEPER-3627) - Update Jackson to 2.9.10.1 and the Owasp plugin to 5.2.4
+* [ZOOKEEPER-3638](https://issues.apache.org/jira/browse/ZOOKEEPER-3638) - Update Jetty to 9.4.24.v20191120
+* [ZOOKEEPER-3703](https://issues.apache.org/jira/browse/ZOOKEEPER-3703) - Publish a Test-Jar from ZooKeeper Server
+* [ZOOKEEPER-3708](https://issues.apache.org/jira/browse/ZOOKEEPER-3708) - Move Logging Code into Logging Guard in Learner
+* [ZOOKEEPER-3715](https://issues.apache.org/jira/browse/ZOOKEEPER-3715) - Kerberos Authentication related tests fail for new JDK versions
+
+## Task
+
+* [ZOOKEEPER-3677](https://issues.apache.org/jira/browse/ZOOKEEPER-3677) - owasp checker failing for - CVE-2019-17571 Apache Log4j 1.2 deserialization of untrusted data in SocketServer
+* [ZOOKEEPER-3704](https://issues.apache.org/jira/browse/ZOOKEEPER-3704) - upgrade maven dependency-check to 5.3.0
+
 # Release Notes - ZooKeeper - Version 3.5.6
 
 ## Sub-task

+ 1 - 1
zookeeper-jute/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
     <relativePath>..</relativePath>
   </parent>
 

+ 1 - 1
zookeeper-recipes/pom.xml

@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-recipes/zookeeper-recipes-election/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-recipes</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-recipes/zookeeper-recipes-lock/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-recipes</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-recipes/zookeeper-recipes-queue/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-recipes</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
   </parent>
 
   <groupId>org.apache.zookeeper</groupId>

+ 1 - 1
zookeeper-server/pom.xml

@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.7-SNAPSHOT</version>
+    <version>3.5.7</version>
     <relativePath>..</relativePath>
   </parent>