From 71c9c5291c3682c0d2574c38c1aa33061f82c70c Mon Sep 17 00:00:00 2001 From: Daniel Carl Jones Date: Tue, 14 Jul 2026 21:31:07 +0100 Subject: [PATCH 1/4] chore: Add LICENSE and NOTICE files for crates missing them in 0.10.0 (#2830) ## Which issue does this PR close? For release: #2527 ## What changes are included in this PR? These changes are cherry-picks of #2823 and #2828. The crates were missing the LICENSE and NOTICE files required for the distributed source code. ## Are these changes tested? Tested using the following script provided by @kevinjqliu. Introducing this in CI is left as a follow-up (https://github.com/apache/iceberg-rust/issues/2827). ```bash set -Eeuo pipefail failed=0 while IFS= read -r crate; do echo "Checking ${crate}..." files="$(cargo package \ --package "${crate}" \ --list \ --locked)" for required in LICENSE NOTICE; do if ! grep -Fxq "${required}" <<<"${files}"; then echo "::error::${crate} package is missing top-level ${required}" failed=1 fi done done < <( cargo metadata --no-deps --format-version 1 | jq -r '.packages[] | select(.publish != []) | .name' ) exit "${failed}" ``` --------- Co-authored-by: Andrew Kane --- crates/catalog/loader/LICENSE | 1 + crates/catalog/loader/NOTICE | 1 + crates/integrations/cache-moka/LICENSE | 1 + crates/integrations/cache-moka/NOTICE | 1 + crates/storage/opendal/LICENSE | 1 + crates/storage/opendal/NOTICE | 1 + 6 files changed, 6 insertions(+) create mode 120000 crates/catalog/loader/LICENSE create mode 120000 crates/catalog/loader/NOTICE create mode 120000 crates/integrations/cache-moka/LICENSE create mode 120000 crates/integrations/cache-moka/NOTICE create mode 120000 crates/storage/opendal/LICENSE create mode 120000 crates/storage/opendal/NOTICE diff --git a/crates/catalog/loader/LICENSE b/crates/catalog/loader/LICENSE new file mode 120000 index 0000000000..5853aaea53 --- /dev/null +++ b/crates/catalog/loader/LICENSE @@ -0,0 +1 @@ +../../../LICENSE \ No newline at end of file diff --git a/crates/catalog/loader/NOTICE b/crates/catalog/loader/NOTICE new file mode 120000 index 0000000000..295f6bdb3a --- /dev/null +++ b/crates/catalog/loader/NOTICE @@ -0,0 +1 @@ +../../../NOTICE \ No newline at end of file diff --git a/crates/integrations/cache-moka/LICENSE b/crates/integrations/cache-moka/LICENSE new file mode 120000 index 0000000000..5853aaea53 --- /dev/null +++ b/crates/integrations/cache-moka/LICENSE @@ -0,0 +1 @@ +../../../LICENSE \ No newline at end of file diff --git a/crates/integrations/cache-moka/NOTICE b/crates/integrations/cache-moka/NOTICE new file mode 120000 index 0000000000..295f6bdb3a --- /dev/null +++ b/crates/integrations/cache-moka/NOTICE @@ -0,0 +1 @@ +../../../NOTICE \ No newline at end of file diff --git a/crates/storage/opendal/LICENSE b/crates/storage/opendal/LICENSE new file mode 120000 index 0000000000..5853aaea53 --- /dev/null +++ b/crates/storage/opendal/LICENSE @@ -0,0 +1 @@ +../../../LICENSE \ No newline at end of file diff --git a/crates/storage/opendal/NOTICE b/crates/storage/opendal/NOTICE new file mode 120000 index 0000000000..295f6bdb3a --- /dev/null +++ b/crates/storage/opendal/NOTICE @@ -0,0 +1 @@ +../../../NOTICE \ No newline at end of file From b882e63652f4d4a172812994679a1dbc0c64cbd0 Mon Sep 17 00:00:00 2001 From: Daniel Carl Jones Date: Tue, 14 Jul 2026 21:32:02 +0100 Subject: [PATCH 2/4] chore: Update changelog for 0.10.0 RC4 (#2831) ## Which issue does this PR close? Follow up for 0.10.0 RC4. ## What changes are included in this PR? Change log entries for missing changes in 0.10.0 RC4. The changelog is worded for the original commits to `main`, and not as the squashed cherry pick in #2830. ## Are these changes tested? N/A --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c43de2833..0b0dfd48a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -288,6 +288,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/). * Fix zizmor pin by @blackmwk in https://github.com/apache/iceberg-rust/pull/2762 * feat(encryption) [8/N] Read encrypted manifest file by @xanderbailey in https://github.com/apache/iceberg-rust/pull/2586 * Reject negative positional delete positions by @fallintoplace in https://github.com/apache/iceberg-rust/pull/2631 +* chore: Update changelog for 0.10.0 by @dannycjones in https://github.com/apache/iceberg-rust/pull/2782 +* Include license and notice files in iceberg-storage-opendal crate by @ankane in https://github.com/apache/iceberg-rust/pull/2823 +* fix(license): Add missing LICENSE and NOTICE symlinks for iceberg-cache-moka and iceberg-catalog-loader by @dannycjones in https://github.com/apache/iceberg-rust/pull/2828 ## [v0.9.0] - 2026-03-10 From 162ce6f34f29ab992104140ac4d34f73fc01fe4b Mon Sep 17 00:00:00 2001 From: Daniel Carl Jones Date: Tue, 28 Jul 2026 10:18:52 +0200 Subject: [PATCH 3/4] chore: Update crossbeam-epoch to 0.9.20, pin CI ruff version to 0.15.22 (#2911) ## Which issue does this PR close? Small changes needed for 0.10.1. ## What changes are included in this PR? First, address advisory in crossbeam-epoch with patch version update. Second, to address CI, pin Ruff linter for Python to version available when iceberg-rust 0.10.0 was released. ## Are these changes tested? Already covered by CI. --- .github/workflows/bindings_python_ci.yml | 2 +- Cargo.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bindings_python_ci.yml b/.github/workflows/bindings_python_ci.yml index 6980eb909a..377e4d71cb 100644 --- a/.github/workflows/bindings_python_ci.yml +++ b/.github/workflows/bindings_python_ci.yml @@ -56,7 +56,7 @@ jobs: enable-cache: true - name: Install tools run: | - uv tool install ruff + uv tool install ruff@0.15.22 - name: Check format working-directory: "bindings/python" run: | diff --git a/Cargo.lock b/Cargo.lock index 4735572e97..3e0bb20438 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1682,9 +1682,9 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.18" +version = "0.9.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" dependencies = [ "crossbeam-utils", ] From 04ae06bdb15a6fd7c7927d29d4e0f6a33de0f1f9 Mon Sep 17 00:00:00 2001 From: Daniel Carl Jones Date: Tue, 28 Jul 2026 11:29:50 +0200 Subject: [PATCH 4/4] chore: Bump version to 0.10.1, update changelog (#2909) ## Which issue does this PR close? This bumps the crate and pyiceberg-core version to 0.10.1, for the 0.10.1 release. Additionally, it pins ruff to 0.15.22 which was the version used for iceberg-rust 0.10.0. ## What changes are included in this PR? Version bump, updated dependency TSV manifests, updated changelog. Pins CI version of ruff Python linter. ## Are these changes tested? N/A --- CHANGELOG.md | 4 +++ Cargo.lock | 32 +++++++++---------- Cargo.toml | 2 +- bindings/python/DEPENDENCIES.rust.tsv | 12 +++---- crates/catalog/glue/DEPENDENCIES.rust.tsv | 10 +++--- crates/catalog/hms/DEPENDENCIES.rust.tsv | 10 +++--- crates/catalog/loader/DEPENDENCIES.rust.tsv | 20 ++++++------ crates/catalog/rest/DEPENDENCIES.rust.tsv | 8 ++--- crates/catalog/s3tables/DEPENDENCIES.rust.tsv | 10 +++--- crates/catalog/sql/DEPENDENCIES.rust.tsv | 8 ++--- crates/examples/DEPENDENCIES.rust.tsv | 10 +++--- crates/iceberg/DEPENDENCIES.rust.tsv | 6 ++-- .../integration_tests/DEPENDENCIES.rust.tsv | 12 +++---- .../cache-moka/DEPENDENCIES.rust.tsv | 8 ++--- .../datafusion/DEPENDENCIES.rust.tsv | 8 ++--- .../playground/DEPENDENCIES.rust.tsv | 12 +++---- crates/sqllogictest/DEPENDENCIES.rust.tsv | 10 +++--- crates/storage/opendal/DEPENDENCIES.rust.tsv | 8 ++--- crates/test_utils/DEPENDENCIES.rust.tsv | 6 ++-- 19 files changed, 100 insertions(+), 96 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b0dfd48a5..1e06bafa91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). +## [v0.10.1] - 2026-07-28 + +* chore: Update crossbeam-epoch to 0.9.20, pin CI ruff version to 0.15.22 by @dannycjones in https://github.com/apache/iceberg-rust/pull/2911 + ## [v0.10.0] - 2026-07-07 ### Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index 3e0bb20438..96787eccc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3741,7 +3741,7 @@ dependencies = [ [[package]] name = "iceberg" -version = "0.10.0" +version = "0.10.1" dependencies = [ "aes-gcm", "anyhow", @@ -3803,7 +3803,7 @@ dependencies = [ [[package]] name = "iceberg-cache-moka" -version = "0.10.0" +version = "0.10.1" dependencies = [ "iceberg", "moka", @@ -3811,7 +3811,7 @@ dependencies = [ [[package]] name = "iceberg-catalog-glue" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "async-trait", @@ -3826,7 +3826,7 @@ dependencies = [ [[package]] name = "iceberg-catalog-hms" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "async-trait", @@ -3849,7 +3849,7 @@ dependencies = [ [[package]] name = "iceberg-catalog-loader" -version = "0.10.0" +version = "0.10.1" dependencies = [ "async-trait", "iceberg", @@ -3869,7 +3869,7 @@ dependencies = [ [[package]] name = "iceberg-catalog-rest" -version = "0.10.0" +version = "0.10.1" dependencies = [ "async-trait", "chrono", @@ -3889,7 +3889,7 @@ dependencies = [ [[package]] name = "iceberg-catalog-s3tables" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "arrow-array", @@ -3909,7 +3909,7 @@ dependencies = [ [[package]] name = "iceberg-catalog-sql" -version = "0.10.0" +version = "0.10.1" dependencies = [ "async-trait", "iceberg", @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "iceberg-datafusion" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "async-trait", @@ -3940,7 +3940,7 @@ dependencies = [ [[package]] name = "iceberg-examples" -version = "0.10.0" +version = "0.10.1" dependencies = [ "futures", "iceberg", @@ -3951,7 +3951,7 @@ dependencies = [ [[package]] name = "iceberg-integration-tests" -version = "0.10.0" +version = "0.10.1" dependencies = [ "arrow-array", "arrow-schema", @@ -3968,7 +3968,7 @@ dependencies = [ [[package]] name = "iceberg-playground" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "clap", @@ -3990,7 +3990,7 @@ dependencies = [ [[package]] name = "iceberg-sqllogictest" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "async-trait", @@ -4012,7 +4012,7 @@ dependencies = [ [[package]] name = "iceberg-storage-opendal" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "async-trait", @@ -4033,7 +4033,7 @@ dependencies = [ [[package]] name = "iceberg_test_utils" -version = "0.10.0" +version = "0.10.1" dependencies = [ "iceberg", "tracing-subscriber", @@ -5913,7 +5913,7 @@ dependencies = [ [[package]] name = "pyiceberg_core_rust" -version = "0.10.0" +version = "0.10.1" dependencies = [ "arrow", "datafusion-ffi", diff --git a/Cargo.toml b/Cargo.toml index 02e7a6bfc8..70070a5e3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ resolver = "2" edition = "2024" homepage = "https://rust.iceberg.apache.org/" publish = false -version = "0.10.0" +version = "0.10.1" license = "Apache-2.0" repository = "https://github.com/apache/iceberg-rust" diff --git a/bindings/python/DEPENDENCIES.rust.tsv b/bindings/python/DEPENDENCIES.rust.tsv index d38f10dd3f..a922d3b67e 100644 --- a/bindings/python/DEPENDENCIES.rust.tsv +++ b/bindings/python/DEPENDENCIES.rust.tsv @@ -111,7 +111,7 @@ cpufeatures@0.3.0 X X crc32c@0.6.8 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -237,10 +237,10 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-datafusion@0.10.0 X -iceberg-storage-opendal@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-datafusion@0.10.1 X +iceberg-storage-opendal@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X @@ -372,7 +372,7 @@ proc-macro2@1.0.106 X X prost@0.14.3 X prost-derive@0.14.3 X psm@0.1.30 X X -pyiceberg_core_rust@0.10.0 X +pyiceberg_core_rust@0.10.1 X pyo3@0.28.3 X X pyo3-build-config@0.28.3 X X pyo3-ffi@0.28.3 X X diff --git a/crates/catalog/glue/DEPENDENCIES.rust.tsv b/crates/catalog/glue/DEPENDENCIES.rust.tsv index a885d1dbfc..6b2702e3e0 100644 --- a/crates/catalog/glue/DEPENDENCIES.rust.tsv +++ b/crates/catalog/glue/DEPENDENCIES.rust.tsv @@ -84,7 +84,7 @@ cpufeatures@0.2.17 X X crc32c@0.6.8 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -157,10 +157,10 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-glue@0.10.0 X -iceberg-storage-opendal@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-glue@0.10.1 X +iceberg-storage-opendal@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/catalog/hms/DEPENDENCIES.rust.tsv b/crates/catalog/hms/DEPENDENCIES.rust.tsv index ef7556b1bc..9ab93cdcb1 100644 --- a/crates/catalog/hms/DEPENDENCIES.rust.tsv +++ b/crates/catalog/hms/DEPENDENCIES.rust.tsv @@ -66,7 +66,7 @@ cpufeatures@0.2.17 X X crc32c@0.6.8 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -138,10 +138,10 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-hms@0.10.0 X -iceberg-storage-opendal@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-hms@0.10.1 X +iceberg-storage-opendal@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/catalog/loader/DEPENDENCIES.rust.tsv b/crates/catalog/loader/DEPENDENCIES.rust.tsv index 06483eafa9..68a8105233 100644 --- a/crates/catalog/loader/DEPENDENCIES.rust.tsv +++ b/crates/catalog/loader/DEPENDENCIES.rust.tsv @@ -91,7 +91,7 @@ crc-catalog@2.4.0 X X crc32c@0.6.8 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-queue@0.3.12 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X @@ -174,15 +174,15 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-glue@0.10.0 X -iceberg-catalog-hms@0.10.0 X -iceberg-catalog-loader@0.10.0 X -iceberg-catalog-rest@0.10.0 X -iceberg-catalog-s3tables@0.10.0 X -iceberg-catalog-sql@0.10.0 X -iceberg-storage-opendal@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-glue@0.10.1 X +iceberg-catalog-hms@0.10.1 X +iceberg-catalog-loader@0.10.1 X +iceberg-catalog-rest@0.10.1 X +iceberg-catalog-s3tables@0.10.1 X +iceberg-catalog-sql@0.10.1 X +iceberg-storage-opendal@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/catalog/rest/DEPENDENCIES.rust.tsv b/crates/catalog/rest/DEPENDENCIES.rust.tsv index e9a89e2b05..59f59f487b 100644 --- a/crates/catalog/rest/DEPENDENCIES.rust.tsv +++ b/crates/catalog/rest/DEPENDENCIES.rust.tsv @@ -54,7 +54,7 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.17 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -113,9 +113,9 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-rest@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-rest@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/catalog/s3tables/DEPENDENCIES.rust.tsv b/crates/catalog/s3tables/DEPENDENCIES.rust.tsv index a1276f6bcd..ed3a59d798 100644 --- a/crates/catalog/s3tables/DEPENDENCIES.rust.tsv +++ b/crates/catalog/s3tables/DEPENDENCIES.rust.tsv @@ -84,7 +84,7 @@ cpufeatures@0.2.17 X X crc32c@0.6.8 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -157,10 +157,10 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-s3tables@0.10.0 X -iceberg-storage-opendal@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-s3tables@0.10.1 X +iceberg-storage-opendal@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/catalog/sql/DEPENDENCIES.rust.tsv b/crates/catalog/sql/DEPENDENCIES.rust.tsv index 7bd99de13d..96e5cff881 100644 --- a/crates/catalog/sql/DEPENDENCIES.rust.tsv +++ b/crates/catalog/sql/DEPENDENCIES.rust.tsv @@ -57,7 +57,7 @@ crc@3.4.0 X X crc-catalog@2.4.0 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-queue@0.3.12 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X @@ -120,9 +120,9 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-sql@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-sql@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/examples/DEPENDENCIES.rust.tsv b/crates/examples/DEPENDENCIES.rust.tsv index 413ebda236..cf9eed577f 100644 --- a/crates/examples/DEPENDENCIES.rust.tsv +++ b/crates/examples/DEPENDENCIES.rust.tsv @@ -54,7 +54,7 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.17 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -114,10 +114,10 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-rest@0.10.0 X -iceberg-examples@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-rest@0.10.1 X +iceberg-examples@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/iceberg/DEPENDENCIES.rust.tsv b/crates/iceberg/DEPENDENCIES.rust.tsv index 1381017ddc..071da94203 100644 --- a/crates/iceberg/DEPENDENCIES.rust.tsv +++ b/crates/iceberg/DEPENDENCIES.rust.tsv @@ -54,7 +54,7 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.17 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -111,8 +111,8 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/integration_tests/DEPENDENCIES.rust.tsv b/crates/integration_tests/DEPENDENCIES.rust.tsv index 5bb9a72a6d..78d90bed03 100644 --- a/crates/integration_tests/DEPENDENCIES.rust.tsv +++ b/crates/integration_tests/DEPENDENCIES.rust.tsv @@ -63,7 +63,7 @@ cpufeatures@0.2.17 X X crc32c@0.6.8 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -134,11 +134,11 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-rest@0.10.0 X -iceberg-integration-tests@0.10.0 X -iceberg-storage-opendal@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-rest@0.10.1 X +iceberg-integration-tests@0.10.1 X +iceberg-storage-opendal@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/integrations/cache-moka/DEPENDENCIES.rust.tsv b/crates/integrations/cache-moka/DEPENDENCIES.rust.tsv index 9ca23a3fbc..73d741be64 100644 --- a/crates/integrations/cache-moka/DEPENDENCIES.rust.tsv +++ b/crates/integrations/cache-moka/DEPENDENCIES.rust.tsv @@ -54,7 +54,7 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.17 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -111,9 +111,9 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-cache-moka@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-cache-moka@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/integrations/datafusion/DEPENDENCIES.rust.tsv b/crates/integrations/datafusion/DEPENDENCIES.rust.tsv index 72d6d7fd2c..22e5cc7952 100644 --- a/crates/integrations/datafusion/DEPENDENCIES.rust.tsv +++ b/crates/integrations/datafusion/DEPENDENCIES.rust.tsv @@ -71,7 +71,7 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.17 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -171,9 +171,9 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-datafusion@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-datafusion@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/integrations/playground/DEPENDENCIES.rust.tsv b/crates/integrations/playground/DEPENDENCIES.rust.tsv index 49af43d19f..bf0c00b74a 100644 --- a/crates/integrations/playground/DEPENDENCIES.rust.tsv +++ b/crates/integrations/playground/DEPENDENCIES.rust.tsv @@ -111,7 +111,7 @@ cpufeatures@0.2.17 X X cpufeatures@0.3.0 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -231,11 +231,11 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-catalog-rest@0.10.0 X -iceberg-datafusion@0.10.0 X -iceberg-playground@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-catalog-rest@0.10.1 X +iceberg-datafusion@0.10.1 X +iceberg-playground@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/sqllogictest/DEPENDENCIES.rust.tsv b/crates/sqllogictest/DEPENDENCIES.rust.tsv index d50ca9d2df..3c841f1ded 100644 --- a/crates/sqllogictest/DEPENDENCIES.rust.tsv +++ b/crates/sqllogictest/DEPENDENCIES.rust.tsv @@ -85,7 +85,7 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.17 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -198,10 +198,10 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-datafusion@0.10.0 X -iceberg-sqllogictest@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-datafusion@0.10.1 X +iceberg-sqllogictest@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/storage/opendal/DEPENDENCIES.rust.tsv b/crates/storage/opendal/DEPENDENCIES.rust.tsv index 3a960f193a..76e631cd76 100644 --- a/crates/storage/opendal/DEPENDENCIES.rust.tsv +++ b/crates/storage/opendal/DEPENDENCIES.rust.tsv @@ -90,7 +90,7 @@ cpufeatures@0.3.0 X X crc32c@0.6.8 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -175,9 +175,9 @@ hyper-rustls@0.27.7 X X X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg-storage-opendal@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg-storage-opendal@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X diff --git a/crates/test_utils/DEPENDENCIES.rust.tsv b/crates/test_utils/DEPENDENCIES.rust.tsv index 1381017ddc..071da94203 100644 --- a/crates/test_utils/DEPENDENCIES.rust.tsv +++ b/crates/test_utils/DEPENDENCIES.rust.tsv @@ -54,7 +54,7 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.17 X X crc32fast@1.5.0 X X crossbeam-channel@0.5.15 X X -crossbeam-epoch@0.9.18 X X +crossbeam-epoch@0.9.20 X X crossbeam-utils@0.8.21 X X crunchy@0.2.4 X crypto-common@0.1.7 X X @@ -111,8 +111,8 @@ hyper@1.8.1 X hyper-util@0.1.20 X iana-time-zone@0.1.65 X X iana-time-zone-haiku@0.1.2 X X -iceberg@0.10.0 X -iceberg_test_utils@0.10.0 X +iceberg@0.10.1 X +iceberg_test_utils@0.10.1 X icu_collections@2.1.1 X icu_locale_core@2.1.1 X icu_normalizer@2.1.1 X