This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/go_modules/modernc.org/sqlite-1.36.0 in repository https://gitbox.apache.org/repos/asf/arrow-go.git
discard 4deaf5c chore: Bump modernc.org/sqlite from 1.29.6 to 1.36.0 add fa62889 chore: Bump actions/download-artifact from 4.1.8 to 4.1.9 (#301) add c191420 fix(arrow/memory): Align allocations always (#289) add af97651 chore: Bump github.com/substrait-io/substrait-go/v3 from 3.7.0 to 3.8.0 (#300) add 918abb8 chore: Bump github.com/klauspost/cpuid/v2 from 2.2.9 to 2.2.10 (#299) add 0f0d667 feat(parquet): add byte buffer when disable buffered stream (#302) add 2c14a75 perf(overflow): Speed up overflow checks for small integers (#303) add 46bc47c chore: bump version (#305) add 44534c1 fix(pqarrow): respect list element nullability during conversion (#311) add aae4e23 chore(testing): Update testing submodules (#312) add 9876671 chore: Bump golang.org/x/sys from 0.30.0 to 0.31.0 (#309) add 2f53293 chore: Bump google.golang.org/grpc from 1.70.0 to 1.71.0 (#306) add d77c506 chore: Bump modernc.org/sqlite from 1.29.6 to 1.36.0 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 (4deaf5c) \ N -- N -- N refs/heads/dependabot/go_modules/modernc.org/sqlite-1.36.0 (d77c506) 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/rc.yml | 4 +- arrow-testing | 2 +- arrow/compute/internal/kernels/base_arithmetic.go | 4 +- arrow/doc.go | 2 +- arrow/memory/mallocator/mallocator.go | 78 ++++++--- arrow/memory/mallocator/mallocator_test.go | 45 +++++ go.mod | 11 +- go.sum | 44 ++--- internal/utils/buf_reader.go | 80 +++++++++ internal/utils/math.go | 95 +++++++++- internal/utils/math_32bit_test.go | 67 +++++++ internal/utils/math_64bit_test.go | 67 +++++++ internal/utils/math_test.go | 204 ++++++++++++++++++++++ parquet-testing | 2 +- parquet/encryption_read_config_test.go | 4 +- parquet/encryption_write_config_test.go | 2 + parquet/file/column_writer_test.go | 2 +- parquet/file/file_reader_test.go | 2 +- parquet/file/page_reader.go | 6 +- parquet/file/record_reader.go | 7 +- parquet/internal/encoding/levels.go | 3 +- parquet/metadata/page_index.go | 4 +- parquet/pqarrow/schema.go | 19 +- parquet/pqarrow/schema_test.go | 23 ++- parquet/reader_properties.go | 3 +- 25 files changed, 685 insertions(+), 95 deletions(-) create mode 100644 internal/utils/math_32bit_test.go create mode 100644 internal/utils/math_64bit_test.go create mode 100644 internal/utils/math_test.go