Skip to content

Commit 8be1910

Browse files
Merge branch 'main' into cdf_delta_spark_tests
2 parents 6caa32e + c3a868f commit 8be1910

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ jobs:
101101
toolchain: stable
102102
override: true
103103
- uses: Swatinem/rust-cache@v2
104+
- name: check kernel builds with no-default-features
105+
run: cargo build -p delta_kernel --no-default-features
104106
- name: build and lint with clippy
105107
run: cargo clippy --benches --tests --all-features -- -D warnings
106108
- name: lint without default features
@@ -225,7 +227,7 @@ jobs:
225227
- name: Generate code coverage
226228
run: cargo llvm-cov --all-features --workspace --codecov --output-path codecov.json -- --skip read_table_version_hdfs
227229
- name: Upload coverage to Codecov
228-
uses: codecov/codecov-action@v4
230+
uses: codecov/codecov-action@v5
229231
with:
230232
files: codecov.json
231233
fail_ci_if_error: true

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

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)
44

55
[Full Changelog](https://github.com/delta-io/delta-kernel-rs/compare/v0.5.0...v0.6.0)
66

@@ -15,7 +15,10 @@
1515
6. `scan::log_replay::scan_action_iter` now takes fewer (and different) params. ([#512])
1616
7. `Expression::Unary`, `Expression::Binary`, and `Expression::Variadic` now wrap a struct of the
1717
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])
1922

2023
*Additions*
2124
1. Ability to read a table's change data feed with new TableChanges API! See new `table_changes`
@@ -59,8 +62,10 @@
5962
[#588]: https://github.com/delta-io/delta-kernel-rs/pull/588
6063
[#589]: https://github.com/delta-io/delta-kernel-rs/pull/589
6164
[#591]: https://github.com/delta-io/delta-kernel-rs/pull/591
65+
[#593]: https://github.com/delta-io/delta-kernel-rs/pull/593
6266
[#596]: https://github.com/delta-io/delta-kernel-rs/pull/596
6367
[#597]: https://github.com/delta-io/delta-kernel-rs/pull/597
68+
[#602]: https://github.com/delta-io/delta-kernel-rs/pull/602
6469

6570

6671
## [v0.5.0](https://github.com/delta-io/delta-kernel-rs/tree/v0.5.0/) (2024-11-26)

kernel/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ integration-test = [
112112
"walkdir",
113113
]
114114

115+
[dependencies.home]
116+
version = "=0.5.9"
117+
115118
[build-dependencies]
116119
rustc_version = "0.4.1"
117120

0 commit comments

Comments
 (0)