You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2023/06/22 00:29:42 UTC

[arrow] branch dependabot/github_actions/actions/setup-go-4 updated (f286ba61dd -> 0557f9c938)

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

github-bot pushed a change to branch dependabot/github_actions/actions/setup-go-4
in repository https://gitbox.apache.org/repos/asf/arrow.git


 discard f286ba61dd MINOR: [CI]: Bump actions/setup-go from 3 to 4
     add 65d603aeec GH-35906: [Docs] Enable building the documentation without having pyarrow installed (#35907)
     add 732395261c GH-35838: [C++] Add backpressure test for asof join node (#35874)
     add b451b34a26 GH-35935: [C++] Clean interruption of a Acero plan with `use_threads=false` (#35953)
     add 5854d04053 GH-36198: [Go] Remove deprecated equality checks (#36169)
     add 5a491a77cc GH-36181: [Go] add methods `AppendNulls` and `AppendEmptyValues` for all builders (#36145)
     add ea4f03ac16 GH-36209: [Java] Upgrade Netty due to security vulnerability (#36211)
     add d7b3d4f9bb GH-36141: [Go] Support large and fixed types in csv (#36142)
     add 7e2460fb20 MINOR: [CI] Bump actions/github-script from 3 to 6 (#36196)
     add 95f1ad3c03 MINOR: [CI] Bump actions/setup-dotnet from 2 to 3 (#36197)
     add 8d021c401f GH-34788: [Python][Packaging][CI] Drop Python 3.7 support (#36061)
     add cefbdd7488 GH-36207: [MATLAB] Add MATLAB autosave files (`.asv`) to the `.gitignore` (#36208)
     add 21a4b28d92 MINOR: [CI] Remove needless ":" from Dependabot PR subject (#36216)
     add 2329a7b8b4 GH-36224: [CI] Update rest api invocations in GitHub scripts (#36225)
     add 4587909be6 GH-36220: [CI] Run the "Docker Push" step only on the main branch (#36221)
     add 03bd17dce5 MINOR: [CI] Checkout from main in dev_pr workflow (#36226)
     add 5a58f7572b GH-36218:  [CI][Go] Run benchmark steps only on the main branch (#36219)
     add 0557f9c938 MINOR: [CI]: Bump actions/setup-go from 3 to 4

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   (f286ba61dd)
            \
             N -- N -- N   refs/heads/dependabot/github_actions/actions/setup-go-4 (0557f9c938)

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/dependabot.yml                             |   2 +-
 .github/workflows/comment_bot.yml                  |   4 +-
 .github/workflows/cpp.yml                          |   6 +-
 .github/workflows/csharp.yml                       |   6 +-
 .github/workflows/dev.yml                          |   8 +-
 .github/workflows/dev_pr.yml                       |  10 +-
 .github/workflows/dev_pr/helpers.js                |   4 +-
 .github/workflows/dev_pr/issue_check.js            |  16 +-
 .github/workflows/dev_pr/link.js                   |   6 +-
 .github/workflows/dev_pr/title_check.js            |   4 +-
 .github/workflows/docs.yml                         |   6 +-
 .github/workflows/go.yml                           |  36 +++--
 .github/workflows/integration.yml                  |   6 +-
 .github/workflows/java.yml                         |   6 +-
 .github/workflows/java_jni.yml                     |  12 +-
 .github/workflows/js.yml                           |   6 +-
 .github/workflows/python.yml                       |  42 ++---
 .github/workflows/r.yml                            |  12 +-
 .github/workflows/ruby.yml                         |   6 +-
 .github/workflows/swift.yml                        |  58 +++----
 ci/docker/conda-python.dockerfile                  |   1 -
 .../python-wheel-windows-test-vs2017.dockerfile    |   5 +-
 ci/docker/python-wheel-windows-vs2017.dockerfile   |   5 +-
 ci/scripts/install_python.sh                       |   3 +-
 ci/scripts/r_install_system_dependencies.sh        |   2 +-
 cpp/src/arrow/acero/asof_join_node.cc              |  13 +-
 cpp/src/arrow/acero/asof_join_node_test.cc         | 172 ++++++++++++++++----
 cpp/src/arrow/acero/exec_plan.cc                   |  38 +++--
 cpp/src/arrow/acero/exec_plan.h                    |   4 +
 cpp/src/arrow/acero/plan_test.cc                   |  17 ++
 cpp/src/arrow/acero/test_nodes.cc                  | 157 ++++++++++++++++++
 cpp/src/arrow/acero/test_nodes.h                   |  27 ++++
 dev/archery/setup.py                               |   6 +-
 dev/release/verify-release-candidate-wheels.bat    |   5 +-
 dev/release/verify-release-candidate.sh            |   4 +-
 dev/tasks/tasks.yml                                |  11 +-
 docker-compose.yml                                 |   2 +-
 docs/source/conf.py                                | 109 +++++++------
 .../developers/continuous_integration/archery.rst  |   2 +-
 .../developers/continuous_integration/crossbow.rst |   2 +-
 docs/source/developers/documentation.rst           |   8 +-
 docs/source/python/install.rst                     |   2 +-
 go/arrow/array/binarybuilder.go                    |  12 ++
 go/arrow/array/booleanbuilder.go                   |  12 ++
 go/arrow/array/builder.go                          |   6 +
 go/arrow/array/compare.go                          |  38 +----
 go/arrow/array/compare_test.go                     |  32 ++--
 go/arrow/array/concat_test.go                      |   4 +-
 go/arrow/array/decimal128.go                       |  12 ++
 go/arrow/array/decimal256.go                       |  12 ++
 go/arrow/array/dictionary.go                       |  16 +-
 go/arrow/array/dictionary_test.go                  | 102 ++++++------
 go/arrow/array/encoded.go                          |  14 ++
 go/arrow/array/fixed_size_list.go                  |  13 ++
 go/arrow/array/fixedsize_binarybuilder.go          |  12 ++
 go/arrow/array/float16_builder.go                  |  12 ++
 go/arrow/array/interval.go                         |  36 +++++
 go/arrow/array/list.go                             |  12 ++
 go/arrow/array/map.go                              |  13 ++
 go/arrow/array/null.go                             |   8 +
 go/arrow/array/null_test.go                        |  12 +-
 go/arrow/array/numericbuilder.gen.go               | 180 +++++++++++++++++++++
 go/arrow/array/numericbuilder.gen.go.tmpl          |  12 ++
 go/arrow/array/struct.go                           |  12 ++
 go/arrow/array/timestamp.go                        |  12 ++
 go/arrow/array/union.go                            |   4 -
 go/arrow/array/util_test.go                        |  18 +--
 go/arrow/cdata/cdata_test.go                       |   6 +-
 go/arrow/csv/common.go                             |   6 +-
 go/arrow/csv/reader.go                             | 134 ++++++++++++++-
 go/arrow/csv/reader_test.go                        |  22 ++-
 go/arrow/csv/testdata/header.csv                   |   8 +-
 go/arrow/csv/testdata/types.csv                    |   8 +-
 go/arrow/csv/transformer.go                        |  65 ++++++++
 go/arrow/csv/writer_test.go                        |  66 +++++---
 .../io/netty/buffer/PooledByteBufAllocatorL.java   |   2 +-
 java/pom.xml                                       |   6 +-
 matlab/.gitignore                                  |   2 +
 python/asv.conf.json                               |   2 +-
 python/requirements-test.txt                       |   1 -
 python/requirements-wheel-test.txt                 |   3 +-
 python/setup.py                                    |   3 +-
 r/tests/testthat/test-python.R                     |   4 +-
 83 files changed, 1419 insertions(+), 386 deletions(-)