This is an automated email from the ASF dual-hosted git repository.
rong pushed a commit to branch dev/1.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/dev/1.3 by this push:
new d49f43add2d Updated moquette version to fix MQTT write direct memory
leak issue (#15168)
d49f43add2d is described below
commit d49f43add2d35db5d24d365c9c398609a7e87b41
Author: Caideyipi <[email protected]>
AuthorDate: Fri Mar 21 20:33:41 2025 +0800
Updated moquette version to fix MQTT write direct memory leak issue (#15168)
Co-authored-by: luoluoyuyu <[email protected]>
Co-authored-by: Steve Yurong Su <[email protected]>
---
iotdb-core/datanode/pom.xml | 2 +-
pom.xml | 11 +++++++++--
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/iotdb-core/datanode/pom.xml b/iotdb-core/datanode/pom.xml
index ae4ae4c62b2..b97a532249a 100644
--- a/iotdb-core/datanode/pom.xml
+++ b/iotdb-core/datanode/pom.xml
@@ -262,7 +262,7 @@
<artifactId>jersey-container-servlet-core</artifactId>
</dependency>
<dependency>
- <groupId>io.moquette</groupId>
+ <groupId>com.github.moquette-io.moquette</groupId>
<artifactId>moquette-broker</artifactId>
</dependency>
<dependency>
diff --git a/pom.xml b/pom.xml
index 8d8920a5dba..49b1a7a9229 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,6 +21,13 @@
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
+ <!--Add the JitPack repository because the moquette-broker dependency
needs to be resolved from the JitPack repository-->
+ <repositories>
+ <repository>
+ <id>jitpack.io</id>
+ <url>https://jitpack.io</url>
+ </repository>
+ </repositories>
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
@@ -121,7 +128,7 @@
<mockito.version>2.23.4</mockito.version>
<!-- This was the last version to support Java 8 -->
<!--mockito.version>4.11.0</mockito.version-->
- <moquette.version>0.17</moquette.version>
+ <moquette.version>0.18.0</moquette.version>
<netty.version>4.1.115.Final</netty.version>
<nimbus-jose-jwt.version>9.37.3</nimbus-jose-jwt.version>
<oauth2-oidc-sdk.version>10.15</oauth2-oidc-sdk.version>
@@ -432,7 +439,7 @@
<version>${reflections.version}</version>
</dependency>
<dependency>
- <groupId>io.moquette</groupId>
+ <groupId>com.github.moquette-io.moquette</groupId>
<artifactId>moquette-broker</artifactId>
<version>${moquette.version}</version>
</dependency>