Skip to content

fix(deps): update rust crate arrow to v58#13

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/arrow-58.x
Open

fix(deps): update rust crate arrow to v58#13
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/arrow-58.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 24, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
arrow dependencies major 5358

Release Notes

apache/arrow-rs (arrow)

v58.3.0

Compare Source

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #​9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #​9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #​9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #​9870 [arrow]
  • Configurable data page v2 compression threshold #​9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #​9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #​9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #​9793 [parquet]

Documentation updates:

Closed issues:

  • GenericByteDictionaryBuilder::with_capacity does not pre-size dedup HashTable #​9907 [arrow]
  • [arrow-buffer] Integer overflow in repeat_slice_n_times leads to undefined behavior #​9904 [arrow]
  • [arrow-buffer] Integer overflow in BitChunks::new leads to undefined behavior #​9903 [arrow]
  • [arrow-row] Integer overflow in Rows::row index handling leads to undefined behavior #​9901 [arrow]
  • [arrow-data] Integer overflow in ArrayData validation leads to undefined behavior #​9900 [arrow]
  • [arrow-data] Integer overflow in ArrayData::slice leads to undefined behavior #​9899 [arrow]
  • [arrow-array] Integer overflow in FixedSizeBinaryArray::value leads to undefined behavior #​9898 [arrow]
  • [arrow-buffer] Integer overflow in BufferBuilder::reserve leads to undefined behavior #​9897 [arrow]
  • arrow-csv: integer overflow panic in Reader::records::flush #​9885 [arrow]
  • Make an API to help with the pattern of 'replaces the values of the REE array' #​9854 [arrow]
  • Parquet reader rejects canonical UNKNOWN logical type on BOOLEAN physical columns #​9844 [parquet]
  • ColumnIndex length mismatch can cause panic during decoding in Parquet #​9832 [parquet]
  • Bug converting json to fixed list of zero size #​9780 [arrow]

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v58.2.0

Compare Source

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #​9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #​9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #​9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #​9870 [arrow]
  • Configurable data page v2 compression threshold #​9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #​9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #​9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #​9793 [parquet]

Documentation updates:

Closed issues:

  • GenericByteDictionaryBuilder::with_capacity does not pre-size dedup HashTable #​9907 [arrow]
  • [arrow-buffer] Integer overflow in repeat_slice_n_times leads to undefined behavior #​9904 [arrow]
  • [arrow-buffer] Integer overflow in BitChunks::new leads to undefined behavior #​9903 [arrow]
  • [arrow-row] Integer overflow in Rows::row index handling leads to undefined behavior #​9901 [arrow]
  • [arrow-data] Integer overflow in ArrayData validation leads to undefined behavior #​9900 [arrow]
  • [arrow-data] Integer overflow in ArrayData::slice leads to undefined behavior #​9899 [arrow]
  • [arrow-array] Integer overflow in FixedSizeBinaryArray::value leads to undefined behavior #​9898 [arrow]
  • [arrow-buffer] Integer overflow in BufferBuilder::reserve leads to undefined behavior #​9897 [arrow]
  • arrow-csv: integer overflow panic in Reader::records::flush #​9885 [arrow]
  • Make an API to help with the pattern of 'replaces the values of the REE array' #​9854 [arrow]
  • Parquet reader rejects canonical UNKNOWN logical type on BOOLEAN physical columns #​9844 [parquet]
  • ColumnIndex length mismatch can cause panic during decoding in Parquet #​9832 [parquet]
  • Bug converting json to fixed list of zero size #​9780 [arrow]

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v58.1.0: arrow 58.1.0

Compare Source

Changelog
58.1.0 (2026-03-20)

Full Changelog

Implemented enhancements:

  • Reuse compression dict lz4_block #​9566
  • [Variant] Add variant_to_arrow Struct type support #​9529
  • [Variant] Add unshred_variant support for Binary and LargeBinary types #​9526
  • [Variant] Add shred_variant support for LargeUtf8 and LargeBinary types #​9525
  • [Variant] variant_get tests clean up #​9517
  • parquet_variant: Support LargeUtf8 typed value in unshred_variant #​9513
  • parquet-variant: Support string view typed value in unshred_variant #​9512
  • Deprecate ArrowTimestampType::make_value in favor of from_naive_datetime #​9490 [arrow]
  • Followup for support ['fieldName'] in VariantPath #​9478
  • Speedup DELTA_BINARY_PACKED decoding when bitwidth is 0 #​9476 [parquet]
  • Support CSV files encoded with charsets other than UTF-8 #​9465 [arrow]
  • Expose Avro writer schema when building the reader #​9460 [arrow]
  • Python: avoid importing pyarrow classes ever time #​9438
  • Add append_nulls to MapBuilder #​9431 [arrow]
  • Add append_non_nulls to StructBuilder #​9429 [arrow]
  • Add append_value_n to GenericByteBuilder #​9425 [arrow]
  • Optimize from_bitwise_binary_op #​9378 [arrow]
  • Configurable Arrow representation of UTC timestamps for Avro reader #​9279 [arrow]

