|
19 | 19 |
|
20 | 20 | # DataFusion Python Changelog
|
21 | 21 |
|
| 22 | +## [31.0.0](https://github.com/apache/arrow-datafusion-python/tree/31.0.0) (2023-09-12) |
| 23 | + |
| 24 | +[Full Changelog](https://github.com/apache/arrow-datafusion-python/compare/28.0.0...31.0.0) |
| 25 | + |
| 26 | +**Implemented enhancements:** |
| 27 | + |
| 28 | +- feat: add case function (#447) [#448](https://github.com/apache/arrow-datafusion-python/pull/448) (mesejo) |
| 29 | +- feat: add compression options [#456](https://github.com/apache/arrow-datafusion-python/pull/456) (mesejo) |
| 30 | +- feat: add register_json [#458](https://github.com/apache/arrow-datafusion-python/pull/458) (mesejo) |
| 31 | +- feat: add basic compression configuration to write_parquet [#459](https://github.com/apache/arrow-datafusion-python/pull/459) (mesejo) |
| 32 | +- feat: add example of reading parquet from s3 [#460](https://github.com/apache/arrow-datafusion-python/pull/460) (mesejo) |
| 33 | +- feat: add register_avro and read_table [#461](https://github.com/apache/arrow-datafusion-python/pull/461) (mesejo) |
| 34 | +- feat: add missing scalar math functions [#465](https://github.com/apache/arrow-datafusion-python/pull/465) (mesejo) |
| 35 | + |
| 36 | +**Documentation updates:** |
| 37 | + |
| 38 | +- docs: include pre-commit hooks section in contributor guide [#455](https://github.com/apache/arrow-datafusion-python/pull/455) (mesejo) |
| 39 | + |
| 40 | +**Merged pull requests:** |
| 41 | + |
| 42 | +- Build Linux aarch64 wheel [#443](https://github.com/apache/arrow-datafusion-python/pull/443) (gokselk) |
| 43 | +- feat: add case function (#447) [#448](https://github.com/apache/arrow-datafusion-python/pull/448) (mesejo) |
| 44 | +- enhancement(docs): Add user guide (#432) [#445](https://github.com/apache/arrow-datafusion-python/pull/445) (mesejo) |
| 45 | +- docs: include pre-commit hooks section in contributor guide [#455](https://github.com/apache/arrow-datafusion-python/pull/455) (mesejo) |
| 46 | +- feat: add compression options [#456](https://github.com/apache/arrow-datafusion-python/pull/456) (mesejo) |
| 47 | +- Upgrade to DF 28.0.0-rc1 [#457](https://github.com/apache/arrow-datafusion-python/pull/457) (andygrove) |
| 48 | +- feat: add register_json [#458](https://github.com/apache/arrow-datafusion-python/pull/458) (mesejo) |
| 49 | +- feat: add basic compression configuration to write_parquet [#459](https://github.com/apache/arrow-datafusion-python/pull/459) (mesejo) |
| 50 | +- feat: add example of reading parquet from s3 [#460](https://github.com/apache/arrow-datafusion-python/pull/460) (mesejo) |
| 51 | +- feat: add register_avro and read_table [#461](https://github.com/apache/arrow-datafusion-python/pull/461) (mesejo) |
| 52 | +- feat: add missing scalar math functions [#465](https://github.com/apache/arrow-datafusion-python/pull/465) (mesejo) |
| 53 | +- build(deps): bump arduino/setup-protoc from 1 to 2 [#452](https://github.com/apache/arrow-datafusion-python/pull/452) (dependabot[bot]) |
| 54 | +- Revert "build(deps): bump arduino/setup-protoc from 1 to 2 (#452)" [#474](https://github.com/apache/arrow-datafusion-python/pull/474) (viirya) |
| 55 | +- Minor: fix wrongly copied function description [#497](https://github.com/apache/arrow-datafusion-python/pull/497) (viirya) |
| 56 | +- Upgrade to Datafusion 31.0.0 [#491](https://github.com/apache/arrow-datafusion-python/pull/491) (judahrand) |
| 57 | +- Add `isnan` and `iszero` [#495](https://github.com/apache/arrow-datafusion-python/pull/495) (judahrand) |
| 58 | + |
| 59 | +## 30.0.0 |
| 60 | + |
| 61 | +- Skipped due to a breaking change in DataFusion |
| 62 | + |
| 63 | +## 29.0.0 |
| 64 | + |
| 65 | +- Skipped |
| 66 | + |
| 67 | +## [28.0.0](https://github.com/apache/arrow-datafusion-python/tree/28.0.0) (2023-07-25) |
| 68 | + |
| 69 | +**Implemented enhancements:** |
| 70 | + |
| 71 | +- feat: expose offset in python API [#437](https://github.com/apache/arrow-datafusion-python/pull/437) (cpcloud) |
| 72 | + |
| 73 | +**Merged pull requests:** |
| 74 | + |
| 75 | +- File based input utils [#433](https://github.com/apache/arrow-datafusion-python/pull/433) (jdye64) |
| 76 | +- Upgrade to 28.0.0-rc1 [#434](https://github.com/apache/arrow-datafusion-python/pull/434) (andygrove) |
| 77 | +- Introduces utility for obtaining SqlTable information from a file like location [#398](https://github.com/apache/arrow-datafusion-python/pull/398) (jdye64) |
| 78 | +- feat: expose offset in python API [#437](https://github.com/apache/arrow-datafusion-python/pull/437) (cpcloud) |
| 79 | +- Use DataFusion 28 [#439](https://github.com/apache/arrow-datafusion-python/pull/439) (andygrove) |
| 80 | + |
| 81 | +## [27.0.0](https://github.com/apache/arrow-datafusion-python/tree/27.0.0) (2023-07-03) |
| 82 | + |
| 83 | +**Merged pull requests:** |
| 84 | + |
| 85 | +- LogicalPlan.to_variant() make public [#412](https://github.com/apache/arrow-datafusion-python/pull/412) (jdye64) |
| 86 | +- Prepare 27.0.0 release [#423](https://github.com/apache/arrow-datafusion-python/pull/423) (andygrove) |
| 87 | + |
22 | 88 | ## [26.0.0](https://github.com/apache/arrow-datafusion-python/tree/26.0.0) (2023-06-11)
|
23 | 89 |
|
24 | 90 | [Full Changelog](https://github.com/apache/arrow-datafusion-python/compare/25.0.0...26.0.0)
|
|
0 commit comments