Releases: duckdb/duckdb-delta
Releases · duckdb/duckdb-delta
v0.3.1
What's Changed
- Fix minor issues by @samansmink in #166
- bump-to-v1.2.1 by @samansmink in #168
Full Changelog: v0.3.0...v0.3.1
v0.3.0
What's Changed
- bump kernel to v0.4.0 by @samansmink in #111
- bump to v1.1.3 by @samansmink in #113
- Support attaching delta tables as catalogs by @samansmink in #110
- Code formatting by @esadek in #114
- autoload('parquet') since it's needed for scan_parquet by @carlopi in #115
- Main into feature by @samansmink in #118
- Improve table function to string by @samansmink in #122
- Add total files filtered by @samansmink in #123
- Bump kernel to 0.5.0 by @samansmink in #127
- Thread safety by @samansmink in #128
- Bump kernel to 0.6.0 by @samansmink in #129
- Add expression test by @samansmink in #130
- Update year in license file to 2025 by @szarnyasg in #131
- Add Logging by @samansmink in #132
- Merge feature into main by @samansmink in #134
- Bump DuckDB to main by @samansmink in #136
- new logger, bump duckdb to prerelease by @samansmink in #138
- remove incorrectly included header by @samansmink in #139
- make function static by @samansmink in #140
- bump duckdb by @samansmink in #143
- enable deploy by @samansmink in #144
- switch to main by @samansmink in #145
- bump to v1.2.0 by @samansmink in #148
- Forward partition awareness by @samansmink in #147
- Add workaround for 150 by @samansmink in #152
- Minor refactor by @samansmink in #153
- don't decode + symbol by @samansmink in #154
- Improve single table catalogs by @samansmink in #155
- Fix issue with filters on filename column by @samansmink in #156
- Make partition info pushdown and filter pushdown optional by @samansmink in #158
- bump kernel to 0.7.0 by @samansmink in #164
New Contributors
Full Changelog: v0.2.2...v0.3.0
v0.2.2
v0.2.1
What's Changed
- fix: correct endpoint when using onelake by @gdubya in #92
- update DuckDB to v1.1.1 by @samansmink in #100
Full Changelog: v0.2.0...v0.2.1
v0.2.0
Overview
- Cardinality information is now correctly propagated to DuckDB, improving the quality of query plans
- Automated performance regression tests are now run by CI
- Delta Kernel is now at v0.3.1
- Bugfixes
What's Changed
- bump kernel to v0.2.0 by @samansmink in #57
- Add basic benchmarking suite by @samansmink in #60
- small fix to build_benchmark by @samansmink in #61
- chore: tidy up README and make cloud documentation more agnostic by @gdubya in #67
- use https to avoid host key verification problem by @stephaniewang526 in #62
- Fix 2 small bugs by @samansmink in #68
- fix blob type by @samansmink in #69
- add GCS authentication example by @yohei1126 in #70
- Update feature branch by @samansmink in #76
- Add stats by @samansmink in #77
- Add automated performance regression tests to CI by @samansmink in #79
- Bump to v1.1.0 by @carlopi in #80
- Merge feature into main by @carlopi in #82
- feat: add support for azure access token authorization by @gdubya in #88
- handle when kernel returns a nullptr for the stats by @samansmink in #89
- bump kernel to v0.3.1 by @samansmink in #90
New Contributors
- @gdubya made their first contribution in #67
- @stephaniewang526 made their first contribution in #62
- @yohei1126 made their first contribution in #70
- @carlopi made their first contribution in #80
Full Changelog: v0.1.0...v0.2.0
DuckDB Delta Extension v0.1.0
First release of the DuckDB Delta extension.
The Delta Extension adds support for the Delta Lake open-source storage format. It is built using the delta-kernel-rs library. The extension offers read support for delta tables, both local and remote (S3, Azure, Minio, GCS, R2, and basically all S3 protocol object stores).
This release contains various features:
- Support for all data types
- Filter and projection pushdown
- File skipping based on filter pushdown
- Deletion vectors
- Partitioned tables
- Fully parallel scanning