Skip to content

Commit 0266691

Browse files
authored
Bump Zookeeper Client to 3.9.3 (#34482)
1 parent d718596 commit 0266691

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

RELEASE-NOTES.md

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

1414
### Bug Fixes
1515

16-
1. Alleviate connection leaks caused by Seata Client throwing exceptions - [#34463](https://github.com/apache/shardingsphere/pull/34463)
16+
1. JDBC: Alleviate connection leaks caused by Seata Client throwing exceptions - [#34463](https://github.com/apache/shardingsphere/pull/34463)
1717

1818
### Change Logs
1919

distribution/proxy/src/main/release-docs/LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ The text of each license is the standard Apache 2.0 license.
304304
transmittable-thread-local 2.14.2: https://github.com/alibaba/transmittable-thread-local, Apache 2.0
305305
uzaygezen-core 0.2: https://code.google.com/p/uzaygezen, Apache 2.0
306306
woodstox-core 6.5.1: https://github.com/FasterXML/woodstox, Apache 2.0
307-
zookeeper 3.9.2: https://github.com/apache/zookeeper, Apache 2.0
308-
zookeeper-jute 3.9.2: https://github.com/apache/zookeeper, Apache 2.0
307+
zookeeper 3.9.3: https://github.com/apache/zookeeper, Apache 2.0
308+
zookeeper-jute 3.9.3: https://github.com/apache/zookeeper, Apache 2.0
309309
java-util 2.4.0: https://github.com/jdereg/java-util, Apache 2.0
310310

311311
========================================================================

infra/reachability-metadata/src/main/resources/META-INF/native-image/org.apache.shardingsphere/generated-reachability-metadata/reflect-config.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,11 @@
749749
"queryAllPublicConstructors":true,
750750
"methods":[{"name":"<init>","parameterTypes":[] }, {"name":"add","parameterTypes":["long"] }, {"name":"sum","parameterTypes":[] }]
751751
},
752+
{
753+
"condition":{"typeReachable":"org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask"},
754+
"name":"java.util.concurrent.atomic.Striped64$Cell",
755+
"fields":[{"name":"value"}]
756+
},
752757
{
753758
"condition":{"typeReachable":"org.apache.shardingsphere.infra.expr.groovy.GroovyInlineExpressionParser"},
754759
"name":"java.util.function.DoubleFunction",

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<bouncycastle.version>1.78.1</bouncycastle.version>
104104

105105
<curator.version>5.7.0</curator.version>
106-
<zookeeper.version>3.9.2</zookeeper.version>
106+
<zookeeper.version>3.9.3</zookeeper.version>
107107
<audience-annotations.version>0.12.0</audience-annotations.version>
108108
<jetcd.version>0.7.7</jetcd.version>
109109
<vertx.version>4.5.1</vertx.version>

test/native/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,11 @@
123123
<groupId>org.apache.commons</groupId>
124124
<artifactId>commons-pool2</artifactId>
125125
</exclusion>
126+
<!-- See https://github.com/apache/incubator-seata/issues/7045 -->
127+
<exclusion>
128+
<groupId>org.springframework</groupId>
129+
<artifactId>spring-webmvc</artifactId>
130+
</exclusion>
126131
</exclusions>
127132
</dependency>
128133
<dependency>
@@ -232,6 +237,13 @@
232237
<artifactId>jetcd-test</artifactId>
233238
<version>${jetcd.version}</version>
234239
<scope>test</scope>
240+
<exclusions>
241+
<!-- See https://github.com/testcontainers/testcontainers-java/issues/8338 -->
242+
<exclusion>
243+
<groupId>org.apache.commons</groupId>
244+
<artifactId>commons-compress</artifactId>
245+
</exclusion>
246+
</exclusions>
235247
</dependency>
236248
</dependencies>
237249

0 commit comments

Comments
 (0)