Skip to content

Commit 2b958a5

Browse files
committed
update rn and version
1 parent 15b8d2a commit 2b958a5

7 files changed

Lines changed: 27 additions & 13 deletions

File tree

RELEASE_NOTES.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,20 @@
1818
under the License.
1919
2020
-->
21+
# Apache IoTDB 2.0.7
22+
23+
## Features & Improvements
24+
25+
- System Management: Updated Jetty dependency version.
26+
- Others: Remove risky RPC interfaces.
27+
- Others: Remove JEXL functions.
28+
- Others: Check naming when creating a Pipe.
29+
- Others: Change the default client RPC service address to 127.0.0.1.
30+
- Others: Modify code to make internal services bind to the value specified by `dn_internal_address`instead of the default address.
31+
32+
## Bugs
33+
- Fixed an issue in the partition table automatic deletion logic: Only TTL configured at the DB level takes effect, using the maximum TTL value within the DB.
34+
- ...
2135

2236
# Apache IoTDB 2.0.6
2337

distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
<dependency>
175175
<groupId>org.apache.iotdb</groupId>
176176
<artifactId>iotdb-ainode</artifactId>
177-
<version>2.0.6</version>
177+
<version>2.0.7</version>
178178
</dependency>
179179
</dependencies>
180180
<build>

example/client-cpp-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.iotdb</groupId>
2626
<artifactId>iotdb-examples</artifactId>
27-
<version>2.0.6</version>
27+
<version>2.0.7</version>
2828
</parent>
2929
<artifactId>client-cpp-example</artifactId>
3030
<name>IoTDB: Example: CPP Client</name>

iotdb-client/client-cpp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.iotdb</groupId>
2626
<artifactId>iotdb-client</artifactId>
27-
<version>2.0.6</version>
27+
<version>2.0.7</version>
2828
</parent>
2929
<artifactId>client-cpp</artifactId>
3030
<packaging>pom</packaging>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>org.apache.iotdb</groupId>
4545
<artifactId>iotdb-thrift-commons</artifactId>
46-
<version>2.0.6</version>
46+
<version>2.0.7</version>
4747
<scope>provided</scope>
4848
</dependency>
4949
</dependencies>

iotdb-client/jdbc/src/main/feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
-->
2020
<features xmlns="http://karaf.apache.org/xmlns/features/v1.5.0" name="driver-s7-feature">
21-
<feature name="iotdb-feature" description="iotdb-feature" version="2.0.6">
21+
<feature name="iotdb-feature" description="iotdb-feature" version="2.0.7">
2222
<details>Feature to install required Bundle to use IoTDB inside Karaf container</details>
2323
<feature prerequisite="true">wrap</feature>
2424
<feature>scr</feature>

iotdb-core/ainode/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.iotdb</groupId>
2626
<artifactId>iotdb-core</artifactId>
27-
<version>2.0.6</version>
27+
<version>2.0.7</version>
2828
</parent>
2929
<artifactId>iotdb-ainode</artifactId>
3030
<name>IoTDB: Core: AINode</name>
@@ -33,31 +33,31 @@
3333
<dependency>
3434
<groupId>org.apache.iotdb</groupId>
3535
<artifactId>iotdb-thrift</artifactId>
36-
<version>2.0.6</version>
36+
<version>2.0.7</version>
3737
<scope>provided</scope>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.apache.iotdb</groupId>
4141
<artifactId>iotdb-thrift-confignode</artifactId>
42-
<version>2.0.6</version>
42+
<version>2.0.7</version>
4343
<scope>provided</scope>
4444
</dependency>
4545
<dependency>
4646
<groupId>org.apache.iotdb</groupId>
4747
<artifactId>iotdb-thrift-commons</artifactId>
48-
<version>2.0.6</version>
48+
<version>2.0.7</version>
4949
<scope>provided</scope>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.apache.iotdb</groupId>
5353
<artifactId>iotdb-thrift-ainode</artifactId>
54-
<version>2.0.6</version>
54+
<version>2.0.7</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.apache.iotdb</groupId>
5959
<artifactId>iotdb-python-api</artifactId>
60-
<version>2.0.6</version>
60+
<version>2.0.7</version>
6161
<scope>provided</scope>
6262
</dependency>
6363
</dependencies>

iotdb-core/ainode/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ build-backend = "poetry.core.masonry.api"
2121

2222
[tool.poetry]
2323
name = "apache-iotdb-ainode"
24-
version = "2.0.6"
24+
version = "2.0.7"
2525
description = "Apache IoTDB AINode"
2626
readme = "README.md"
2727
authors = ["Apache Software Foundation <dev@iotdb.apache.org>"]
@@ -116,4 +116,4 @@ ainode = "iotdb.ainode.core.script:main"
116116

117117
[tool.isort]
118118
profile = "black"
119-
skip = ["build", "dist", "target"]
119+
skip = ["build", "dist", "target"]

0 commit comments

Comments
 (0)