Skip to content

Commit 7fae39a

Browse files
committed
Merge remote-tracking branch 'origin/develop' into ji/alp-pushddown
2 parents f6f04e7 + f52dbf0 commit 7fae39a

File tree

144 files changed

+3508
-2484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+3508
-2484
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
labels: ["needs-confirmation"]
2+
body:
3+
- type: markdown
4+
attributes:
5+
value: |
6+
> [!IMPORTANT]
7+
> Please check for both existing [Discussions](https://github.com/vortex-data/vortex/discussions) and [Issues](https://github.com/vortex-data/vortex/issues) prior to opening a new Discussion.
8+
- type: markdown
9+
attributes:
10+
value: "# Issue Details"
11+
- type: textarea
12+
attributes:
13+
label: Issue Description
14+
description: |
15+
Provide a detailed description of the issue. Include relevant information, such as:
16+
- Which integration you are using if any, e.g. DataFusion, DuckDB, Polars, etc.
17+
- Which language you are using, e.g. Python, Rust, Java, etc.
18+
- The Vortex package version you are using.
19+
- If this is a regression of an existing issue that was closed or resolved, please include the previous item reference (Discussion, Issue, PR, commit) in your description.
20+
validations:
21+
required: true
22+
- type: textarea
23+
attributes:
24+
label: Expected Behavior
25+
description: |
26+
Describe how you expect Vortex to behave in this situation. Include any relevant documentation links.
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: Actual Behavior
32+
description: |
33+
Describe how Vortex actually behaves in this situation. If it is not immediately obvious how the actual behavior differs from the expected behavior described above, please be sure to mention the deviation specifically.
34+
validations:
35+
required: true
36+
- type: textarea
37+
attributes:
38+
label: Reproduction Steps
39+
description: |
40+
Provide a detailed set of step-by-step instructions for reproducing this issue.
41+
validations:
42+
required: true
43+
- type: input
44+
attributes:
45+
label: OS Version Information
46+
description: |
47+
Please tell us what operating system (name and version) you are using.
48+
placeholder: Ubuntu 24.04.1 (Noble Numbat)
49+
validations:
50+
required: true
51+
52+
- type: markdown
53+
attributes:
54+
value: |
55+
# User Acknowledgements
56+
> [!TIP]
57+
> Use these links to review the existing Vortex [Discussions](https://github.com/vortex-data/vortex/discussions) and [Issues](https://github.com/vortex-data/vortex/issues).
58+
- type: checkboxes
59+
attributes:
60+
label: "I acknowledge that:"
61+
options:
62+
- label: I have searched the Vortex repository (both open and closed Discussions and Issues) and confirm this is not a duplicate of an existing issue or discussion.
63+
required: true
64+
- label: I have checked the "Preview" tab on all text fields to ensure that everything looks right, and have wrapped all configuration and code in code blocks with a group of three backticks (` ``` `) on separate lines.
65+
required: true

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Features, Bug Reports, Questions
4+
url: https://github.com/vortex-data/vortex/discussions/new/choose
5+
about: Our preferred starting point if you have any questions or suggestions about configuration, features or behavior.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Pre-Discussed and Approved Topics
3+
about: |-
4+
Only for topics already discussed and approved in the GitHub Discussions section.
5+
---
6+
7+
**DO NOT OPEN A NEW ISSUE. PLEASE USE THE DISCUSSIONS SECTION.**
8+
9+
**I DIDN'T READ THE ABOVE LINE. PLEASE CLOSE THIS ISSUE.**

.github/workflows/bench-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
if: github.event.pull_request.head.repo.fork == false
5050
with:
5151
sccache: s3
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
with:
5454
ref: ${{ github.event.pull_request.head.sha }}
5555
- uses: ./.github/actions/setup-rust
@@ -94,7 +94,7 @@ jobs:
9494
aws-region: us-east-1
9595

9696
- name: Install uv
97-
uses: spiraldb/actions/.github/actions/[email protected].3
97+
uses: spiraldb/actions/.github/actions/[email protected].5
9898
with:
9999
sync: false
100100

.github/workflows/bench.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 120
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Setup AWS CLI
2222
uses: aws-actions/configure-aws-credentials@v5
2323
with:
@@ -52,7 +52,7 @@ jobs:
5252
- uses: runs-on/action@v2
5353
with:
5454
sccache: s3
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
- uses: ./.github/actions/setup-rust
5757
with:
5858
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
runs-on: ubuntu-latest
2626
timeout-minutes: 120
2727
steps:
28-
- uses: actions/checkout@v5
29-
- uses: spiraldb/actions/.github/actions/[email protected].3
28+
- uses: actions/checkout@v6
29+
- uses: spiraldb/actions/.github/actions/[email protected].5
3030

3131
validate-workflow-yaml:
3232
runs-on: ubuntu-latest
3333
timeout-minutes: 120
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
- name: Validate YAML file
3737
run: |
3838
# Lint the workflows and yamllint's configuration file.
@@ -47,9 +47,9 @@ jobs:
4747
runs-on: ubuntu-latest
4848
timeout-minutes: 120
4949
steps:
50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151
- name: Install uv
52-
uses: spiraldb/actions/.github/actions/[email protected].3
52+
uses: spiraldb/actions/.github/actions/[email protected].5
5353
with:
5454
sync: false
5555
prune-cache: false
@@ -67,12 +67,12 @@ jobs:
6767
env:
6868
RUST_LOG: "info,uv=debug"
6969
steps:
70-
- uses: actions/checkout@v5
70+
- uses: actions/checkout@v6
7171
- uses: ./.github/actions/setup-rust
7272
with:
7373
repo-token: ${{ secrets.GITHUB_TOKEN }}
7474
- name: Install uv
75-
uses: spiraldb/actions/.github/actions/[email protected].3
75+
uses: spiraldb/actions/.github/actions/[email protected].5
7676
with:
7777
sync: false
7878
prune-cache: false
@@ -134,7 +134,7 @@ jobs:
134134
- uses: runs-on/action@v2
135135
with:
136136
sccache: s3
137-
- uses: actions/checkout@v5
137+
- uses: actions/checkout@v6
138138
- uses: ./.github/actions/setup-rust
139139
with:
140140
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -180,7 +180,7 @@ jobs:
180180
- uses: runs-on/action@v2
181181
with:
182182
sccache: s3
183-
- uses: actions/checkout@v5
183+
- uses: actions/checkout@v6
184184
- uses: ./.github/actions/setup-rust
185185
with:
186186
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -210,7 +210,7 @@ jobs:
210210
- uses: runs-on/action@v2
211211
with:
212212
sccache: s3
213-
- uses: actions/checkout@v5
213+
- uses: actions/checkout@v6
214214
- uses: ./.github/actions/setup-rust
215215
with:
216216
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -232,7 +232,7 @@ jobs:
232232
- uses: runs-on/action@v2
233233
with:
234234
sccache: s3
235-
- uses: actions/checkout@v5
235+
- uses: actions/checkout@v6
236236
- uses: ./.github/actions/setup-rust
237237
with:
238238
toolchain: nightly
@@ -260,7 +260,7 @@ jobs:
260260
- uses: runs-on/action@v2
261261
with:
262262
sccache: s3
263-
- uses: actions/checkout@v5
263+
- uses: actions/checkout@v6
264264
- uses: ./.github/actions/setup-rust
265265
with:
266266
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -300,7 +300,7 @@ jobs:
300300
- uses: runs-on/action@v2
301301
with:
302302
sccache: s3
303-
- uses: actions/checkout@v5
303+
- uses: actions/checkout@v6
304304
- uses: ./.github/actions/setup-rust
305305
with:
306306
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -369,7 +369,7 @@ jobs:
369369
- uses: runs-on/action@v2
370370
with:
371371
sccache: s3
372-
- uses: actions/checkout@v5
372+
- uses: actions/checkout@v6
373373
- name: Install llvm
374374
uses: aminya/setup-cpp@v1
375375
with:
@@ -405,7 +405,7 @@ jobs:
405405
runs-on: ubuntu-latest
406406
timeout-minutes: 120
407407
steps:
408-
- uses: actions/checkout@v5
408+
- uses: actions/checkout@v6
409409
- uses: actions/setup-java@v5
410410
with:
411411
distribution: "corretto"
@@ -432,7 +432,7 @@ jobs:
432432
- uses: runs-on/action@v2
433433
with:
434434
sccache: s3
435-
- uses: actions/checkout@v5
435+
- uses: actions/checkout@v6
436436
- uses: ./.github/actions/setup-rust
437437
with:
438438
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -529,7 +529,7 @@ jobs:
529529
--profile bench
530530
531531
- name: Run benchmarks
532-
uses: CodSpeedHQ/action@6a8e2b874c338bf81cc5e8be715ada75908d3871
532+
uses: CodSpeedHQ/action@346a2d8a8d9d38909abd0bc3d23f773110f076ad
533533
with:
534534
run: cargo codspeed run
535535
token: ${{ secrets.CODSPEED_TOKEN }}
@@ -547,7 +547,7 @@ jobs:
547547
# Prevent sudden announcement of a new advisory from failing ci:
548548
continue-on-error: ${{ matrix.checks == 'advisories' }}
549549
steps:
550-
- uses: actions/checkout@v5
550+
- uses: actions/checkout@v6
551551
- uses: EmbarkStudios/cargo-deny-action@v2
552552
with:
553553
command: check ${{ matrix.checks }}
@@ -563,7 +563,7 @@ jobs:
563563
- extras=s3-cache
564564
- tag=cxx-build
565565
steps:
566-
- uses: actions/checkout@v5
566+
- uses: actions/checkout@v6
567567
- uses: ./.github/actions/setup-rust
568568
with:
569569
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -589,7 +589,7 @@ jobs:
589589
runs-on: ubuntu-latest
590590
timeout-minutes: 120
591591
steps:
592-
- uses: actions/checkout@v5
592+
- uses: actions/checkout@v6
593593
- uses: ./.github/actions/setup-rust
594594
with:
595595
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -613,7 +613,7 @@ jobs:
613613
RUSTFLAGS: "-A warnings"
614614
RUST_BACKTRACE: full
615615
steps:
616-
- uses: actions/checkout@v5
616+
- uses: actions/checkout@v6
617617
- uses: ./.github/actions/setup-rust
618618
with:
619619
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -630,7 +630,7 @@ jobs:
630630
runs-on: ubuntu-latest
631631
timeout-minutes: 120
632632
steps:
633-
- uses: actions/checkout@v5
633+
- uses: actions/checkout@v6
634634
- uses: ./.github/actions/setup-rust
635635
with:
636636
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/claude.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
actions: read # Required for Claude to read CI results on PRs
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- uses: ./.github/actions/setup-rust
3131
with:
3232
repo-token: ${{ secrets.GITHUB_TOKEN }}
3333
- name: Install uv
34-
uses: spiraldb/actions/.github/actions/[email protected].3
34+
uses: spiraldb/actions/.github/actions/[email protected].5
3535
with:
3636
sync: false
3737

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 120
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- uses: ./.github/actions/setup-rust
1818
with:
1919
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -23,7 +23,7 @@ jobs:
2323
java-version: "17"
2424
distribution: "temurin"
2525
- name: Install uv
26-
uses: spiraldb/actions/.github/actions/[email protected].3
26+
uses: spiraldb/actions/.github/actions/[email protected].5
2727
with:
2828
sync: false
2929
prune-cache: false

.github/workflows/fuzz.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: runs-on/action@v2
2525
with:
2626
sccache: s3
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- uses: ./.github/actions/setup-rust
2929
with:
3030
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -84,7 +84,7 @@ jobs:
8484
retention-days: 30
8585
- name: Archive fuzzer output log
8686
if: steps.check.outputs.crashes_found == 'true'
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@v5
8888
with:
8989
name: io-fuzzing-logs
9090
path: fuzz_output.log
@@ -157,7 +157,7 @@ jobs:
157157
- uses: runs-on/action@v2
158158
with:
159159
sccache: s3
160-
- uses: actions/checkout@v5
160+
- uses: actions/checkout@v6
161161
- uses: ./.github/actions/setup-rust
162162
with:
163163
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -217,7 +217,7 @@ jobs:
217217
retention-days: 30
218218
- name: Archive fuzzer output log
219219
if: steps.check.outputs.crashes_found == 'true'
220-
uses: actions/upload-artifact@v4
220+
uses: actions/upload-artifact@v5
221221
with:
222222
name: ops-fuzzing-logs
223223
path: fuzz_output.log

0 commit comments

Comments
 (0)