Skip to content

Commit 2a84a3e

Browse files
committed
add RN
1 parent 2ca95e6 commit 2a84a3e

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

RELEASE_NOTES.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,25 @@
1919
2020
-->
2121

22+
# Apache TsFile 2.2.0
23+
24+
# New Feature
25+
- TsFile-Python fully supports TEXT and STRING data types.
26+
- The Python interface supports the to_dataframe method.
27+
- C++ TsFile supports encoding formats such as RLE.
28+
- Both C++ TsFile and Java TsFile table models support tag filtering.
29+
- C++ TsFile supports writing data of the TEXT type.
30+
- Added the CAMEL encoding method.
31+
- ...
32+
33+
# Improvement/Bugfix
34+
- Fixed the issue where the CppTsFile write and query interfaces had various exceptions when handling null values.
35+
- Fixed the issue where Cpp TsFile failed to write data when TAG and FIELD columns were all empty (only timestamps existed with no actual data).
36+
- Fixed the issue where column names were all converted to lowercase when constructing a Tablet in Cpp TsFile, resulting in the failure to add values to Tablets constructed with uppercase column names.
37+
- Fixed the issue where queries would throw errors when the values of TEXT-type columns in the CPP TsFile table model were partially empty.
38+
- Fixed security vulnerabilities CVE-2025-12183,CVE-2025-66566 and CVE-2025-11226.
39+
- ...
40+
2241
# Apache TsFile 2.1.1
2342

2443
## Improvement/Bugfix

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ else()
2727
endif ()
2828

2929
cmake_policy(SET CMP0079 NEW)
30-
set(TsFile_CPP_VERSION 2.2.0.dev)
30+
set(TsFile_CPP_VERSION 2.2.0)
3131
set(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -Wall")
3232

3333
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU")

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from setuptools import setup, Extension
2626
from setuptools.command.build_ext import build_ext
2727

28-
version = "2.2.0.dev"
28+
version = "2.2.0"
2929
system = platform.system()
3030

3131

0 commit comments

Comments
 (0)