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

github-bot pushed a change to branch 
dependabot/go_modules/golang.org/x/sys-0.42.0
in repository https://gitbox.apache.org/repos/asf/arrow-go.git


    omit 93714601 chore: Bump golang.org/x/sys from 0.41.0 to 0.42.0
     add 1a28af36 fix: add nullability to struct type String() (#700)
     add d2596807 chore: Bump github.com/substrait-io/substrait-go/v7 from 
7.5.0 to 7.5.1 (#698)
     add cb7d0002 chore: Bump github.com/pierrec/lz4/v4 from 4.1.25 to 4.1.26 
(#696)
     add cfff68c8 chore: Bump docker/login-action from 3 to 4 (#695)
     add 7c6e39b1 perf(arrow/compute): improve take kernel perf (#702)
     add fe019f12 perf(arrow/array): pre-alloc bulk appends (#699)
     add fb932798 chore: Bump google.golang.org/grpc from 1.79.1 to 1.79.2 
(#697)
     add 9a3edccd perf(parquet): dictionary impl cleanup (#701)
     add efc538a6 fix(parquet/pqarrow): fix Decimal256 sign extension  (#711)
     add 6317dbad perf(parquet): remove string concatenation in hot debug 
assert (#708)
     add fc20f37d fix(avro): correctly set nullability for ListType (#709)
     add 5bf10f2f perf(parquet/file): avoid double bool bitmap conversion (#707)
     add 7ae2e335 fix(compute): fix data race and memory leak in concurrent 
is_in kernel (#712)
     add 5a944224 perf(parquet/compress): set zstd pool encoder concurrency to 
1 (#717)
     add 9d024703 chore: Bump google.golang.org/grpc from 1.79.2 to 1.79.3 
(#724)
     add 8f0ce842 perf(parquet): optimize stats and bloom filters for bool 
columns (#715)
     add b0287d70 chore: Bump actions/download-artifact from 8.0.0 to 8.0.1 
(#718)
     add d41e0b50 fix(parquet): strip repetition_type from root SchemaElement 
during serialization (#723)
     add a1a63fe6 chore: Update CI with Go 1.25/1.26 (#725)
     add 070c3e9f chore: Bump golang.org/x/sys from 0.41.0 to 0.42.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   (93714601)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/golang.org/x/sys-0.42.0 (070c3e9f)

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:
 .env                                               |   2 +-
 .github/workflows/benchmark.yml                    |   2 +-
 .github/workflows/lint.yml                         |   2 +-
 .github/workflows/rc.yml                           |   4 +-
 .github/workflows/test.yml                         |  24 +-
 .pre-commit-config.yaml                            |   2 +-
 arrow/array/binarybuilder.go                       |  16 +
 arrow/array/builder_prealloc_bench_test.go         | 330 +++++++++++++++++++
 arrow/array/builder_prealloc_test.go               | 194 +++++++++++
 arrow/array/diff.go                                |   6 +-
 arrow/avro/reader_test.go                          |  10 +-
 arrow/avro/schema.go                               |  10 +-
 arrow/avro/schema_test.go                          |  15 +-
 arrow/avro/testdata/alltypes.avsc                  |  10 +
 arrow/avro/testdata/testdata.go                    |  17 +-
 arrow/bitutil/bitmaps.go                           |  33 ++
 arrow/bitutil/bitmaps_test.go                      | 130 ++++++++
 arrow/compute/executor.go                          |   7 +-
 arrow/compute/internal/kernels/vector_selection.go | 178 +++++++++-
 arrow/compute/scalar_set_lookup.go                 |   1 -
 arrow/compute/scalar_set_lookup_test.go            |  35 ++
 arrow/compute/vector_selection_test.go             | 211 ++++++++++++
 arrow/datatype_nested.go                           |   9 +-
 arrow/flight/flightsql/driver/driver_test.go       |  20 +-
 arrow/memory/checked_allocator.go                  |   4 +-
 arrow/scalar/nested.go                             |   2 +-
 arrow/util/protobuf_reflect_test.go                |  32 +-
 go.mod                                             |   6 +-
 go.sum                                             |  12 +-
 parquet/compress/compress_test.go                  |  68 ++++
 parquet/compress/zstd.go                           |   2 +-
 parquet/file/column_writer.go                      |   4 +-
 parquet/file/column_writer_test.go                 |  91 ++++++
 parquet/file/column_writer_types.gen.go            | 123 +++++++
 parquet/file/column_writer_types.gen.go.tmpl       | 129 ++++++++
 parquet/internal/encoding/boolean_decoder.go       |  49 +++
 parquet/internal/encoding/boolean_encoder.go       | 124 +++++++
 .../internal/encoding/encoding_benchmarks_test.go  | 305 +++++++++++++++++
 parquet/internal/encoding/encoding_test.go         | 359 ++++++++++++++++++++
 parquet/internal/encoding/memo_table.go            |  39 ++-
 parquet/internal/encoding/memo_table_types.gen.go  |  15 +-
 .../internal/encoding/memo_table_types.gen.go.tmpl |  15 +-
 parquet/internal/utils/bitmap_writer.go            |   6 +
 parquet/metadata/bitmap_benchmark_test.go          |  98 ++++++
 parquet/metadata/bloom_filter.go                   |  58 ++++
 parquet/metadata/bloom_filter_test.go              | 361 +++++++++++++++++++++
 parquet/metadata/statistics_test.go                | 313 ++++++++++++++++++
 parquet/metadata/statistics_types.gen.go           |  79 ++++-
 parquet/metadata/statistics_types.gen.go.tmpl      |  80 ++++-
 parquet/pqarrow/boolean_bitmap_bench_test.go       | 122 +++++++
 parquet/pqarrow/column_readers.go                  |   4 +-
 parquet/pqarrow/encode_arrow.go                    |  26 +-
 parquet/pqarrow/encode_arrow_test.go               |  91 ++++++
 parquet/pqarrow/file_writer_test.go                |   4 +-
 parquet/schema/schema.go                           |   1 +
 parquet/schema/schema_flatten_test.go              |  21 +-
 56 files changed, 3787 insertions(+), 124 deletions(-)
 create mode 100644 arrow/array/builder_prealloc_bench_test.go
 create mode 100644 arrow/array/builder_prealloc_test.go
 create mode 100644 parquet/metadata/bitmap_benchmark_test.go
 create mode 100644 parquet/pqarrow/boolean_bitmap_bench_test.go

Reply via email to