This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/nuget/csharp/xunit-2.5.0 in repository https://gitbox.apache.org/repos/asf/arrow.git
discard 2e4d390903 MINOR: [C#] Bump xunit from 2.4.0 to 2.5.0 in /csharp add 71329ce33a GH-37042: [MATLAB] Implement Feather V1 Writer using new MATLAB Interface APIs (#37043) add 152be67100 GH-37041: [MATLAB] Implement Feather V1 Reader using new MATLAB Interface APIs (#37044) add f549bf52d5 MINOR: [C#] Bump xunit.runner.visualstudio from 2.4.0 to 2.5.0 in /csharp (#36728) add e0d6dc50d1 MINOR: [C#] Bump xunit from 2.4.0 to 2.5.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 (2e4d390903) \ N -- N -- N refs/heads/dependabot/nuget/csharp/xunit-2.5.0 (e0d6dc50d1) 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: .../Apache.Arrow.Compression.Tests.csproj | 2 +- .../Apache.Arrow.Flight.Tests.csproj | 2 +- .../Apache.Arrow.Tests/Apache.Arrow.Tests.csproj | 2 +- matlab/src/cpp/arrow/matlab/error/error.h | 10 +++ .../cpp/arrow/matlab/io/feather/proxy/reader.cc | 98 ++++++++++++++++++++++ .../string_array.h => io/feather/proxy/reader.h} | 19 +++-- .../cpp/arrow/matlab/io/feather/proxy/writer.cc | 90 ++++++++++++++++++++ .../boolean_array.h => io/feather/proxy/writer.h} | 22 +++-- matlab/src/cpp/arrow/matlab/proxy/factory.cc | 4 + .../cpp/arrow/matlab/tabular/proxy/record_batch.cc | 4 + .../cpp/arrow/matlab/tabular/proxy/record_batch.h | 2 + .../Type.m => +internal/+io/+feather/Reader.m} | 42 +++++----- .../Type.m => +internal/+io/+feather/Writer.m} | 40 ++++----- matlab/src/matlab/+arrow/+tabular/RecordBatch.m | 2 +- matlab/test/arrow/io/feather/tRoundTrip.m | 57 +++++++++++++ matlab/tools/cmake/BuildMatlabArrowInterface.cmake | 4 +- 16 files changed, 334 insertions(+), 66 deletions(-) create mode 100644 matlab/src/cpp/arrow/matlab/io/feather/proxy/reader.cc copy matlab/src/cpp/arrow/matlab/{array/proxy/string_array.h => io/feather/proxy/reader.h} (73%) create mode 100644 matlab/src/cpp/arrow/matlab/io/feather/proxy/writer.cc copy matlab/src/cpp/arrow/matlab/{array/proxy/boolean_array.h => io/feather/proxy/writer.h} (66%) copy matlab/src/matlab/+arrow/{+type/Type.m => +internal/+io/+feather/Reader.m} (53%) copy matlab/src/matlab/+arrow/{+type/Type.m => +internal/+io/+feather/Writer.m} (55%) create mode 100644 matlab/test/arrow/io/feather/tRoundTrip.m