spiraldb / vortex

An extensible, state-of-the-art columnar file format
https://vortex.dev
Apache License 2.0
1.01k stars 28 forks source link

chore: release v0.20.0 #1482

Closed github-actions[bot] closed 3 days ago

github-actions[bot] commented 3 days ago

🤖 New release

⚠️ vortex-array breaking changes

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_missing.ron

Failed in:
  function vortex_array::elementwise::dyn_cast_array_iter, previously in file /tmp/.tmpPp7oOo/vortex-array/src/elementwise.rs:23
  function vortex_array::array::compute_stats, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/varbin/stats.rs:22
  function vortex_array::compute::unary::scalar_at_unchecked, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/unary/scalar_at.rs:30
  function vortex_array::compute::search_sorted_u64, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/search_sorted.rs:161
  function vortex_array::compress::compute_pruning_stats, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compress.rs:72
  function vortex_array::compute::search_sorted_u64_many, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/search_sorted.rs:207

--- failure function_parameter_count_changed: pub fn parameter count changed ---

Description:
A publicly-visible function now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_parameter_count_changed.ron

Failed in:
  vortex_array::compute::take now takes 3 parameters instead of 2, in /tmp/.tmpTCOqx4/vortex/vortex-array/src/compute/take.rs:43

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron

Failed in:
  SparseArray::fill_value, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/sparse/mod.rs:124
  BoolArray::from_vec, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/bool/mod.rs:123
  ConstantArray::scalar_value, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/constant/mod.rs:59
  ConstantArray::owned_scalar, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/constant/mod.rs:64
  StatsSet::new, previously in file /tmp/.tmpPp7oOo/vortex-array/src/stats/statsset.rs:22
  StatsSet::bools_with_true_count, previously in file /tmp/.tmpPp7oOo/vortex-array/src/stats/statsset.rs:98
  ArrayData::as_primitive, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/primitive/mod.rs:338

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/method_parameter_count_changed.ron

Failed in:
  vortex_array::validity::Validity::take now takes 3 parameters instead of 2, in /tmp/.tmpTCOqx4/vortex/vortex-array/src/validity.rs:199

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/module_missing.ron

Failed in:
  mod vortex_array::array::visitor, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/visitor.rs:1
  mod vortex_array::elementwise, previously in file /tmp/.tmpPp7oOo/vortex-array/src/elementwise.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_missing.ron

Failed in:
  struct vortex_array::TypedArray, previously in file /tmp/.tmpPp7oOo/vortex-array/src/typed.rs:15
  struct vortex_array::OwnedArrayData, previously in file /tmp/.tmpPp7oOo/vortex-array/src/data.rs:14
  struct vortex_array::ViewedArrayData, previously in file /tmp/.tmpPp7oOo/vortex-array/src/view.rs:20

--- failure trait_added_supertrait: non-sealed trait added new supertraits ---

Description:
A non-sealed trait added one or more supertraits, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#generic-bounds-tighten
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_added_supertrait.ron

Failed in:
  trait vortex_array::ArrayTrait gained AsRef in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/lib.rs:89
  trait vortex_array::ArrayTrait gained ArrayNBytes in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/lib.rs:89

--- failure trait_method_added: pub trait method added ---

Description:
A non-sealed public trait added a new method without a default implementation, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_added.ron

Failed in:
  trait method vortex_array::stats::Statistics::clear in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/stats/mod.rs:104
  trait method vortex_array::stats::Statistics::retain_only in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/stats/mod.rs:121

--- failure trait_method_missing: pub trait method removed or renamed ---

Description:
A trait method is no longer callable, and may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#major-any-change-to-trait-item-signatures
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_missing.ron

