Skip to content

Tags: vortex-data/vortex

Tags

0.58.0

Toggle 0.58.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: add overflow tests for unsigned types in BigCast (#5866)

Signed-off-by: cancaicai <2356672992@qq.com>

0.57.2

Toggle 0.57.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Move from macos-13 runners to macos-15-intel runners (#5875)

Signed-off-by: Robert Kruszewski <github@robertk.io>

0.57.1

Toggle 0.57.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Correctly pin maturin to 1.10.2 (#5873)

Signed-off-by: Robert Kruszewski <github@robertk.io>

0.57.0

Toggle 0.57.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: enable all features for vortex-mask docsrs and enable serde-deri…

…ve when serde is enabled (#5871)

Signed-off-by: Robert Kruszewski <github@robertk.io>

0.57.0-rc.0

Toggle 0.57.0-rc.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add advisory semver checks to CI (#5645)

Also allow for custom pre-release drafts.

---------

Signed-off-by: Nicholas Gates <nick@nickgates.com>

0.56.0

Toggle 0.56.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: All of vortex-gpu requires compiler flag (#5362)

Signed-off-by: Robert Kruszewski <github@robertk.io>

0.55.0

Toggle 0.55.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Pipeline execution (#5251)

Signed-off-by: Nicholas Gates <nick@nickgates.com>

0.54.0

Toggle 0.54.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
FIx java bindings packaging (#5008)

Seems to work
[here](https://github.com/vortex-data/vortex/actions/runs/18659973729/job/53197925411).
My general thinking is that `setup-protoc` runs on the provided
`container` config that's required only for the JNI build. That image
lacks unzip, so we just install it.

Signed-off-by: Adam Gutglick <adam@spiraldb.com>

0.53.0

Toggle 0.53.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Refresh some flatbuffer code (#4745)

Regenerated with a new `flatc` version which generates nicer more
2024-edition-friendly edition code.

---------

Signed-off-by: Adam Gutglick <adam@spiraldb.com>

0.52.1

Toggle 0.52.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Dispatch each I/O request (#4464)

An attempt at short-term fix for
#4400

The coalescing driver was spawned as a single task, and so landed on a
single thread of the I/O dispatcher regardless of how many threads you
gave it. This PR spawns each read request to allow other threads a
chance to play ball.

The reason the Polars patch doesn't work is that we need to continue to
dispatch work in order to provide a Tokio runtime within non-Tokio
clients, such as DuckDB. This is a bigger change as part of #4406