Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Aug 26, 2025

Bumps the arrow-parquet group with 7 updates:

Package From To
arrow 55.1.0 55.2.0
arrow-buffer 55.1.0 55.2.0
arrow-flight 55.1.0 55.2.0
arrow-ipc 55.1.0 55.2.0
arrow-ord 55.1.0 55.2.0
arrow-schema 55.1.0 55.2.0
parquet 55.1.0 55.2.0

Updates arrow from 55.1.0 to 55.2.0

Release notes

Sourced from arrow's releases.

arrow 55.2.0

Changelog

55.2.0 (2025-06-22)

Full Changelog

Implemented enhancements:

  • Do not populate nulls for NullArray for MutableArrayData #7725
  • Implement PartialEq for RunArray #7691
  • interleave_views is really slow #7688 [arrow]
  • Add min max aggregates for FixedSizeBinary #7674 [arrow]
  • Deliver pyarrow as a standalone crate #7668 [arrow]
  • [Variant] Implement VariantObject::field and VariantObject::fields #7665 [parquet]
  • [Variant] Implement read support for remaining primitive types #7630 [parquet]
  • Fast and ergonomic method to add metadata to a RecordBatch #7628 [arrow]
  • Add efficient way to change the keys of string dictionary builder #7610 [arrow]
  • Support add_nulls on additional builder types #7605 [arrow]
  • Add into_inner for AsyncArrowWriter #7603 [parquet]
  • Optimize PrimitiveBuilder::append_trusted_len_iter #7591 [arrow]
  • Benchmark for filter+concat and take+concat into even sized record batches #7589 [arrow]
  • max_statistics_truncate_length is ignored when writing statistics to data page headers #7579 [parquet]
  • Feature Request: Encoding in parquet-rewrite #7575 [parquet]
  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496

... (truncated)

Changelog

Sourced from arrow's changelog.

55.2.0 (2025-06-22)

  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496
  • Arithmetic kernels can be safer and faster #7494 [arrow]
  • Speedup filter_bytes by precalculating capacity #7465 [arrow]
  • [Variant]: Rust API to Create Variant Values #7424 [parquet] [arrow]
  • [Variant] Rust API to Read Variant Values #7423 [arrow]
  • Release arrow-rs / parquet Minor version 55.1.0 (May 2025) #7393 [parquet]
  • Support create_random_array for Decimal data types #7343 [arrow]
  • Truncate Parquet page data page statistics #7555 [parquet] (etseidl)

Fixed bugs:

  • In arrow_json, Decoder::decode can panic if it encounters two high surrogates in a row. #7712
  • FlightSQL "GetDbSchemas" and "GetTables" schemas do not fully match the protocol #7637 [arrow] [arrow-flight]
  • Cannot read encrypted Parquet file if page index reading is enabled #7629 [parquet]
  • encoding_stats not present in Parquet generated by parquet-rewrite #7616 [parquet]
  • When writing parquet plaintext footer files footer_signing_key_metadata is not included, encryption alghoritm is always written in footer #7599 [parquet]
  • new_null_array panics when constructing a struct of a dictionary #7571
  • Parquet derive fails to build when Result is aliased #7547
  • Unable to read Dictionary(u8, FixedSizeBinary(_)) using datafusion. #7545 [parquet]
  • filter_record_batch panics with empty struct array. #7538 [arrow]
  • Panic in pretty_format function when displaying DurationSecondsArray with i64::MIN / i64::MAX #7533 [arrow]
  • Record API unable to parse TIME_MILLIS when encoded as INT32 #7510 [parquet]
  • The read_record_batch func of the RecordBatchDecoder does not respect the skip_validation property #7508 [arrow]
  • arrow-55.1.0 breaks filter_record_batch #7500
  • Files containing binary data with >=8_388_855 bytes per row written with arrow-rs can't be read with pyarrow #7489 [parquet]
  • [Bug] Ingestion with Arrow Flight Sql panic when the input stream is empty or fallible #7329 [arrow] [arrow-flight]
  • Ensure page encoding statistics are written to Parquet file #7643 [parquet] (etseidl)

