Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
bf3d232
fix: repair ALTER DATABASE RENAME data loss and REINDEX path mismatch
JonathanFarina May 16, 2026
5eedb72
style: apply cargo fmt across workspace
JonathanFarina May 16, 2026
dda7aa4
fix: resolve all pre-existing CI lint and security-audit failures
JonathanFarina May 16, 2026
c746a20
fix: resolve nightly clippy lints in analyticsdb-control
JonathanFarina May 17, 2026
5e6e6be
fix: remove spurious brace from main.rs, regenerate npm lock, exclude…
JonathanFarina May 17, 2026
f87fd2e
fix: add new RUSTSEC advisories to deny.toml ignore list
JonathanFarina May 17, 2026
999fab6
fix: replace bitnami/minio:latest with official minio/minio image in CI
JonathanFarina May 17, 2026
3bcf9aa
fix: add .cargo/audit.toml ignores and fix unneeded_struct_pattern lint
JonathanFarina May 17, 2026
f2b826f
style: apply cargo fmt to files from gateway auth middleware merge
JonathanFarina May 17, 2026
111278f
fix: resolve new stable Rust 1.95 clippy lints in analyticsdb-engine
JonathanFarina May 17, 2026
58a3a75
fix: repair broken bench files and resolve nightly/arm64 clippy lints
JonathanFarina May 17, 2026
7493ee3
fix: remove stub tests with undefined helpers, drop dead otel imports
JonathanFarina May 17, 2026
aae891a
fix: remove unused tls_key var and fix concurrency_test compile errors
JonathanFarina May 17, 2026
1daec6b
fix: clean up unused imports and variables from testing-grok stubs
JonathanFarina May 17, 2026
2ba7a81
fix: restore State import in health.rs removed by mistake
JonathanFarina May 17, 2026
81d5062
fix: JDBC mktemp dir collision and S3 MinIO path-style addressing
JonathanFarina May 17, 2026
12abe69
fix: resolve remaining CI test failures (JDBC, query_log, S3 parity, …
JonathanFarina May 19, 2026
7a963e2
fix: remove needless borrow on PathBuf (clippy::needless_borrows_for_…
JonathanFarina May 19, 2026
9707d92
fix: alias SUM aggregate to avoid table-qualified column name mismatch
JonathanFarina May 19, 2026
067b74f
fix: update engine unit tests for query_log schema changes
JonathanFarina May 19, 2026
bbeb995
fix(query-log): avoid DataFusion ProjectionMapping assertion in listi…
JonathanFarina May 19, 2026
9c97150
style: cargo fmt system_catalog.rs
JonathanFarina May 19, 2026
b1469f1
fix(lint): remove useless DataFusionError conversions in ProjectionExec
JonathanFarina May 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[advisories]
# rustls-webpki 0.101.x vulnerabilities — transitive via reqwest 0.11/rustls 0.21.
# Patched in rustls-webpki >=0.103.12; upgrading requires bumping reqwest and rustls
# across the workspace (breaking change). Ignoring until that migration is done.
ignore = [
"RUSTSEC-2026-0098",
"RUSTSEC-2026-0099",
"RUSTSEC-2026-0104",
# rustls-pemfile unmaintained — transitive dep via rustls ecosystem
"RUSTSEC-2025-0134",
# async-std discontinued — transitive dep, cannot easily remove
"RUSTSEC-2025-0052",
# bincode unmaintained — transitive dep, cannot easily remove
"RUSTSEC-2025-0141",
# paste unmaintained — transitive dep, cannot easily remove
"RUSTSEC-2024-0436",
]
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-latest
services:
minio:
image: bitnami/minio:latest
image: minio/minio:latest
env:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: miniominio
Expand All @@ -103,6 +103,7 @@ jobs:
--health-interval 5s
--health-timeout 5s
--health-retries 10
command: server /data
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -159,8 +160,7 @@ jobs:
- name: Run JDBC smoke test
run: |
# Pick three free ports: postgres wire, flight SQL, and node communication
CATALOG=$(mktemp)/catalog.db
mkdir -p "$(dirname "$CATALOG")"
CATALOG=$(mktemp -d)/catalog.db
PG_PORT=$(python3 -c "import socket; s=socket.socket(); s.bind(('',0)); print(s.getsockname()[1]); s.close()")
FL_PORT=$(python3 -c "import socket; s=socket.socket(); s.bind(('',0)); print(s.getsockname()[1]); s.close()")
ND_PORT=$(python3 -c "import socket; s=socket.socket(); s.bind(('',0)); print(s.getsockname()[1]); s.close()")
Expand Down
179 changes: 179 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ rcgen = "0.13"
time = "0.3"
password-hash = "0.5"
argon2 = "0.5"
criterion = { version = "0.5", features = ["html_reports"] }
Loading
Loading