Failed in:
  method true_count of trait BoolArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:93
  method maybe_null_indices_iter of trait BoolArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:106
  method maybe_null_slices_iter of trait BoolArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:115
  method search_sorted_u64 of trait SearchSortedFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/search_sorted.rs:103
  method search_sorted_u64_many of trait SearchSortedFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/search_sorted.rs:121
  method into_canonical of trait ArrayEncodingExt, previously in file /tmp/.tmpPp7oOo/vortex-array/src/encoding/mod.rs:80
  method u8_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:180
  method u16_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:184
  method u32_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:188
  method u64_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:192
  method i8_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:196
  method i16_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:200
  method i32_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:204
  method i64_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:208
  method f16_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:212
  method f32_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:216
  method f64_accessor of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:220
  method u8_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:224
  method u16_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:228
  method u32_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:232
  method u64_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:236
  method i8_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:240
  method i16_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:244
  method i32_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:248
  method i64_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:252
  method f16_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:256
  method f32_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:260
  method f64_iter of trait PrimitiveArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/variants.rs:264
  method scalar_at_unchecked of trait ScalarAtFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/unary/scalar_at.rs:9
  method nbytes of trait ArrayTrait, previously in file /tmp/.tmpPp7oOo/vortex-array/src/lib.rs:318

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_missing.ron

Failed in:
  trait vortex_array::encoding::ArrayEncoding, previously in file /tmp/.tmpPp7oOo/vortex-array/src/encoding/mod.rs:50
  trait vortex_array::compute::AndFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/boolean.rs:5
  trait vortex_array::compute::MaybeCompareFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/compare.rs:77
  trait vortex_array::array::visitor::AcceptArrayVisitor, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/visitor.rs:7
  trait vortex_array::ToOwnedArrayData, previously in file /tmp/.tmpPp7oOo/vortex-array/src/lib.rs:299
  trait vortex_array::elementwise::BinaryFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/elementwise.rs:7
  trait vortex_array::elementwise::UnaryFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/elementwise.rs:15
  trait vortex_array::compute::ArrayCompute, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/mod.rs:31
  trait vortex_array::compute::OrFn, previously in file /tmp/.tmpPp7oOo/vortex-array/src/compute/boolean.rs:47
  trait vortex_array::array::visitor::ArrayVisitor, previously in file /tmp/.tmpPp7oOo/vortex-array/src/array/visitor.rs:12
  trait vortex_array::stats::ArrayStatisticsCompute, previously in file /tmp/.tmpPp7oOo/vortex-array/src/stats/mod.rs:115

--- failure trait_removed_supertrait: supertrait removed or renamed ---

Description:
A supertrait was removed from a trait. Users of the trait can no longer assume it can also be used like its supertrait.
        ref: https://doc.rust-lang.org/reference/items/traits.html#supertraits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_removed_supertrait.ron

Failed in:
  supertrait vortex_array::compute::ArrayCompute of trait ArrayTrait in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/lib.rs:89
  supertrait vortex_array::array::visitor::AcceptArrayVisitor of trait ArrayTrait in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/lib.rs:89
  supertrait vortex_array::stats::ArrayStatisticsCompute of trait ArrayTrait in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/lib.rs:89
  supertrait vortex_array::ToOwnedArrayData of trait ArrayTrait in file /tmp/.tmpTCOqx4/vortex/vortex-array/src/lib.rs:89

⚠️ vortex-dtype breaking changes

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_missing.ron

Failed in:
  function vortex_dtype::flatbuffers::deserialize_and_project, previously in file /tmp/.tmpPp7oOo/vortex-dtype/src/serde/flatbuffers/project.rs:27

⚠️ vortex-flatbuffers breaking changes

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field ArrayStatsArgs.uncompressed_size_in_bytes in /tmp/.tmpTCOqx4/vortex/vortex-flatbuffers/src/./generated/array.rs:442

⚠️ vortex-scalar breaking changes

--- failure derive_trait_impl_removed: built-in derived trait no longer implemented ---

Description:
A public type has stopped deriving one or more traits. This can break downstream code that depends on those types implementing those traits.
        ref: https://doc.rust-lang.org/reference/attributes/derive.html#derive
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/derive_trait_impl_removed.ron