Documentation updates:

Closed issues:

... (truncated)

Commits
  • 25114c5 [55_maintenance] Fix verify-release-candidate.sh by skipping arrow-pyarrow ...
  • df702cf Prepare for 55.2.0 release (#7722)
  • 2788762 fix JSON decoder error checking for UTF16 / surrogate parsing panic (#7721)
  • e54b72b fix: Do not add null buffer for NullArray in MutableArrayData (#7726)
  • 1ededfe [Variant] Introduce new type over &str for ShortString (#7718)
  • 7b374b9 arrow-array: Implement PartialEq for RunArray (#7727)
  • 469c7ee Define a "arrow-pyrarrow" crate to implement the "pyarrow" feature. (#7694)
  • fbaf7ce Support write to buffer api for SerializedFileWriter (#7714)
  • 1bed04c Optimize coalesce kernel for StringView (10-50% faster) (#7650)
  • 7276819 Split out variant code into several new sub-modules (#7717)
  • Additional commits viewable in compare view

Updates arrow-buffer from 55.1.0 to 55.2.0

Release notes

Sourced from arrow-buffer's releases.

arrow 55.2.0

Changelog

55.2.0 (2025-06-22)

Full Changelog

Implemented enhancements:

  • Do not populate nulls for NullArray for MutableArrayData #7725
  • Implement PartialEq for RunArray #7691
  • interleave_views is really slow #7688 [arrow]
  • Add min max aggregates for FixedSizeBinary #7674 [arrow]
  • Deliver pyarrow as a standalone crate #7668 [arrow]
  • [Variant] Implement VariantObject::field and VariantObject::fields #7665 [parquet]
  • [Variant] Implement read support for remaining primitive types #7630 [parquet]
  • Fast and ergonomic method to add metadata to a RecordBatch #7628 [arrow]
  • Add efficient way to change the keys of string dictionary builder #7610 [arrow]
  • Support add_nulls on additional builder types #7605 [arrow]
  • Add into_inner for AsyncArrowWriter #7603 [parquet]
  • Optimize PrimitiveBuilder::append_trusted_len_iter #7591 [arrow]
  • Benchmark for filter+concat and take+concat into even sized record batches #7589 [arrow]
  • max_statistics_truncate_length is ignored when writing statistics to data page headers #7579 [parquet]
  • Feature Request: Encoding in parquet-rewrite #7575 [parquet]
  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496

... (truncated)

Changelog

Sourced from arrow-buffer's changelog.

55.2.0 (2025-06-22)

  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496
  • Arithmetic kernels can be safer and faster #7494 [arrow]
  • Speedup filter_bytes by precalculating capacity #7465 [arrow]
  • [Variant]: Rust API to Create Variant Values #7424 [parquet] [arrow]
  • [Variant] Rust API to Read Variant Values #7423 [arrow]
  • Release arrow-rs / parquet Minor version 55.1.0 (May 2025) #7393 [parquet]
  • Support create_random_array for Decimal data types #7343 [arrow]
  • Truncate Parquet page data page statistics #7555 [parquet] (etseidl)

Fixed bugs:

  • In arrow_json, Decoder::decode can panic if it encounters two high surrogates in a row. #7712
  • FlightSQL "GetDbSchemas" and "GetTables" schemas do not fully match the protocol #7637 [arrow] [arrow-flight]
  • Cannot read encrypted Parquet file if page index reading is enabled #7629 [parquet]
  • encoding_stats not present in Parquet generated by parquet-rewrite #7616 [parquet]
  • When writing parquet plaintext footer files footer_signing_key_metadata is not included, encryption alghoritm is always written in footer #7599 [parquet]
  • new_null_array panics when constructing a struct of a dictionary #7571
  • Parquet derive fails to build when Result is aliased #7547
  • Unable to read Dictionary(u8, FixedSizeBinary(_)) using datafusion. #7545 [parquet]
  • filter_record_batch panics with empty struct array. #7538 [arrow]
  • Panic in pretty_format function when displaying DurationSecondsArray with i64::MIN / i64::MAX #7533 [arrow]
  • Record API unable to parse TIME_MILLIS when encoded as INT32 #7510 [parquet]
  • The read_record_batch func of the RecordBatchDecoder does not respect the skip_validation property #7508 [arrow]
  • arrow-55.1.0 breaks filter_record_batch #7500
  • Files containing binary data with >=8_388_855 bytes per row written with arrow-rs can't be read with pyarrow #7489 [parquet]
  • [Bug] Ingestion with Arrow Flight Sql panic when the input stream is empty or fallible #7329 [arrow] [arrow-flight]
  • Ensure page encoding statistics are written to Parquet file #7643 [parquet] (etseidl)

Documentation updates:

Closed issues:

... (truncated)

Commits
  • 25114c5 [55_maintenance] Fix verify-release-candidate.sh by skipping arrow-pyarrow ...
  • df702cf Prepare for 55.2.0 release (#7722)
  • 2788762 fix JSON decoder error checking for UTF16 / surrogate parsing panic (#7721)
  • e54b72b fix: Do not add null buffer for NullArray in MutableArrayData (#7726)
  • 1ededfe [Variant] Introduce new type over &str for ShortString (#7718)
  • 7b374b9 arrow-array: Implement PartialEq for RunArray (#7727)
  • 469c7ee Define a "arrow-pyrarrow" crate to implement the "pyarrow" feature. (#7694)
  • fbaf7ce Support write to buffer api for SerializedFileWriter (#7714)
  • 1bed04c Optimize coalesce kernel for StringView (10-50% faster) (#7650)
  • 7276819 Split out variant code into several new sub-modules (#7717)
  • Additional commits viewable in compare view

Updates arrow-flight from 55.1.0 to 55.2.0

Release notes

Sourced from arrow-flight's releases.

arrow 55.2.0

Changelog

55.2.0 (2025-06-22)

Full Changelog

Implemented enhancements:

  • Do not populate nulls for NullArray for MutableArrayData #7725
  • Implement PartialEq for RunArray #7691
  • interleave_views is really slow #7688 [arrow]
  • Add min max aggregates for FixedSizeBinary #7674 [arrow]
  • Deliver pyarrow as a standalone crate #7668 [arrow]
  • [Variant] Implement VariantObject::field and VariantObject::fields #7665 [parquet]
  • [Variant] Implement read support for remaining primitive types #7630 [parquet]
  • Fast and ergonomic method to add metadata to a RecordBatch #7628 [arrow]
  • Add efficient way to change the keys of string dictionary builder #7610 [arrow]
  • Support add_nulls on additional builder types #7605 [arrow]
  • Add into_inner for AsyncArrowWriter #7603 [parquet]
  • Optimize PrimitiveBuilder::append_trusted_len_iter #7591 [arrow]
  • Benchmark for filter+concat and take+concat into even sized record batches #7589 [arrow]
  • max_statistics_truncate_length is ignored when writing statistics to data page headers #7579 [parquet]
  • Feature Request: Encoding in parquet-rewrite #7575 [parquet]
  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496

... (truncated)

Changelog

Sourced from arrow-flight's changelog.

55.2.0 (2025-06-22)

  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496
  • Arithmetic kernels can be safer and faster #7494 [arrow]
  • Speedup filter_bytes by precalculating capacity #7465 [arrow]
  • [Variant]: Rust API to Create Variant Values #7424 [parquet] [arrow]
  • [Variant] Rust API to Read Variant Values #7423 [arrow]
  • Release arrow-rs / parquet Minor version 55.1.0 (May 2025) #7393 [parquet]
  • Support create_random_array for Decimal data types #7343 [arrow]
  • Truncate Parquet page data page statistics #7555 [parquet] (etseidl)

Fixed bugs:

  • In arrow_json, Decoder::decode can panic if it encounters two high surrogates in a row. #7712
  • FlightSQL "GetDbSchemas" and "GetTables" schemas do not fully match the protocol #7637 [arrow] [arrow-flight]
  • Cannot read encrypted Parquet file if page index reading is enabled #7629 [parquet]
  • encoding_stats not present in Parquet generated by parquet-rewrite #7616 [parquet]
  • When writing parquet plaintext footer files footer_signing_key_metadata is not included, encryption alghoritm is always written in footer #7599 [parquet]
  • new_null_array panics when constructing a struct of a dictionary #7571
  • Parquet derive fails to build when Result is aliased #7547
  • Unable to read Dictionary(u8, FixedSizeBinary(_)) using datafusion. #7545 [parquet]
  • filter_record_batch panics with empty struct array. #7538 [arrow]
  • Panic in pretty_format function when displaying DurationSecondsArray with i64::MIN / i64::MAX #7533 [arrow]
  • Record API unable to parse TIME_MILLIS when encoded as INT32 #7510 [parquet]
  • The read_record_batch func of the RecordBatchDecoder does not respect the skip_validation property #7508 [arrow]
  • arrow-55.1.0 breaks filter_record_batch #7500
  • Files containing binary data with >=8_388_855 bytes per row written with arrow-rs can't be read with pyarrow #7489 [parquet]
  • [Bug] Ingestion with Arrow Flight Sql panic when the input stream is empty or fallible #7329 [arrow] [arrow-flight]
  • Ensure page encoding statistics are written to Parquet file #7643 [parquet] (etseidl)

Documentation updates:

Closed issues:

... (truncated)

Commits
  • 25114c5 [55_maintenance] Fix verify-release-candidate.sh by skipping arrow-pyarrow ...
  • df702cf Prepare for 55.2.0 release (#7722)
  • 2788762 fix JSON decoder error checking for UTF16 / surrogate parsing panic (#7721)
  • e54b72b fix: Do not add null buffer for NullArray in MutableArrayData (#7726)
  • 1ededfe [Variant] Introduce new type over &str for ShortString (#7718)
  • 7b374b9 arrow-array: Implement PartialEq for RunArray (#7727)
  • 469c7ee Define a "arrow-pyrarrow" crate to implement the "pyarrow" feature. (#7694)
  • fbaf7ce Support write to buffer api for SerializedFileWriter (#7714)
  • 1bed04c Optimize coalesce kernel for StringView (10-50% faster) (#7650)
  • 7276819 Split out variant code into several new sub-modules (#7717)
  • Additional commits viewable in compare view

Updates arrow-ipc from 55.1.0 to 55.2.0

Release notes

Sourced from arrow-ipc's releases.

arrow 55.2.0

Changelog

55.2.0 (2025-06-22)

Full Changelog

Implemented enhancements:

  • Do not populate nulls for NullArray for MutableArrayData #7725
  • Implement PartialEq for RunArray #7691
  • interleave_views is really slow #7688 [arrow]
  • Add min max aggregates for FixedSizeBinary #7674 [arrow]
  • Deliver pyarrow as a standalone crate #7668 [arrow]
  • [Variant] Implement VariantObject::field and VariantObject::fields #7665 [parquet]
  • [Variant] Implement read support for remaining primitive types #7630 [parquet]
  • Fast and ergonomic method to add metadata to a RecordBatch #7628 [arrow]
  • Add efficient way to change the keys of string dictionary builder #7610 [arrow]
  • Support add_nulls on additional builder types #7605 [arrow]
  • Add into_inner for AsyncArrowWriter #7603 [parquet]
  • Optimize PrimitiveBuilder::append_trusted_len_iter #7591 [arrow]
  • Benchmark for filter+concat and take+concat into even sized record batches #7589 [arrow]
  • max_statistics_truncate_length is ignored when writing statistics to data page headers #7579 [parquet]
  • Feature Request: Encoding in parquet-rewrite #7575 [parquet]
  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496

... (truncated)

Changelog

Sourced from arrow-ipc's changelog.

55.2.0 (2025-06-22)

  • Add a strong_count method to Buffer #7568 [arrow]
  • Create version of LexicographicalComparator that compares fixed number of columns #7531 [arrow]
  • parquet-show-bloom-filter should work with integer typed columns #7528 [parquet]
  • Allow merging primitive dictionary values in concat and interleave kernels #7518 [arrow]
  • Add efficient concatenation of StructArrays #7516 [arrow]
  • Rename flight-sql-experimental to flight-sql #7498 [arrow] [arrow-flight]
  • Consider moving from ryu to lexical-core for string formatting / casting floats to string. #7496
  • Arithmetic kernels can be safer and faster #7494 [arrow]
  • Speedup filter_bytes by precalculating capacity #7465 [arrow]
  • [Variant]: Rust API to Create Variant Values #7424 [parquet] [arrow]
  • [Variant] Rust API to Read Variant Values #7423 [arrow]
  • Release arrow-rs / parquet Minor version 55.1.0 (May 2025) #7393 [parquet]
  • Support create_random_array for Decimal data types #7343 [arrow]
  • Truncate Parquet page data page statistics #7555 [parquet] (etseidl)

Fixed bugs:

  • In arrow_json, Decoder::decode can panic if it encounters two high surrogates in a row. #7712
  • FlightSQL "GetDbSchemas" and "GetTables" schemas do not fully match the protocol #7637 [arrow] [arrow-flight]
  • Cannot read encrypted Parquet file if page index reading is enabled #7629 [parquet]
  • encoding_stats not present in Parquet generated by parquet-rewrite #7616 [parquet]
  • When writing parquet plaintext footer files footer_signing_key_metadata is not included, encryption alghoritm is always written in footer #7599 [parquet]
  • new_null_array panics when constructing a struct of a dictionary #7571
  • Parquet derive fails to build when Result is aliased #7547
  • Unable to read Description has been truncated

Bumps the arrow-parquet group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [arrow](https://github.com/apache/arrow-rs) | `55.1.0` | `55.2.0` |
| [arrow-buffer](https://github.com/apache/arrow-rs) | `55.1.0` | `55.2.0` |
| [arrow-flight](https://github.com/apache/arrow-rs) | `55.1.0` | `55.2.0` |
| [arrow-ipc](https://github.com/apache/arrow-rs) | `55.1.0` | `55.2.0` |
| [arrow-ord](https://github.com/apache/arrow-rs) | `55.1.0` | `55.2.0` |
| [arrow-schema](https://github.com/apache/arrow-rs) | `55.1.0` | `55.2.0` |
| [parquet](https://github.com/apache/arrow-rs) | `55.1.0` | `55.2.0` |


Updates `arrow` from 55.1.0 to 55.2.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@55.1.0...55.2.0)

Updates `arrow-buffer` from 55.1.0 to 55.2.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@55.1.0...55.2.0)

Updates `arrow-flight` from 55.1.0 to 55.2.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@55.1.0...55.2.0)

Updates `arrow-ipc` from 55.1.0 to 55.2.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@55.1.0...55.2.0)

Updates `arrow-ord` from 55.1.0 to 55.2.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@55.1.0...55.2.0)

Updates `arrow-schema` from 55.1.0 to 55.2.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@55.1.0...55.2.0)

Updates `parquet` from 55.1.0 to 55.2.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@55.1.0...55.2.0)

---
updated-dependencies:
- dependency-name: arrow
  dependency-version: 55.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: arrow-parquet
- dependency-name: arrow-buffer
  dependency-version: 55.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: arrow-parquet
- dependency-name: arrow-flight
  dependency-version: 55.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: arrow-parquet
- dependency-name: arrow-ipc
  dependency-version: 55.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: arrow-parquet
- dependency-name: arrow-ord
  dependency-version: 55.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: arrow-parquet
- dependency-name: arrow-schema
  dependency-version: 55.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: arrow-parquet
- dependency-name: parquet
  dependency-version: 55.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: arrow-parquet
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Aug 26, 2025

Labels

The following labels could not be found: auto-dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 9, 2025

Dependabot couldn't access the repository. Because of this, Dependabot cannot update this pull request.

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.

1 participant