Skip to content

Commit 35b8d5e

Browse files
committed
Merge tag 'release-3.9.3' into local/zookeeper-3.9.3.x
ZooKeeper 3.9.3 release.
2 parents 451dfdc + c26634f commit 35b8d5e

File tree

94 files changed

+1808
-398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+1808
-398
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,10 @@ jobs:
8686
name: failsafe-reports-${{ matrix.profile.name }}
8787
path: ./**/target/failsafe-reports/
8888
if-no-files-found: ignore
89+
- name: Upload cppunit test logs
90+
if: ${{ failure() }}
91+
uses: actions/upload-artifact@v3
92+
with:
93+
name: cppunit-logs-${{ matrix.profile.name }}
94+
path: ./zookeeper-client/zookeeper-client-c/target/c/TEST-*.txt
95+
if-no-files-found: ignore

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ tags
6969
obj
7070
zookeeper-server/src/main/resources/lib/ant-eclipse-*
7171
zookeeper-server/src/main/resources/lib/ivy-*
72-
zookeeper-server/src/main/java/org/apache/zookeeper/version/Info.java
73-
zookeeper-server/src/main/java/org/apache/zookeeper/version/VersionInfoMain.java
7472
zookeeper-client/zookeeper-client-c/Makefile.in
7573
zookeeper-client/zookeeper-client-c/aclocal.m4
7674
zookeeper-client/zookeeper-client-c/autom4te.cache/

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Apache ZooKeeper
2-
Copyright 2009-2023 The Apache Software Foundation
2+
Copyright 2009-2024 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).

owaspSuppressions.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
-->
1919

2020
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd">
21+
<suppress>
22+
<!-- ZooKeeper is not affected, because HttpURI is not used in our code.
23+
see: ZOOKEEPER-4876 -->
24+
<cve>CVE-2024-6763</cve>
25+
</suppress>
2126
<suppress>
2227
<!-- ZOOKEEPER-3217 -->
2328
<cve>CVE-2018-8088</cve>
@@ -72,5 +77,4 @@
7277
in json-java which we don't use in ZooKeeper -->
7378
<cve>CVE-2022-45688</cve>
7479
</suppress>
75-
7680
</suppressions>

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<artifactId>parent</artifactId>
3232
<packaging>pom</packaging>
3333
<!-- to change version: mvn -B release:update-versions -DdevelopmentVersion=3.6.0-SNAPSHOT -->
34-
<version>3.9.2</version>
34+
<version>3.9.3</version>
3535
<name>Apache ZooKeeper</name>
3636
<description>
3737
ZooKeeper is a centralized service for maintaining configuration information, naming,
@@ -71,7 +71,7 @@
7171
<connection>scm:git:https://gitbox.apache.org/repos/asf/zookeeper.git</connection>
7272
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/zookeeper.git</developerConnection>
7373
<url>https://gitbox.apache.org/repos/asf/zookeeper.git</url>
74-
<tag>release-3.9.2-0</tag>
74+
<tag>release-3.9.3-2</tag>
7575
</scm>
7676
<issueManagement>
7777
<system>JIRA</system>
@@ -539,14 +539,14 @@
539539
</profiles>
540540

541541
<properties>
542-
<upstream.version>3.9.2</upstream.version>
543-
<zookeeper-server.tesb.version>3.9.2.jetty12.1</zookeeper-server.tesb.version>
542+
<upstream.version>3.9.3</upstream.version>
543+
<zookeeper-server.tesb.version>3.9.3.jetty12.1</zookeeper-server.tesb.version>
544544
<jetty.tesb.version>12.0.15</jetty.tesb.version>
545545

546546
<!-- maven properties -->
547547
<maven.compiler.source>1.8</maven.compiler.source>
548548
<maven.compiler.target>1.8</maven.compiler.target>
549-
<project.build.outputTimestamp>1707770925</project.build.outputTimestamp>
549+
<project.build.outputTimestamp>1729206981</project.build.outputTimestamp>
550550
<dependency.locations.enabled>false</dependency.locations.enabled>
551551
<surefire.version>2.22.1</surefire.version>
552552

@@ -563,8 +563,8 @@
563563
<mockito.version>4.9.0</mockito.version>
564564
<hamcrest.version>2.2</hamcrest.version>
565565
<commons-cli.version>1.5.0</commons-cli.version>
566-
<netty.version>4.1.115.Final</netty.version>
567-
<jetty.version>9.4.53.v20231009</jetty.version>
566+
<netty.version>4.1.113.Final</netty.version>
567+
<jetty.version>9.4.56.v20240826</jetty.version>
568568
<jackson.version>2.15.2</jackson.version>
569569
<jline.version>2.14.6</jline.version>
570570
<snappy.version>1.1.10.5</snappy.version>
@@ -575,7 +575,7 @@
575575
<spotbugsannotations.version>4.0.2</spotbugsannotations.version>
576576
<checkstyle.version>8.39</checkstyle.version>
577577
<enforcer.version>3.0.0-M3</enforcer.version>
578-
<commons-io.version>2.11.0</commons-io.version>
578+
<commons-io.version>2.17.0</commons-io.version>
579579
<burningwave.mockdns.version>0.25.4</burningwave.mockdns.version>
580580
<clover-maven-plugin.version>4.4.1</clover-maven-plugin.version>
581581
<sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>

zookeeper-assembly/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.zookeeper</groupId>
2525
<artifactId>parent</artifactId>
26-
<version>3.9.2</version>
26+
<version>3.9.3</version>
2727
</parent>
2828

2929
<artifactId>zookeeper-assembly</artifactId>
@@ -103,6 +103,10 @@
103103
<groupId>jline</groupId>
104104
<artifactId>jline</artifactId>
105105
</dependency>
106+
<dependency>
107+
<groupId>ch.qos.logback</groupId>
108+
<artifactId>logback-classic</artifactId>
109+
</dependency>
106110
<dependency>
107111
<groupId>io.dropwizard.metrics</groupId>
108112
<artifactId>metrics-core</artifactId>

zookeeper-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.zookeeper</groupId>
2525
<artifactId>parent</artifactId>
26-
<version>3.9.2</version>
26+
<version>3.9.3</version>
2727
</parent>
2828

2929
<artifactId>zookeeper-client</artifactId>

zookeeper-client/zookeeper-client-c/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
cmake_minimum_required(VERSION 3.5)
1818

19-
project(zookeeper VERSION 3.9.2)
19+
project(zookeeper VERSION 3.9.3)
2020
2121
set(description "zookeeper C client")
2222

zookeeper-client/zookeeper-client-c/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
AC_PREREQ(2.59)
55

6-
AC_INIT([zookeeper C client],3.9.2,[[email protected]],[zookeeper])
6+
AC_INIT([zookeeper C client],3.9.3,[[email protected]],[zookeeper])
77
AC_CONFIG_SRCDIR([src/zookeeper.c])
88

99
# Save initial CFLAGS and CXXFLAGS values before AC_PROG_CC and AC_PROG_CXX

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
extern "C" {
2323
#endif
2424

25-
#define ZOO_VERSION "3.9.2"
25+
#define ZOO_VERSION "3.9.3"
2626

2727
#ifdef __cplusplus
2828
}

0 commit comments

Comments
 (0)