alamb commented on issue #292:
URL: https://github.com/apache/arrow-rs/issues/292#issuecomment-847313452


   I started figuring out how to backport individual PRs from master to 
active_release
   
   Some notes:
   
   
   Here is the common ancestor commit:
   ```
   git merge-base  apache/master apache/active_release
   c863a2c44bffa5c092a49e07910d5e9225483193
   ```
   
   Thus, you can get the list of commits that are on master but not active 
release via:a
   ```
   git rev-list `git merge-base  apache/master 
apache/active_release`..apache/master
   ```
   
   Here is the list in pretty format:
   ```
   git rev-list --pretty=oneline `git merge-base  apache/master 
apache/active_release`..apache/master
   ```
   
   5295e253c46f217a7b75dd8d7f3d751cfc34a460 Document and automate new release 
process (#299)
   5ac771a6831c243e4fd8560b9cb5e13f8a81af34 respect offset in utf8 and list 
casts (#335)
   4c17ac8e27a899c8a1d205657e1861c3b5eec3e5 feature gate ipc reader/writer 
(#336)
   b2de5446cc1e45a0559fb39039d0545df1ac0d26 parquet: Speed up 
`BitReader`/`DeltaBitPackDecoder` (#325)
   91ef8e9bc6b8e4e0f40c0456e01251251b063362 Enable wasm32 as a target 
architecture for the SIMD feature  (#324)
   b88ef807555e5c8e8335afc86d76cbd1796406eb fix comparison of dictionaries with 
different values arrays (#332) (#333)
   f316798749f902e11a27b349781053d2dd55be80 Fix undefined behavior in FFI (#323)
   a25cafb5e1e5cbd371433b0ff251386279c0aa6c Add ported Rust release 
verification script (#331)
   71c21595a0856e4f87838c8c3bb5f2b04fb88024 return reference from 
DictionaryArray::values() (#313) (#314)
   dde86b96206b94dde48f2fd0a39103120a18c4ff feature gate csv functionality 
(#312)
   f042191578cbc2329957015fa0b8d2f01d51ddbd fix invalid null handling in filter 
(#296)
   e18b356b1310d5b178f7b6290993b920d3fe7edd Doctests for StringArray and 
LargeStringArray. (#330)
   087cf17edcabce032a473a80fcd1d952904b4b13 inline PrimitiveArray::value (#329)
   7f37a7f2a119dd83c497766265707a64d9b82307 Mutablebuffer::shrink_to_fit (#318)
   
   I have  started working through this list (from bottom) creating prs using 
the script in https://github.com/apache/arrow-rs/pull/339 with an initial PR 
https://github.com/apache/arrow-rs/pull/344:
   
   ```
   ARROW_GITHUB_API_TOKEN=$ARROW_GITHUB_API_TOKEN CHECKOUT_ROOT=/tmp/arrow-rs 
CHERRY_PICK_SHA=7f37a7f2a119dd83c497766265707a64d9b82307 python3 
dev/release/cherry-pick-pr.py
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to