Skip to content

Commit

Permalink
chore: release v0.21.0 (#1484)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `vortex`: 0.20.0 -> 0.21.0
* `vortex-alp`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-array`: 0.20.0 -> 0.21.0 (⚠️ API breaking changes)
* `vortex-buffer`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-datetime-dtype`: 0.20.0 -> 0.21.0
* `vortex-dtype`: 0.20.0 -> 0.21.0
* `vortex-error`: 0.20.0 -> 0.21.0
* `vortex-flatbuffers`: 0.20.0 -> 0.21.0
* `vortex-proto`: 0.20.0 -> 0.21.0
* `vortex-scalar`: 0.20.0 -> 0.21.0
* `vortex-fastlanes`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-bytebool`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-datetime-parts`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-dict`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-expr`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-file`: 0.20.0 -> 0.21.0 (⚠️ API breaking changes)
* `vortex-io`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-ipc`: 0.20.0 -> 0.21.0
* `vortex-sampling-compressor`: 0.20.0 -> 0.21.0
* `vortex-fsst`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-roaring`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-runend`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-runend-bool`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-zigzag`: 0.20.0 -> 0.21.0 (✓ API compatible changes)
* `vortex-datafusion`: 0.20.0 -> 0.21.0 (✓ API compatible changes)

### ⚠️ `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::compute::unary::try_cast, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/cast.rs:30
  function vortex_array::compute::unary::scalar_at, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/scalar_at.rs:30
  function vortex_array::compute::unary::fill_forward, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/fill_forward.rs:31
  function vortex_array::compute::unary::subtract_scalar, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/scalar_subtract.rs:28

--- 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::compute::unary, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/mod.rs:1

--- 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 invert of trait BoolArrayTrait, previously in file /tmp/.tmp8nwQKL/vortex-array/src/variants.rs:90

--- 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::compute::unary::ScalarAtFn, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/scalar_at.rs:10
  trait vortex_array::compute::unary::CastFn, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/cast.rs:7
  trait vortex_array::compute::unary::SubtractScalarFn, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/scalar_subtract.rs:8
  trait vortex_array::compute::unary::FillForwardFn, previously in file /tmp/.tmp8nwQKL/vortex-array/src/compute/unary/fill_forward.rs:11
```

### ⚠️ `vortex-file` breaking changes

```
--- 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_file::LayoutReader::read_metadata in file /tmp/.tmpe7MhwT/vortex/vortex-file/src/read/mod.rs:110
  trait method vortex_file::LayoutReader::can_prune in file /tmp/.tmpe7MhwT/vortex/vortex-file/src/read/mod.rs:113
```

<details><summary><i><b>Changelog</b></i></summary><p>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/release-plz/release-plz/).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 27, 2024
1 parent 51245ec commit 0095a0c
Show file tree
Hide file tree
Showing 3 changed files with 155 additions and 55 deletions.
100 changes: 100 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,106 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## `vortex-datafusion` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-datafusion-v0.20.0...vortex-datafusion-v0.21.0) - 2024-11-27

### Added
- Layout metadata reader and column statistics ([#1455](https://github.com/spiraldb/vortex/pull/1455))

## `vortex-zigzag` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-zigzag-v0.20.0...vortex-zigzag-v0.21.0) - 2024-11-27

### Other
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-runend-bool` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-runend-bool-v0.20.0...vortex-runend-bool-v0.21.0) - 2024-11-27

### Other
- Move invert from BoolArrayTrait to InvertFn ([#1490](https://github.com/spiraldb/vortex/pull/1490))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-runend` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-runend-v0.20.0...vortex-runend-v0.21.0) - 2024-11-27

### Other
- Move invert from BoolArrayTrait to InvertFn ([#1490](https://github.com/spiraldb/vortex/pull/1490))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-roaring` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-roaring-v0.20.0...vortex-roaring-v0.21.0) - 2024-11-27

### Other
- Move invert from BoolArrayTrait to InvertFn ([#1490](https://github.com/spiraldb/vortex/pull/1490))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-fsst` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-fsst-v0.20.0...vortex-fsst-v0.21.0) - 2024-11-27

### Other
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-io` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-io-v0.20.0...vortex-io-v0.21.0) - 2024-11-27

### Added
- Layout metadata reader and column statistics ([#1455](https://github.com/spiraldb/vortex/pull/1455))

### Fixed
- regression for ObjectStoreReadAt ([#1483](https://github.com/spiraldb/vortex/pull/1483))

## `vortex-file` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-file-v0.20.0...vortex-file-v0.21.0) - 2024-11-27

### Added
- prune layouts based on stats ([#1485](https://github.com/spiraldb/vortex/pull/1485))
- Layout metadata reader and column statistics ([#1455](https://github.com/spiraldb/vortex/pull/1455))

### Other
- Remove uses of with_dyn for validity ([#1487](https://github.com/spiraldb/vortex/pull/1487))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-expr` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-expr-v0.20.0...vortex-expr-v0.21.0) - 2024-11-27

### Other
- Move invert from BoolArrayTrait to InvertFn ([#1490](https://github.com/spiraldb/vortex/pull/1490))

## `vortex-dict` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-dict-v0.20.0...vortex-dict-v0.21.0) - 2024-11-27

### Other
- Move invert from BoolArrayTrait to InvertFn ([#1490](https://github.com/spiraldb/vortex/pull/1490))
- Remove uses of with_dyn for validity ([#1487](https://github.com/spiraldb/vortex/pull/1487))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-datetime-parts` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-datetime-parts-v0.20.0...vortex-datetime-parts-v0.21.0) - 2024-11-27

### Other
- Remove uses of with_dyn for validity ([#1487](https://github.com/spiraldb/vortex/pull/1487))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-bytebool` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-bytebool-v0.20.0...vortex-bytebool-v0.21.0) - 2024-11-27

### Other
- Move invert from BoolArrayTrait to InvertFn ([#1490](https://github.com/spiraldb/vortex/pull/1490))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-fastlanes` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-fastlanes-v0.20.0...vortex-fastlanes-v0.21.0) - 2024-11-27

### Other
- Remove uses of with_dyn for validity ([#1487](https://github.com/spiraldb/vortex/pull/1487))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-buffer` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-buffer-v0.20.0...vortex-buffer-v0.21.0) - 2024-11-27

### Added
- Layout metadata reader and column statistics ([#1455](https://github.com/spiraldb/vortex/pull/1455))

## `vortex-array` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-array-v0.20.0...vortex-array-v0.21.0) - 2024-11-27

### Other
- Move invert from BoolArrayTrait to InvertFn ([#1490](https://github.com/spiraldb/vortex/pull/1490))
- Remove uses of with_dyn for validity ([#1487](https://github.com/spiraldb/vortex/pull/1487))
- Make BinaryBooleanFn consistent with CompareFn ([#1488](https://github.com/spiraldb/vortex/pull/1488))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-alp` - [0.21.0](https://github.com/spiraldb/vortex/compare/vortex-alp-v0.20.0...vortex-alp-v0.21.0) - 2024-11-27

### Other
- Remove uses of with_dyn for validity ([#1487](https://github.com/spiraldb/vortex/pull/1487))
- Flatten unary compute mod ([#1489](https://github.com/spiraldb/vortex/pull/1489))

## `vortex-datafusion` - [0.20.0](https://github.com/spiraldb/vortex/compare/vortex-datafusion-v0.19.0...vortex-datafusion-v0.20.0) - 2024-11-26

### Fixed
Expand Down
58 changes: 29 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0095a0c

Please sign in to comment.