Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
70e4069
[arrow-ipc]: dictionary builders for delta - doc fix and integration …
albertlockett May 3, 2026
75f7916
Prevent `FixedSizeBinaryArray` `i32` offset overflows (try 2) (#9872)
alamb May 4, 2026
0e478d8
docs: Add guidance for AI assisted submissions to CONTRIBUTING.md (#9…
etseidl May 4, 2026
f4a0f22
chore[benches]: add REE interleave benchmarks (#9849)
asubiotto May 5, 2026
d88cc48
replace Dictionary::try_new() calls with with_values. (#9894)
Rich-T-kid May 5, 2026
99998d6
API to help with the pattern of 'replaces the values of the REE array…
Rich-T-kid May 5, 2026
21f739c
test(parquet): replace `InMemoryArrayReader` with `PrimitiveArrayRead…
HippoBaro May 5, 2026
e6c9448
Update release schedule on README (#9881)
alamb May 5, 2026
3790d88
Pre-size dedup HashTable in GenericByteDictionaryBuilder::with_capaci…
rabenhorst May 5, 2026
1d89737
fix(parquet): Prevent negative list sizes in Thrift compact protocol …
masumi-ryugo May 5, 2026
8091f3f
[arrow-array] Use consistent `value_length` name in FixedSizeBinaryAr…
alamb May 5, 2026
5bf8912
[arrow-string]: add `like::eq_ascii_ignore_case` kernel (#9871)
albertlockett May 6, 2026
7f6524d
fix(parquet): bound schema num_children before Vec::with_capacity (#9…
masumi-ryugo May 6, 2026
ded985c
fix(arrow-csv): bound RecordDecoder::flush offset accumulation (#9886)
masumi-ryugo May 6, 2026
97ff198
feat(arrow-string): concat_elements for view, fixed binary (#9876)
theirix May 7, 2026
cc5a256
impl `FromStr` for `DatePart` (#9931)
sdf-jkl May 7, 2026
3384f64
chore(deps): bump actions/labeler from 6.0.1 to 6.1.0 (#9932)
dependabot[bot] May 7, 2026
913bab2
Prepare for `58.3.0` release (#9893)
alamb May 7, 2026
c2021f1
Fix MSRV check by checking in Cargo.lock (#9941)
alamb May 7, 2026
13f5f94
feat(parquet): compact level representation with generic writer dispa…
HippoBaro May 7, 2026
c025c48
[Parquet]: GH-563: Make `path_in_schema` optional (#9678)
etseidl May 7, 2026
e45354a
Remove deprecated legacy `like` kernels in `arrow-string` (#9674)
AdamGS May 7, 2026
76c381f
Remove redundant benchmarks in `cast_kernels` (#9789)
alamb May 7, 2026
5d464b5
Add `CompressionCodec` Thrift enum for Parquet metadata (#9864)
etseidl May 7, 2026
aa3c9d3
feat(parquet): add BloomFilterPropertiesBuilder (#9877)
CuteChuanChuan May 7, 2026
c1507ad
generic channel support for FlightClient (#9933)
rumenov May 7, 2026
3c71d92
perf[arrow-select]: add specialized REE interleave (#9856)
asubiotto May 7, 2026
6ce4bc8
Validate encoded Thrift lists match the schema (#9924)
etseidl May 7, 2026
7abb225
bench(parquet): add `ListArray` benchmarks for runtime and peak memor…
HippoBaro May 7, 2026
48fa8a7
feat(parquet): separate push decoder frontier state from row-group de…
HippoBaro May 12, 2026
ab4d277
feat(parquet): add ParquetPushDecoder::swap_strategy for adaptive scans
adriangb Apr 27, 2026
fee4744
fix(parquet): drop private intra-doc link from swap_strategy docs
adriangb Apr 28, 2026
752de6e
test(parquet): cover projection swap with incremental I/O
adriangb May 13, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/dev_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
github.event_name == 'pull_request_target' &&
(github.event.action == 'opened' ||
github.event.action == 'synchronize')
uses: actions/labeler@v6.0.1
uses: actions/labeler@v6.1.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/workflows/dev_pr/labeler.yml
Expand Down
175 changes: 175 additions & 0 deletions CHANGELOG-old.md

Large diffs are not rendered by default.

208 changes: 51 additions & 157 deletions CHANGELOG.md

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,21 @@ If sometimes you want to commit without checking, just run `git commit` with `--
```bash
git commit --no-verify -m "... commit message ..."
```

## AI Generated Submissions

This project follows the guidance for AI generated submissions used by the
[Arrow Project](https://arrow.apache.org/docs/dev/developers/overview.html#ai-generated-code).
As such, it is expected that you will:

- Only submit a PR if you are able to debug and own the changes yourself - review all generated
code to understand every detail
- Match the style and conventions used in the rest of the codebase, including PR titles and descriptions
- Be upfront about AI usage and summarise what was AI-generated
- If there are parts you don’t fully understand, leave comments on your own PR explaining what steps you took to verify correctness
- Watch for AI’s tendency to generate overly verbose comments, unnecessary test cases, and incorrect fixes
- Break down large PRs into smaller ones to make review easier

It is also important for submitters to be aware of potential copyright issues. See the ASF's
[guidance](https://www.apache.org/legal/generative-tooling.html) on AI-generated code for further
information on licensing considerations.
Loading
Loading