File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,8 @@ jobs:
101
101
toolchain : stable
102
102
override : true
103
103
- uses : Swatinem/rust-cache@v2
104
+ - name : check kernel builds with no-default-features
105
+ run : cargo build -p delta_kernel --no-default-features
104
106
- name : build and lint with clippy
105
107
run : cargo clippy --benches --tests --all-features -- -D warnings
106
108
- name : lint without default features
@@ -225,7 +227,7 @@ jobs:
225
227
- name : Generate code coverage
226
228
run : cargo llvm-cov --all-features --workspace --codecov --output-path codecov.json -- --skip read_table_version_hdfs
227
229
- name : Upload coverage to Codecov
228
- uses : codecov/codecov-action@v4
230
+ uses : codecov/codecov-action@v5
229
231
with :
230
232
files : codecov.json
231
233
fail_ci_if_error : true
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## [ v0.6.0] ( https://github.com/delta-io/delta-kernel-rs/tree/v0.6.0/ ) (2024-12-13 )
3
+ ## [ v0.6.0] ( https://github.com/delta-io/delta-kernel-rs/tree/v0.6.0/ ) (2024-12-17 )
4
4
5
5
[ Full Changelog] ( https://github.com/delta-io/delta-kernel-rs/compare/v0.5.0...v0.6.0 )
6
6
15
15
6 . ` scan::log_replay::scan_action_iter ` now takes fewer (and different) params. ([ #512 ] )
16
16
7 . ` Expression::Unary ` , ` Expression::Binary ` , and ` Expression::Variadic ` now wrap a struct of the
17
17
same name containing their fields ([ #530 ] )
18
- 8 . New ` Error ` variant ` Error::ChangeDataFeedIncompatibleSchema `
18
+ 8 . Moved ` delta_kernel::engine::parquet_stats_skipping ` module to
19
+ ` delta_kernel::predicate::parquet_stats_skipping ` ([ #602 ] )
20
+ 9 . New ` Error ` variants ` Error::ChangeDataFeedIncompatibleSchema ` and ` Error::InvalidCheckpoint `
21
+ ([ #593 ] )
19
22
20
23
* Additions*
21
24
1 . Ability to read a table's change data feed with new TableChanges API! See new ` table_changes `
59
62
[ #588 ] : https://github.com/delta-io/delta-kernel-rs/pull/588
60
63
[ #589 ] : https://github.com/delta-io/delta-kernel-rs/pull/589
61
64
[ #591 ] : https://github.com/delta-io/delta-kernel-rs/pull/591
65
+ [ #593 ] : https://github.com/delta-io/delta-kernel-rs/pull/593
62
66
[ #596 ] : https://github.com/delta-io/delta-kernel-rs/pull/596
63
67
[ #597 ] : https://github.com/delta-io/delta-kernel-rs/pull/597
68
+ [ #602 ] : https://github.com/delta-io/delta-kernel-rs/pull/602
64
69
65
70
66
71
## [ v0.5.0] ( https://github.com/delta-io/delta-kernel-rs/tree/v0.5.0/ ) (2024-11-26)
Original file line number Diff line number Diff line change @@ -112,6 +112,9 @@ integration-test = [
112
112
" walkdir" ,
113
113
]
114
114
115
+ [dependencies .home ]
116
+ version = " =0.5.9"
117
+
115
118
[build-dependencies ]
116
119
rustc_version = " 0.4.1"
117
120
You can’t perform that action at this time.
0 commit comments