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

jackietien pushed a change to branch ty/iotdb_tsfile_v4
in repository https://gitbox.apache.org/repos/asf/tsfile.git


    from 5701fdf4 fix tests
     add 56ca2579 Implement chunk reader without statistics (#133)
     add e6358570 Add "Navigating-Time-Series Data" document
     add 79aba07d Add a Data Model document (#138)
     add d2455c69 Modify directory order (#140)
     add 3fb18a1f change readme content order (#142)
     add 486b2584 Update Quick Start Document (#145)
     add 8d39ce35 fix rlbe (#143)
     add d4d3b145 apply spotless
     add 79a906e2 fix error link (#148)
     add ca881da0 Fix Invalid GitHub label (#149)
     add 2f9d8dcb Bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 
to 3.3.1 (#105)
     add f28c49f9 Bump org.xerial.snappy:snappy-java from 1.1.10.4 to 1.1.10.5 
(#106)
     add 73ef34c4 Bump au.com.acegi:xml-format-maven-plugin from 3.2.2 to 3.3.1 
(#15)
     add 929d0fac Bump com.gradle:gradle-enterprise-maven-extension from 1.19.2 
to 1.20.1 (#36)
     add 49c773dc Bump com.github.luben:zstd-jni from 1.5.5-5 to 1.5.6-3 (#70)
     add 484e6646 Create codeql.yml for code scan (#150)
     add fe1bc5c1 support separated aligned chunk (#151)
     add 8c528334 Bump org.apache.rat:apache-rat-plugin from 0.15 to 0.16.1 
(#152)
     add 4486c9e0 Bump org.apache.maven.plugins:maven-surefire-plugin from 
3.1.2 to 3.3.0 (#153)
     add a4be19e6 Bump org.apache.maven.plugins:maven-enforcer-plugin from 
3.4.1 to 3.5.0 (#154)
     add 08fa2c4f Bump org.codehaus.mojo:extra-enforcer-rules from 1.7.0 to 
1.8.0 (#155)
     add b4a51d34 enhance test for direct buffer (#146)
     add 928c166d Fix uncompress page data (#161)
     add 2a4218da Bump org.slf4j:slf4j-api from 2.0.9 to 2.0.13 (#156)
     add 98938e66 Fix encoder and decoder construction of RLBE (#162)
     add 44a66bb7 Change dependabot update interval to monthly
     add aff5dfa6 Fix code scanning alerts (#169)
     add 053b1e3f Bump org.apache:apache from 31 to 32 (#163)
     add ea4c7411 Bump org.codehaus.mojo:build-helper-maven-plugin from 3.5.0 
to 3.6.0 (#165)
     add 32b6b71f Bump org.apache.groovy:groovy from 4.0.21 to 4.0.22 (#166)
     add 564c66f9 Bump net.revelc.code.formatter:formatter-maven-plugin (#167)
     add c24b9bd1 Bump commons-io:commons-io from 2.15.1 to 2.16.1 (#168)

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |    2 +
 .github/dependabot.yml                             |    8 +-
 .github/workflows/codeql.yml                       |   84 +
 .mvn/extensions.xml                                |    2 +-
 README-zh.md                                       |    4 +-
 README.md                                          |    4 +-
 cpp/README-zh.md                                   |    4 +-
 cpp/pom.xml                                        |    2 +-
 docs/pnpm-lock.yaml                                | 4950 +++++++++-----------
 docs/src/.vuepress/sidebar/V1.0.x/en.ts            |   11 +
 docs/src/.vuepress/sidebar/V1.0.x/zh.ts            |   11 +
 docs/src/UserGuide/latest/QuickStart/Data-Model.md |   65 +
 .../QuickStart/Navigating_Time_Series_Data.md      |   64 +
 docs/src/UserGuide/latest/QuickStart/QuickStart.md |  566 +--
 .../latest/QuickStart => stage}/QuickStart.md      |    0
 .../zh/UserGuide/latest/QuickStart/Data-Model.md   |   65 +
 .../QuickStart/Navigating_Time_Series_Data.md      |   67 +
 .../zh/UserGuide/latest/QuickStart/QuickStart.md   |  560 +--
 .../latest/QuickStart => stage}/QuickStart.md      |    0
 .../java/org/apache/tsfile/TsFileSequenceRead.java |   76 +-
 java/pom.xml                                       |    8 +-
 java/tsfile/README-zh.md                           |   45 +-
 java/tsfile/README.md                              |   45 +-
 .../tsfile/encoding/decoder/DoubleRLBEDecoder.java |    5 +-
 .../tsfile/encoding/decoder/FloatDecoder.java      |   11 +
 .../tsfile/encoding/decoder/LongRLBEDecoder.java   |    5 +-
 .../tsfile/encoding/encoder/FloatEncoder.java      |    9 +
 .../tsfile/encoding/encoder/TSEncodingBuilder.java |    1 +
 .../apache/tsfile/read/TsFileSequenceReader.java   |   30 +-
 .../tsfile/read/reader/chunk/ChunkReader.java      |    8 +-
 .../tsfile/read/reader/page/AlignedPageReader.java |    8 +
 .../tsfile/write/chunk/AlignedChunkWriterImpl.java |   14 +-
 .../apache/tsfile/write/chunk/TimeChunkWriter.java |   14 +-
 .../java/org/apache/tsfile/compress/LZ4Test.java   |   27 +
 .../java/org/apache/tsfile/compress/LZMA2Test.java |    2 +-
 .../java/org/apache/tsfile/compress/ZstdTest.java  |    2 +-
 .../tsfile/encoding/decoder/RLBEDecoderTest.java   |   14 +-
 pom.xml                                            |   33 +-
 {cpp => python}/README-zh.md                       |    6 +-
 39 files changed, 3071 insertions(+), 3761 deletions(-)
 create mode 100644 .github/workflows/codeql.yml
 create mode 100644 docs/src/UserGuide/latest/QuickStart/Data-Model.md
 create mode 100644 
docs/src/UserGuide/latest/QuickStart/Navigating_Time_Series_Data.md
 copy docs/src/{UserGuide/latest/QuickStart => stage}/QuickStart.md (100%)
 create mode 100644 docs/src/zh/UserGuide/latest/QuickStart/Data-Model.md
 create mode 100644 
docs/src/zh/UserGuide/latest/QuickStart/Navigating_Time_Series_Data.md
 copy docs/src/zh/{UserGuide/latest/QuickStart => stage}/QuickStart.md (100%)
 copy {cpp => python}/README-zh.md (96%)

Reply via email to