This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/maven/dep.junit.jupiter.version-6.1.2
in repository https://gitbox.apache.org/repos/asf/arrow-java.git
discard 827ddce38 MINOR: Bump dep.junit.jupiter.version from 6.1.1 to 6.1.2
add 21b6a0515 MINOR: [CI] Bump actions/setup-python from 6 to 7 (#1235)
add 06170242b GH-1244: Move integration tests to separate workflow (#1245)
add 85d7ef30e GH-1239: Fix memory leak when C Data import hits allocator
limit mid-array (#1240)
add fa20039f3 GH-1241: Bump vcpkg version to stay in sync with
apache/arrow (#1260)
add f43c4b865 GH-1242: fix macOS and Windows RC CI (#1264)
add d2dee94c7 MINOR: Bump dep.junit.jupiter.version from 6.1.1 to 6.1.3
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 (827ddce38)
\
N -- N -- N
refs/heads/dependabot/maven/dep.junit.jupiter.version-6.1.2 (d2dee94c7)
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/dev.yml | 2 +-
.github/workflows/integration.yml | 127 +++++++++++++++++++
.github/workflows/rc.yml | 17 +--
.github/workflows/test.yml | 69 ----------
CMakeLists.txt | 4 +
.../apache/arrow/c/ReferenceCountedArrowArray.java | 19 +--
.../org/apache/arrow/c/ImportOutOfMemoryTest.java | 139 +++++++++++++++++++++
ci/scripts/jni_macos_build.sh | 9 ++
ci/scripts/jni_windows_build.sh | 2 +
gandiva/CMakeLists.txt | 4 +
pom.xml | 2 +-
12 files changed, 304 insertions(+), 92 deletions(-)
create mode 100644 .github/workflows/integration.yml
create mode 100644
c/src/test/java/org/apache/arrow/c/ImportOutOfMemoryTest.java