Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
12eaa17
[Minor]: Document visibility for enums produced by Thrift macros (#8706)
etseidl Oct 24, 2025
9c1b03b
Update `arrow-avro` `README.md` version to 57 (#8695)
jecsand838 Oct 24, 2025
928daa4
chore: add test case of RowSelection::trim (#8660)
lichuang Oct 24, 2025
729b258
[parquet] Adding counting method in thrift_enum macro to support ENC…
hhhizzz Oct 24, 2025
021090f
[Variant] Remove `create_test_variant_array` helper method (#8664)
friendlymatthew Oct 24, 2025
79575aa
perf: zero-copy path in `RowConverter::from_binary` (#8686)
mzabaluev Oct 24, 2025
e9a7fe5
Add `FilterPredicate::filter_record_batch` (#8693)
pepijnve Oct 24, 2025
99811f8
check bit width to avoid panic in DeltaBitPackDecoder (#8688)
rambleraptor Oct 26, 2025
78bd204
[thrift-remodel] Use `thrift_enum` macro for `ConvertedType` (#8680)
etseidl Oct 26, 2025
c149027
Cast support for RunEndEncoded arrays (#8589)
vegarsti Oct 26, 2025
7f3d3ae
perf: override `count`, `nth`, `nth_back`, `last` and `max` for BitIt…
rluvaton Oct 27, 2025
29cd685
Change some panics to errors in parquet decoder (#8602)
rambleraptor Oct 27, 2025
5e32cc6
Support more operations on ListView (#8645)
a10y Oct 27, 2025
06c49db
[Parquet] Account for FileDecryptor in ParquetMetaData heap size calc…
adamreeve Oct 27, 2025
7a92be5
Refactor arrow-cast decimal casting to unify the rescale logic used i…
liamzwbao Oct 27, 2025
62df32e
Add benchmark for casting to RunEndEncoded (REE) (#8710)
vegarsti Oct 27, 2025
6c3e588
fix: `zip` now treats nulls as false in provided mask regardless of t…
rluvaton Oct 27, 2025
dd98964
fix: `ArrayIter` does not report size hint correctly after advancing …
rluvaton Oct 27, 2025
ae5e961
cleanup tests
rluvaton Oct 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
935 changes: 930 additions & 5 deletions arrow-array/src/iterator.rs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions arrow-avro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ This crate provides:

```toml
[dependencies]
arrow-avro = "56"
arrow-avro = "57.0.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Update version references in feature snippets section for consistency.

Lines 47 and 54 have been updated to 57.0.0, but the feature snippet examples at lines 152, 157, and 162 still reference version = "56". This creates inconsistency in the documentation.

To maintain clarity, update all version references consistently:

  * Minimal, fast build (common pipelines):
  
    ```toml
-   arrow-avro = { version = "56", default-features = false, features = ["deflate", "snappy"] }
+   arrow-avro = { version = "57.0.0", default-features = false, features = ["deflate", "snappy"] }
    ```
  * Include Zstandard too (modern data lakes):
  
    ```toml
-   arrow-avro = { version = "56", default-features = false, features = ["deflate", "snappy", "zstd"] }
+   arrow-avro = { version = "57.0.0", default-features = false, features = ["deflate", "snappy", "zstd"] }
    ```
  * Fingerprint helpers:
  
    ```toml
-   arrow-avro = { version = "56", features = ["md5", "sha256"] }
+   arrow-avro = { version = "57.0.0", features = ["md5", "sha256"] }
    ```

Also applies to: 54-54

🤖 Prompt for AI Agents
In arrow-avro/README.md around lines 47, 54 and especially the feature snippet
lines 152, 157, and 162, update the inconsistent crate version references that
currently show version = "56" to the new canonical version = "57.0.0"; edit each
toml example to replace the old version string with "57.0.0" (including examples
with default-features and feature lists) so all documented snippets match the
top-of-file version references.

````

Disable defaults and pick only what you need (see **Feature Flags**):

```toml
[dependencies]
arrow-avro = { version = "56", default-features = false, features = ["deflate", "snappy"] }
arrow-avro = { version = "57.0.0", default-features = false, features = ["deflate", "snappy"] }
```

---
Expand Down
Loading
Loading