You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/07/24 00:59:35 UTC

[incubator-iotdb] branch master updated: Improve maven for stability (#1554)

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

qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 6d616b5  Improve maven for stability (#1554)
6d616b5 is described below

commit 6d616b5a26a6d4464f21689597278f48bc0a2012
Author: Xiangdong Huang <hu...@tsinghua.edu.cn>
AuthorDate: Fri Jul 24 08:56:11 2020 +0800

    Improve maven for stability (#1554)
    
    * add release note for v0.10.1
    * fix some maven warn;
    Co-authored-by: xiangdong huang <sa...@gmail.com>
---
 Jenkinsfile      |  1 +
 RELEASE_NOTES.md | 22 ++++++++++++++++++++++
 pom.xml          |  7 +++++++
 3 files changed, 30 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 15fdc7e..8d51c4b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -82,6 +82,7 @@ pipeline {
             }
             steps {
                 echo 'Building'
+                sh 'mvn clean'
                 // We'll deploy to a relative directory so we can
                 // deploy new versions only if the entrie build succeeds
                 sh 'mvn ${MVN_TEST_FAIL_IGNORE} -DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir clean deploy'
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index c3f4f31..6c10818 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -18,6 +18,28 @@
     under the License.
 
 -->
+# Apache IoTDB (incubating) 0.10.1
+
+* [IOTDB-797] InsertTablet deserialization from WAL error
+* [IOTDB-788] Can not upgrade all storage groups
+* [IOTDB-792] deadlock when insert while show latest timeseries
+* [IOTDB-794] Rename file or delete file Error in start check in Windows
+* [IOTDB-795] BufferUnderflowException in Hive-connector
+* [IOTDB-766] Do not release unclosed file reader, a small memory leak
+* [IOTDB-796] Concurrent Query throughput is low
+* Query result is not correct when some unsequence data exists
+* Change the default fetch size to 10000 in session
+* [IOTDB-798] fix a set rowLimit and rowOffset bug
+* [IOTDB-800] Add a new config type for those parameters which could not be modified any more after the first start 
+* [IOTDB-802] Improve "group by" query performance
+* [IOTDB-799] remove log visualizer tool from v0.10 
+* fix license-binary  
+* [IOTDB-805] Fix BufferUnderflowException when querying TsFile stored in HDFS 
+* python session client ver-0.10.0
+* [IOTDB-808] fix bug in selfCheck() truncate 
+* fix doc of MeasurementSchema in Tablet 
+* [IOTDB-811] fix upgrading mlog many times when upgrading system.properties crashed
+* Improve IoTDB restart process
 
 # Apache IoTDB (incubating) 0.10.0
 
diff --git a/pom.xml b/pom.xml
index e1d8e61..f9491eb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -452,6 +452,13 @@
                 <artifactId>mqtt-client</artifactId>
                 <version>1.12</version>
             </dependency>
+            <!-- many dependencies (hadoop, spark, hive, flink) use findbugs but with different version...-->
+            <dependency>
+                <groupId>com.google.code.findbugs</groupId>
+                <artifactId>jsr305</artifactId>
+                <!-- spark uses the lastest version than hive, flink and hadoop-->
+                <version>3.0.2</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
     <dependencies>