Skip to content

Commit 2959efe

Browse files
committed
Merge branch 'main' into tm/stateless-udf
2 parents 7ccf50e + 5945834 commit 2959efe

File tree

28 files changed

+2752
-159
lines changed

28 files changed

+2752
-159
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@ updates:
66
schedule:
77
interval: "daily"
88
open-pull-requests-limit: 10
9-
ignore:
10-
# We want to update arrow and datafusion manually
11-
- dependency-name: "arrow"
12-
- dependency-name: "arrow-*"
13-
- dependency-name: "datafusion"
14-
- dependency-name: "datafusion-*"
9+
# NOTE: groups are "match first", and "unmatched dependencies have individual PRs"
10+
groups:
11+
arrow-and-datafusion:
12+
patterns:
13+
- "arrow"
14+
- "arrow-*"
15+
- "datafusion"
16+
- "datafusion-*"
17+
wasmtime:
18+
patterns:
19+
- "wasmtime"
20+
- "wasmtime-*"
1521
- package-ecosystem: "github-actions"
1622
directory: "/"
1723
schedule:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: pip install --requirement=.github/workflows/requirements.txt
2323

2424
- name: Install `cargo-deny` & `just`
25-
uses: taiki-e/install-action@e7ef886cf8f69c25ecef6bbc2858a42e273496ec # v2
25+
uses: taiki-e/install-action@80466ef8efa80486cdfbddf929453a4f3565c791 # v2
2626
with:
2727
tool: cargo-deny,just
2828

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Install [cargo-deny] to check dependencies.
2222
### Just
2323
Install [just] to easily run all the tests/scripts.
2424

25+
### Python
26+
Install [Python] to set up the environment for the [Python] guest.
27+
2528

2629
## Checks
2730
There is one "run everything" [just] recipe:

0 commit comments

Comments
 (0)