Failed in:
  type ScalarValue no longer derives PartialEq, in /tmp/.tmpTCOqx4/vortex/vortex-scalar/src/value.rs:20
  type ScalarValue no longer derives PartialOrd, in /tmp/.tmpTCOqx4/vortex/vortex-scalar/src/value.rs:20

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/enum_missing.ron

Failed in:
  enum vortex_scalar::ScalarValue, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:18

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron

Failed in:
  Scalar::struct, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/struct_.rs:129
  Scalar::value, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/lib.rs:55
  ScalarValue::is_null, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:73
  ScalarValue::as_null, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:98
  ScalarValue::as_bool, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:105
  ScalarValue::as_pvalue, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:113
  ScalarValue::as_buffer, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:121
  ScalarValue::as_buffer_string, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:129
  ScalarValue::as_list, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/value.rs:138
  StructScalar::try_new, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/struct_.rs:17
  ExtScalar::value, previously in file /tmp/.tmpPp7oOo/vortex-scalar/src/extension.rs:31

⚠️ vortex-fastlanes breaking changes

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron

Failed in:
  FoRArray::reference, previously in file /tmp/.tmpPp7oOo/vortex-fastlanes/src/for/mod.rs:69
  FoRArray::owned_reference_scalar, previously in file /tmp/.tmpPp7oOo/vortex-fastlanes/src/for/mod.rs:74

⚠️ vortex-file breaking changes

--- failure auto_trait_impl_removed: auto trait no longer implemented ---

Description:
A public type has stopped implementing one or more auto traits. This can break downstream code that depends on the traits being implemented.
        ref: https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type RowMask is no longer UnwindSafe, in /tmp/.tmpTCOqx4/vortex/vortex-file/src/read/mask.rs:19
  type RowMask is no longer RefUnwindSafe, in /tmp/.tmpTCOqx4/vortex/vortex-file/src/read/mask.rs:19

--- failure derive_trait_impl_removed: built-in derived trait no longer implemented ---

Description:
A public type has stopped deriving one or more traits. This can break downstream code that depends on those types implementing those traits.
        ref: https://doc.rust-lang.org/reference/attributes/derive.html#derive
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/derive_trait_impl_removed.ron

Failed in:
  type RowMask no longer derives PartialEq, in /tmp/.tmpTCOqx4/vortex/vortex-file/src/read/mask.rs:19
  type RowMask no longer derives Eq, in /tmp/.tmpTCOqx4/vortex/vortex-file/src/read/mask.rs:19

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron

Failed in:
  RowMask::and_inplace, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/mask.rs:178
  RowMask::to_mask_array, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/mask.rs:227
  InitialRead::fb_schema, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/builder/initial_read.rs:55
  VortexFileArrayStream::schema, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/stream.rs:78

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing, renamed, or changed from const to static.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  ALIGNMENT in file /tmp/.tmpPp7oOo/vortex-file/src/lib.rs:143

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_missing.ron

Failed in:
  struct vortex_file::Layout, previously in file /tmp/.tmpPp7oOo/vortex-file/src/write/layout.rs:11
  struct vortex_file::layouts::FlatLayoutSpec, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/layouts/flat.rs:19
  struct vortex_file::layouts::InlineDTypeLayoutSpec, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/layouts/inline_dtype.rs:20
  struct vortex_file::LazilyDeserializedDType, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/cache.rs:48
  struct vortex_file::layouts::ColumnarLayoutSpec, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/layouts/columnar.rs:22
  struct vortex_file::IoDispatcher, previously in file /tmp/.tmpPp7oOo/vortex-file/src/dispatcher/mod.rs:59
  struct vortex_file::layouts::ChunkedLayoutSpec, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/layouts/chunked.rs:16

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_missing.ron

Failed in:
  trait vortex_file::Dispatch, previously in file /tmp/.tmpPp7oOo/vortex-file/src/dispatcher/mod.rs:28
  trait vortex_file::LayoutSpec, previously in file /tmp/.tmpPp7oOo/vortex-file/src/read/context.rs:25