Fixed bugs:

  • MutableArrayData::extend does not copy child values for ListView arrays #​9561 [arrow]
  • ListView interleave bug #​9559 [arrow]
  • Flight encoding panics with "no dict id for field" with nested dict arrays #​9555 [arrow] [arrow-flight]
  • "DeltaBitPackDecoder only supports Int32Type and Int64Type" but unsigned types are supported too #​9551 [parquet]
  • Potential overflow when calling util::bit_mask::set_bits (soundness issue) #​9543 [arrow]
  • handle Null type in try_merge for Struct, List, LargeList, and Union #​9523 [arrow]
  • Invalid offset in sparse column chunk data for multiple predicates #​9516 [parquet]
  • debug_assert_eq! in BatchCoalescer panics in debug mode when batch_size < 4 #​9506 [arrow]
  • Parquet Statistics::null_count_opt wrongly returns Some(0) when stats are missing #​9451 [parquet]
  • Error "Not all children array length are the same!" when decoding rows spanning across page boundaries in parquet file when using RowSelection #​9370 [parquet]
  • Avro schema resolution not properly supported for complex types #​9336 [arrow]

Documentation updates:

Performance improvements:

Closed issues:

  • Duplicate macro definition: partially_shredded_variant_array_gen #​9492
  • Enable LargeList / ListView / LargeListView for VariantArray::try_new #​9455
  • Support variables/expressions in record_batch! macro #​9245 [arrow]

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

v58.0.0: arrow 58.0.0

Compare Source

Changelog
58.0.0 (2026-02-19)

Full Changelog

Breaking changes:

Implemented enhancements:

  • Avoid allocating a Vec in StructBuilder #​9427
  • Zstd context reuse #​9401
  • Optimize from_bitwise_unary_op #​9364
  • Support RunEndEncoded in ord comparator #​9360
  • Support RunEndEncoded arrays in arrow-json #​9359
  • Support BinaryView in bit_length kernel #​9351
  • Remove support for List types in bit_length kernel #​9349
  • Support roundtrip ListView in parquet arrow writer #​9344
  • Support ListView in length kernel #​9343
  • Support ListView in sort kernel #​9341
  • Add some way to create a Timestamp from a DateTime #​9337
  • Introduce DataType::is_list and DataType::IsBinary #​9326
  • Performance of creating all null dictionary array can be improved #​9321
  • [arrow-avro] Add missing Arrow DataType support with avro_custom_types round-trip + non-custom fallbacks #​9290

Fixed bugs:

  • ArrowArrayStreamReader errors on zero-column record batches #​9394
  • Regression on main (58): Parquet argument error: Parquet error: Required field type_ is missing #​9315 [parquet]

Documentation updates:

Performance improvements:

  • Replace ArrayData with direct Array construction #​9338 [arrow] (liamzwbao)
  • Remove some unsafe and allocations when creating PrimitiveArrays from Vec and from_trusted_len_iter #​9299 [arrow] (alamb)
  • parquet: rle skip decode loop when batch contains all max levels (aka no nulls) #​9258 [parquet] (lyang24)
  • Improve parquet BinaryView / StringView decoder performance (up to -35%) #​9236 [parquet] (Dandandan)
  • Avoid a clone when creating BooleanArray from ArrayData #​9159 [arrow] (alamb)
  • Avoid overallocating arrays in coalesce primitives / views #​9132 [arrow] (Dandandan)
  • perf: Avoid ArrayData allocation in PrimitiveArray::reinterpret_cast #​9129 [arrow] (alamb)
  • [Parquet] perf: Create StructArrays directly rather than via ArrayData (1% improvement) #​9120 [parquet] [arrow] (alamb)
  • Avoid clones in make_array for StructArray and GenericByteViewArray #​9114 [arrow] (alamb)
  • perf: optimize hex decoding in json (1.8x faster in binary-heavy) #​9091 [arrow] (Weijun-H)
  • Speed up binary kernels (30% faster and and or), add BooleanBuffer::from_bitwise_binary_op #​9090 [arrow] (alamb)
  • perf: improve field indexing in JSON StructArrayDecoder (1.7x speed up) #​9086 [arrow] (Weijun-H)
  • bench: added to row_format benchmark co

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/arrow-58.x branch from 0f5bd33 to e95cb35 Compare May 2, 2026 15:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants