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

github-bot pushed a change to branch 
dependabot/maven/java/com.google.api.grpc-proto-google-common-protos-2.45.1
in repository https://gitbox.apache.org/repos/asf/arrow.git


    omit a69d357173 MINOR: [Java] Bump 
com.google.api.grpc:proto-google-common-protos
     add baf56f1134 MINOR: [C#] Bump xunit from 2.9.1 to 2.9.2 in /csharp 
(#44259)
     add 6ee74c2609 MINOR: [C#] Bump Grpc.AspNetCore.Server from 2.64.0 to 
2.66.0 in /csharp (#44260)
     add d55d4c6bc7 GH-43956: [C++][Format] Add initial Decimal32/Decimal64 
implementations (#43957)
     add f4034ba2b4 GH-44253: [CI][Release][Python] Do not verify Python on 
Ubuntu 20.04 (#44254)
     add b1d9f85802 GH-43197: [C++][AzureFS] Ignore password field in URI 
(#44220)
     add de9462d0e5 GH-44268: [Release][Ruby][CI] Pin version of glib used in 
verification script (#44270)
     add b0e13cc41d GH-44271: [C#] Add support for Decimal32 and Decimal64 
(#44272)
     add fa6a003885 GH-41673: [Format][Docs] Add arrow format introductory page 
(#41593)
     add 8b8a67ef14 MINOR: [CI][Python] Install pyuwsgi instead of uwsgi 
(#44226)
     add ac6d7e812d GH-34529: [C++][Compute] Replace explicit checking with 
DCHECK for invariants in row segmenter (#44236)
     add 6863f504e0 GH-44277: [CI] Use Miniforge instead of Mambaforge (#44278)
     add 6b59098698 GH-41922: [CI][C++] Update Minio version (#44225)
     add 5d689b4492 GH-44276: [C++] Fix UBSAN error introduced by Decimal32 
(#44280)
     add 15cc84dad4 GH-44269: [C++][FS][Azure] Catch missing exceptions on HNS 
support check (#44274)
     add 60f29e951a GH-44249: [C++] Unify simd header includings (#44250)
     add 529e08c56f MINOR: [Python][CI] Avoid unconditional use of precompiled 
headers (#44288)
     add a59f09f8cf MINOR: [Java] Bump org.mockito:mockito-junit-jupiter from 
5.13.0 to 5.14.1 in /java (#44266)
     add 3abfc0ec10 MINOR: [Java] Bump com.puppycrawl.tools:checkstyle from 
10.18.1 to 10.18.2 in /java (#44265)
     add 83414bb4a2 MINOR: [Java] Bump 
com.google.api.grpc:proto-google-common-protos

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   (a69d357173)
            \
             N -- N -- N   
refs/heads/dependabot/maven/java/com.google.api.grpc-proto-google-common-protos-2.45.1
 (83414bb4a2)

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.yml                          |   2 +-
 ci/appveyor-cpp-setup.bat                          |   2 +-
 ci/docker/conda.dockerfile                         |   4 +-
 .../python-wheel-windows-test-vs2019.dockerfile    |   2 +-
 ci/scripts/cpp_build.sh                            |   8 +-
 ci/scripts/install_conda.sh                        |   9 +-
 ci/scripts/install_minio.sh                        |   4 +-
 cpp/build-support/cpplint.py                       |   6 +-
 cpp/src/arrow/acero/bloom_filter.cc                |   6 +-
 cpp/src/arrow/acero/bloom_filter.h                 |   5 +-
 cpp/src/arrow/acero/bloom_filter_avx2.cc           |   3 +-
 cpp/src/arrow/acero/tpch_benchmark.cc              |   4 +-
 cpp/src/arrow/acero/tpch_node.cc                   |  18 +-
 cpp/src/arrow/array/array_base.cc                  |   4 +
 cpp/src/arrow/array/array_decimal.cc               |  28 +
 cpp/src/arrow/array/array_decimal.h                |  32 +
 cpp/src/arrow/array/array_test.cc                  | 124 ++-
 cpp/src/arrow/array/array_view_test.cc             |  40 +-
 cpp/src/arrow/array/builder_base.cc                |   2 +
 cpp/src/arrow/array/builder_decimal.cc             |  70 ++
 cpp/src/arrow/array/builder_decimal.h              |  62 ++
 cpp/src/arrow/array/builder_dict.h                 |  19 +-
 cpp/src/arrow/array/concatenate.cc                 |   2 +-
 cpp/src/arrow/array/diff.cc                        |   8 +-
 cpp/src/arrow/array/diff_test.cc                   |   2 +
 cpp/src/arrow/array/util.cc                        |  57 +-
 cpp/src/arrow/array/validate.cc                    |  10 +
 cpp/src/arrow/builder.cc                           |   2 +
 cpp/src/arrow/builder_benchmark.cc                 |   2 +-
 cpp/src/arrow/c/bridge.cc                          |   9 +-
 cpp/src/arrow/c/bridge_benchmark.cc                |   2 +-
 cpp/src/arrow/c/bridge_test.cc                     |  56 +-
 cpp/src/arrow/compare.cc                           |  25 +-
 cpp/src/arrow/compute/kernel_test.cc               |  12 +-
 cpp/src/arrow/compute/kernels/aggregate_basic.cc   |   8 +-
 .../arrow/compute/kernels/aggregate_basic.inc.cc   |   3 +-
 cpp/src/arrow/compute/kernels/aggregate_internal.h |  10 +
 cpp/src/arrow/compute/kernels/aggregate_tdigest.cc |   2 +
 cpp/src/arrow/compute/kernels/aggregate_var_std.cc |   7 +-
 cpp/src/arrow/compute/kernels/codegen_internal.h   |  62 +-
 cpp/src/arrow/compute/kernels/hash_aggregate.cc    |  26 +-
 cpp/src/arrow/compute/kernels/vector_hash_test.cc  |   9 +-
 .../arrow/compute/kernels/vector_pairwise_test.cc  |  14 +-
 cpp/src/arrow/compute/key_hash_internal.h          |   5 +-
 cpp/src/arrow/compute/key_hash_internal_avx2.cc    |   3 +-
 cpp/src/arrow/compute/key_map_internal_avx2.cc     |   3 +-
 cpp/src/arrow/compute/row/encode_internal_avx2.cc  |   3 +-
 cpp/src/arrow/compute/row/grouper.cc               |  85 +-
 cpp/src/arrow/compute/util.h                       |   9 +-
 cpp/src/arrow/compute/util_avx2.cc                 |   2 +-
 cpp/src/arrow/csv/converter_benchmark.cc           |   2 +-
 cpp/src/arrow/csv/converter_test.cc                |  30 +-
 .../arrow/engine/substrait/expression_internal.cc  |  12 +-
 cpp/src/arrow/filesystem/azurefs.cc                |  61 +-
 cpp/src/arrow/filesystem/azurefs.h                 |  10 +-
 cpp/src/arrow/filesystem/azurefs_test.cc           |  68 +-
 cpp/src/arrow/filesystem/s3fs.cc                   |  58 +-
 cpp/src/arrow/filesystem/s3fs_test.cc              |  15 +-
 cpp/src/arrow/filesystem/test_util.cc              |  10 +-
 cpp/src/arrow/filesystem/test_util.h               |   3 +
 cpp/src/arrow/integration/json_internal.cc         |  51 +-
 cpp/src/arrow/ipc/json_simple.cc                   |   8 +
 cpp/src/arrow/ipc/json_simple_test.cc              |  14 +-
 cpp/src/arrow/ipc/metadata_internal.cc             |  36 +-
 cpp/src/arrow/ipc/read_write_test.cc               |   2 +-
 cpp/src/arrow/json/converter.cc                    |   2 +
 cpp/src/arrow/json/parser_test.cc                  |   4 +-
 cpp/src/arrow/json/reader_test.cc                  |   8 +-
 cpp/src/arrow/pretty_print_test.cc                 |   5 +-
 cpp/src/arrow/scalar.cc                            |  22 +
 cpp/src/arrow/scalar.h                             |   8 +
 cpp/src/arrow/scalar_test.cc                       |   2 +-
 cpp/src/arrow/testing/gtest_util.h                 |   5 +-
 cpp/src/arrow/testing/random.cc                    |  64 +-
 cpp/src/arrow/testing/random.h                     |  30 +
 cpp/src/arrow/testing/random_test.cc               |  20 +-
 cpp/src/arrow/type.cc                              | 115 ++-
 cpp/src/arrow/type.h                               |  70 ++
 cpp/src/arrow/type_benchmark.cc                    |   4 +-
 cpp/src/arrow/type_fwd.h                           |  36 +
 cpp/src/arrow/type_test.cc                         |  60 +-
 cpp/src/arrow/type_traits.cc                       |  12 +-
 cpp/src/arrow/type_traits.h                        |  40 +
 cpp/src/arrow/util/align_util_test.cc              |  17 +-
 cpp/src/arrow/util/basic_decimal.cc                | 337 ++++++++
 cpp/src/arrow/util/basic_decimal.h                 | 391 +++++++++
 cpp/src/arrow/util/bit_util.h                      |   1 -
 cpp/src/arrow/util/decimal.cc                      | 393 +++++++++
 cpp/src/arrow/util/decimal.h                       | 237 ++++++
 cpp/src/arrow/util/decimal_internal.h              | 104 +++
 cpp/src/arrow/util/decimal_test.cc                 | 876 +++++++++++++--------
 cpp/src/arrow/util/formatting.h                    |  12 +
 cpp/src/arrow/util/formatting_util_test.cc         |  14 +-
 cpp/src/arrow/util/macros.h                        |   3 -
 cpp/src/arrow/util/prefetch.h                      |  31 +
 cpp/src/arrow/visitor.cc                           |   6 +
 cpp/src/arrow/visitor.h                            |   6 +
 cpp/src/arrow/visitor_generate.h                   |   2 +
 cpp/src/gandiva/decimal_type_util.h                |   2 +-
 cpp/src/gandiva/expr_validator.cc                  |   2 +-
 cpp/src/gandiva/expression_registry.cc             |   2 +-
 cpp/src/gandiva/function_registry_common.h         |   2 +-
 cpp/src/gandiva/llvm_generator.cc                  |   2 +-
 cpp/src/gandiva/tests/decimal_test.cc              |  38 +-
 cpp/src/gandiva/tests/in_expr_test.cc              |   2 +-
 cpp/src/gandiva/tests/projector_test.cc            |   8 +-
 cpp/src/gandiva/tree_expr_builder.cc               |   4 +-
 cpp/src/parquet/arrow/arrow_reader_writer_test.cc  |  23 +-
 cpp/src/parquet/arrow/arrow_schema_test.cc         |  16 +-
 cpp/src/parquet/arrow/test_util.h                  |  20 +-
 .../Apache.Arrow.Flight.AspNetCore.csproj          |   2 +-
 .../Arrays/ArrowArrayBuilderFactory.cs             |   4 +
 .../src/Apache.Arrow/Arrays/ArrowArrayFactory.cs   |   4 +
 csharp/src/Apache.Arrow/Arrays/Decimal32Array.cs   | 182 +++++
 csharp/src/Apache.Arrow/Arrays/Decimal64Array.cs   | 182 +++++
 csharp/src/Apache.Arrow/C/CArrowSchemaExporter.cs  |   4 +
 csharp/src/Apache.Arrow/C/CArrowSchemaImporter.cs  |  18 +-
 csharp/src/Apache.Arrow/Ipc/ArrowStreamWriter.cs   |   6 +
 .../Apache.Arrow/Ipc/ArrowTypeFlatbufferBuilder.cs |  16 +
 csharp/src/Apache.Arrow/Ipc/MessageSerializer.cs   |   4 +
 csharp/src/Apache.Arrow/RecordBatch.Builder.cs     |   6 +
 csharp/src/Apache.Arrow/Types/Decimal32Type.cs     |  35 +
 csharp/src/Apache.Arrow/Types/Decimal64Type.cs     |  35 +
 csharp/src/Apache.Arrow/Types/IArrowType.cs        |   2 +
 .../Apache.Arrow.Compression.Tests.csproj          |   2 +-
 .../Apache.Arrow.Flight.Sql.Tests.csproj           |   2 +-
 .../Apache.Arrow.Flight.Tests.csproj               |   2 +-
 .../test/Apache.Arrow.IntegrationTest/JsonFile.cs  |  18 +-
 .../Apache.Arrow.Tests/Apache.Arrow.Tests.csproj   |   2 +-
 .../ArrowArrayConcatenatorTests.cs                 |   9 +-
 .../test/Apache.Arrow.Tests/ArrowReaderVerifier.cs |   4 +
 .../CDataInterfacePythonTests.cs                   |   4 +-
 .../test/Apache.Arrow.Tests/Decimal32ArrayTests.cs | 337 ++++++++
 .../test/Apache.Arrow.Tests/Decimal64ArrayTests.cs | 337 ++++++++
 csharp/test/Apache.Arrow.Tests/TableTests.cs       |   4 +-
 csharp/test/Apache.Arrow.Tests/TestData.cs         |  29 +
 dev/archery/archery/integration/datagen.py         |  36 +
 dev/release/verify-release-candidate.sh            |   8 +-
 dev/tasks/conda-recipes/azure.win.yml              |   2 +-
 dev/tasks/tasks.yml                                |   8 +
 docs/source/format/Columnar.rst                    |   2 +
 docs/source/format/Glossary.rst                    |   2 +
 docs/source/format/Intro.rst                       | 512 ++++++++++++
 docs/source/format/images/all-diagrams.svg         |  17 +
 docs/source/format/images/bool-diagram.svg         |  10 +
 docs/source/format/images/columnar-diagram_1.svg   |  21 +
 docs/source/format/images/columnar-diagram_2.svg   |  21 +
 docs/source/format/images/columnar-diagram_3.svg   |  21 +
 docs/source/format/images/dense-union-diagram.svg  |  21 +
 docs/source/format/images/dictionary-diagram.svg   |  21 +
 docs/source/format/images/fixed-list-diagram.svg   |  21 +
 docs/source/format/images/fixed-string-diagram.svg |  21 +
 docs/source/format/images/map-diagram.svg          |  21 +
 docs/source/format/images/primitive-diagram.svg    |  21 +
 docs/source/format/images/ree-diagram.svg          |  13 +
 docs/source/format/images/sparse-union-diagram.svg |  21 +
 docs/source/format/images/struct-diagram.svg       |  21 +
 docs/source/format/images/var-list-diagram.svg     |  21 +
 .../source/format/images/var-list-view-diagram.svg |  21 +
 docs/source/format/images/var-string-diagram.svg   |  21 +
 .../format/images/var-string-view-diagram.svg      |  21 +
 docs/source/format/index.rst                       |   5 +-
 docs/source/status.rst                             |   4 +
 java/pom.xml                                       |   4 +-
 python/CMakeLists.txt                              |   2 +-
 python/examples/minimal_build/build_conda.sh       |   2 +-
 python/pyarrow/src/arrow/python/arrow_to_pandas.cc |   8 +
 python/pyarrow/src/arrow/python/udf.cc             |   2 +
 python/pyarrow/tests/conftest.py                   |   4 +-
 python/pyarrow/tests/parquet/test_dataset.py       |   4 +
 python/pyarrow/tests/test_dataset.py               |   8 +-
 python/pyarrow/tests/test_fs.py                    |   5 +-
 python/pyarrow/tests/util.py                       |  17 +-
 python/requirements-test.txt                       |   3 +-
 python/requirements-wheel-test.txt                 |   2 +-
 175 files changed, 5707 insertions(+), 868 deletions(-)
 create mode 100644 cpp/src/arrow/util/prefetch.h
 create mode 100644 csharp/src/Apache.Arrow/Arrays/Decimal32Array.cs
 create mode 100644 csharp/src/Apache.Arrow/Arrays/Decimal64Array.cs
 create mode 100644 csharp/src/Apache.Arrow/Types/Decimal32Type.cs
 create mode 100644 csharp/src/Apache.Arrow/Types/Decimal64Type.cs
 create mode 100644 csharp/test/Apache.Arrow.Tests/Decimal32ArrayTests.cs
 create mode 100644 csharp/test/Apache.Arrow.Tests/Decimal64ArrayTests.cs
 create mode 100644 docs/source/format/Intro.rst
 create mode 100644 docs/source/format/images/all-diagrams.svg
 create mode 100644 docs/source/format/images/bool-diagram.svg
 create mode 100644 docs/source/format/images/columnar-diagram_1.svg
 create mode 100644 docs/source/format/images/columnar-diagram_2.svg
 create mode 100644 docs/source/format/images/columnar-diagram_3.svg
 create mode 100644 docs/source/format/images/dense-union-diagram.svg
 create mode 100644 docs/source/format/images/dictionary-diagram.svg
 create mode 100644 docs/source/format/images/fixed-list-diagram.svg
 create mode 100644 docs/source/format/images/fixed-string-diagram.svg
 create mode 100644 docs/source/format/images/map-diagram.svg
 create mode 100644 docs/source/format/images/primitive-diagram.svg
 create mode 100644 docs/source/format/images/ree-diagram.svg
 create mode 100644 docs/source/format/images/sparse-union-diagram.svg
 create mode 100644 docs/source/format/images/struct-diagram.svg
 create mode 100644 docs/source/format/images/var-list-diagram.svg
 create mode 100644 docs/source/format/images/var-list-view-diagram.svg
 create mode 100644 docs/source/format/images/var-string-diagram.svg
 create mode 100644 docs/source/format/images/var-string-view-diagram.svg

Reply via email to