This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/nuget/csharp/Grpc.Net.Client-2.58.0
in repository https://gitbox.apache.org/repos/asf/arrow.git
omit 433c759368 MINOR: [C#] Bump Grpc.Net.Client from 2.57.0 to 2.58.0 in
/csharp
add 6f8f34bd34 GH-38254: [Java] Add reusable buffer getters to char/binary
vectors (#38266)
add e1f11ba629 MINOR: [CI] Bump actions/setup-node from 3 to 4 (#38406)
add 22d8e08f69 MINOR: [C#] Bump Grpc.AspNetCore from 2.57.0 to 2.58.0 in
/csharp (#38407)
add ce6c2c16db MINOR: [C#] Bump Grpc.AspNetCore.Server from 2.57.0 to
2.58.0 in /csharp (#38408)
add 6e321a79b1 MINOR: [C#] Bump Grpc.Tools from 2.58.0 to 2.59.0 in
/csharp (#38409)
add 7661c399c3 MINOR: [C#] Bump xunit from 2.5.2 to 2.5.3 in /csharp
(#38410)
add 4257a77d82 MINOR: [C#] Bump Grpc.Net.Client from 2.57.0 to 2.58.0 in
/csharp
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 (433c759368)
\
N -- N -- N
refs/heads/dependabot/nuget/csharp/Grpc.Net.Client-2.58.0 (4257a77d82)
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/js.yml | 4 +-
.../Apache.Arrow.Flight.AspNetCore.csproj | 2 +-
.../Apache.Arrow.Flight.Sql.csproj | 2 +-
.../Apache.Arrow.Flight/Apache.Arrow.Flight.csproj | 2 +-
.../Apache.Arrow.Compression.Tests.csproj | 2 +-
.../Apache.Arrow.Flight.Sql.Tests.csproj | 2 +-
.../Apache.Arrow.Flight.TestWeb.csproj | 2 +-
.../Apache.Arrow.Flight.Tests.csproj | 2 +-
.../Apache.Arrow.Tests/Apache.Arrow.Tests.csproj | 2 +-
.../text/ArrowFlightJdbcVarCharVectorAccessor.java | 2 +-
...torClosedException.java => ReusableBuffer.java} | 30 +++--
.../arrow/vector/BaseLargeVariableWidthVector.java | 33 +++---
.../arrow/vector/BaseVariableWidthVector.java | 27 +++--
.../apache/arrow/vector/FixedSizeBinaryVector.java | 13 +++
.../apache/arrow/vector/LargeVarBinaryVector.java | 23 +++-
.../apache/arrow/vector/LargeVarCharVector.java | 39 +++++--
.../org/apache/arrow/vector/VarBinaryVector.java | 19 ++-
.../org/apache/arrow/vector/VarCharVector.java | 33 ++++--
.../arrow/vector/util/ReusableByteArray.java | 129 +++++++++++++++++++++
.../java/org/apache/arrow/vector/util/Text.java | 78 +------------
.../arrow/vector/TestFixedSizeBinaryVector.java | 16 +++
.../arrow/vector/TestLargeVarBinaryVector.java | 74 ++++++++----
.../arrow/vector/TestLargeVarCharVector.java | 21 ++++
.../org/apache/arrow/vector/TestValueVector.java | 44 +++++++
.../arrow/vector/util/TestReusableByteArray.java | 97 ++++++++++++++++
25 files changed, 524 insertions(+), 174 deletions(-)
copy
java/memory/memory-core/src/main/java/org/apache/arrow/memory/{AllocatorClosedException.java
=> ReusableBuffer.java} (54%)
create mode 100644
java/vector/src/main/java/org/apache/arrow/vector/util/ReusableByteArray.java
create mode 100644
java/vector/src/test/java/org/apache/arrow/vector/util/TestReusableByteArray.java