This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/actions/setup-python-6 in repository https://gitbox.apache.org/repos/asf/iceberg-cpp.git
omit 3275f86 chore(deps): bump actions/setup-python from 5 to 6 add 78d06bf chore: use ninja for ci build (#215) add 57418d4 chore: add release script and github workflow (#193) add 2447918 chore: add missing license for spdlog and zlib (#217) add 3401db6 fix: fix release tarball name (#221) add b717675 fix: fix dir name in verify script (#222) add 6a88541 chore: use new package name avro-cpp (#208) add f9dfc97 fix: fix windows test ci by add fail-fast strategy label (#213) add ad3430f refactor: remove -isystem on local include header files (#211) add 419ad27 feat: support installed nlohmann-json and nanoarrow (#209) add a65f509 chore: enhance README with logo and badges (#218) add 0508f80 fix: address feedback from initial release (#223) add b0b5be7 chore: update project version in CmakeLists (#224) add 9b69e45 feat: read data from FileScanTask as Arrow C Stream (#214) add 0fc573a feat: add decimal value representation (#182) add 3b945a0 feat: add CRoaring dependency (#231) add 1d13a09 chore(deps): bump actions/setup-python from 5 to 6 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (3275f86) \ N -- N -- N refs/heads/dependabot/github_actions/actions/setup-python-6 (1d13a09) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .github/workflows/cpp-linter.yml | 2 +- .github/workflows/rc.yml | 133 ++++ .github/workflows/sanitizer_test.yml | 2 +- .github/workflows/test.yml | 6 +- CMakeLists.txt | 2 +- LICENSE | 63 ++ NOTICE | 10 + README.md | 15 +- ci/scripts/build_example.sh | 1 + ci/scripts/build_iceberg.sh | 1 + cmake_modules/IcebergBuildUtils.cmake | 4 +- cmake_modules/IcebergThirdpartyToolchain.cmake | 217 +++++-- dev/release/README.md | 110 ++++ dev/release/check_rat_report.py | 65 ++ .../release/rat_exclude_files.txt | 12 +- dev/release/release.sh | 130 ++++ dev/release/release_rc.sh | 154 +++++ dev/release/run_rat.sh | 54 ++ dev/release/verify_rc.sh | 152 +++++ src/iceberg/CMakeLists.txt | 21 +- src/iceberg/IcebergConfig.cmake.in | 9 + src/iceberg/inheritable_metadata.cc | 1 - src/iceberg/result.h | 2 + src/iceberg/table_metadata.h | 18 +- src/iceberg/table_scan.cc | 121 +++- src/iceberg/table_scan.h | 13 + src/iceberg/transform.cc | 25 - src/iceberg/transform.h | 25 +- src/iceberg/util/decimal.cc | 585 ++++++++++++++++++ src/iceberg/util/decimal.h | 221 +++++++ .../{arrow/arrow_file_io.h => util/int128.h} | 25 +- src/iceberg/util/macros.h | 4 + test/CMakeLists.txt | 6 + test/decimal_test.cc | 674 +++++++++++++++++++++ test/file_scan_task_test.cc | 186 ++++++ test/roaring_test.cc | 60 ++ 36 files changed, 2991 insertions(+), 138 deletions(-) create mode 100644 .github/workflows/rc.yml create mode 100644 dev/release/README.md create mode 100644 dev/release/check_rat_report.py copy src/CMakeLists.txt => dev/release/rat_exclude_files.txt (85%) create mode 100755 dev/release/release.sh create mode 100755 dev/release/release_rc.sh create mode 100755 dev/release/run_rat.sh create mode 100755 dev/release/verify_rc.sh create mode 100644 src/iceberg/util/decimal.cc create mode 100644 src/iceberg/util/decimal.h copy src/iceberg/{arrow/arrow_file_io.h => util/int128.h} (68%) create mode 100644 test/decimal_test.cc create mode 100644 test/file_scan_task_test.cc create mode 100644 test/roaring_test.cc