⚠️ vortex-io breaking changes

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_missing.ron

Failed in:
  struct vortex_io::FuturesAdapter, previously in file /tmp/.tmpPp7oOo/vortex-io/src/futures.rs:8

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_missing.ron

Failed in:
  trait vortex_io::VortexRead, previously in file /tmp/.tmpPp7oOo/vortex-io/src/read.rs:17

⚠️ vortex-sampling-compressor breaking changes

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron

Failed in:
  SamplingCompressor::compress_array, previously in file /tmp/.tmpPp7oOo/vortex-sampling-compressor/src/sampling_compressor.rs:161

--- failure pub_static_missing: pub static is missing ---

Description:
A public static is missing, renamed, or made private.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/pub_static_missing.ron

Failed in:
  FASTEST_COMPRESSORS in file /tmp/.tmpPp7oOo/vortex-sampling-compressor/src/lib.rs:54

⚠️ vortex-runend breaking changes

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_missing.ron

Failed in:
  function vortex_runend::compress::runend_decode, previously in file /tmp/.tmpPp7oOo/vortex-runend/src/compress.rs:53

--- failure function_parameter_count_changed: pub fn parameter count changed ---

Description:
A publicly-visible function now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_parameter_count_changed.ron

Failed in:
  vortex_runend::compress::runend_decode_primitive now takes 5 parameters instead of 4, in /tmp/.tmpTCOqx4/vortex/encodings/runend/src/compress.rs:53

⚠️ vortex-runend-bool breaking changes

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_missing.ron

Failed in:
  function vortex_runend_bool::compress::runend_bool_decode, previously in file /tmp/.tmpPp7oOo/vortex-runend-bool/src/compress.rs:44
  function vortex_runend_bool::compress::value_at_index, previously in file /tmp/.tmpPp7oOo/vortex-runend-bool/src/compress.rs:89
  function vortex_runend_bool::compress::runend_bool_encode, previously in file /tmp/.tmpPp7oOo/vortex-runend-bool/src/compress.rs:12

--- failure function_parameter_count_changed: pub fn parameter count changed ---

Description:
A publicly-visible function now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_parameter_count_changed.ron

Failed in:
  vortex_runend_bool::compress::runend_bool_decode_slice now takes 3 parameters instead of 4, in /tmp/.tmpTCOqx4/vortex/encodings/runend-bool/src/compress.rs:66

⚠️ vortex-datafusion breaking changes

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/method_parameter_count_changed.ron

Failed in:
  vortex_datafusion::persistent::execution::VortexExec::try_new now takes 4 parameters instead of 5, in /tmp/.tmpTCOqx4/vortex/vortex-datafusion/src/persistent/execution.rs:26

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/module_missing.ron

Failed in:
  mod vortex_datafusion::persistent::provider, previously in file /tmp/.tmpPp7oOo/vortex-datafusion/src/persistent/provider.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_missing.ron

Failed in:
  struct vortex_datafusion::persistent::config::VortexTableOptions, previously in file /tmp/.tmpPp7oOo/vortex-datafusion/src/persistent/config.rs:36
  struct vortex_datafusion::persistent::provider::VortexFileTableProvider, previously in file /tmp/.tmpPp7oOo/vortex-datafusion/src/persistent/provider.rs:25

--- failure trait_method_missing: pub trait method removed or renamed ---

Description:
A trait method is no longer callable, and may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#major-any-change-to-trait-item-signatures
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_missing.ron

Failed in:
  method register_disk_vortex_opts of trait SessionContextExt, previously in file /tmp/.tmpPp7oOo/vortex-datafusion/src/lib.rs:71
  method read_disk_vortex_opts of trait SessionContextExt, previously in file /tmp/.tmpPp7oOo/vortex-datafusion/src/lib.rs:78
Changelog


This PR was generated with release-plz.