date: 2026-04-01 title: 'Spice v1.11.5 (Apr 1, 2026)' type: blog authors: [sgrebnov] tags: [release, s3, cayenne, delta-lake, postgresql]
Announcing the release of Spice v1.11.5! 🛠️
Spice v1.11.5 is a patch release improving on_zero_results: use_source fallback performance, Delta Lake timestamp predicate data skipping, S3 Parquet read performance, PostgreSQL partitioned table support, Cayenne target file size handling, and preparing the CLI for v2.0 runtime upgrades.
on_zero_results: use_source Fallback Performance ImprovementImproved the on_zero_results: use_source fallback path to run DataFusion's physical optimizer on the federated scan plan (#9927). The fallback path now runs SessionState::physical_optimizers() rules on the federated scan plan before execution, enabling parallel file group scanning and other optimizations. This results in significantly faster fallback queries on multi-core machines, particularly for file-based data sources like Delta Lake.
>= Timestamp PredicatesDelta Lake table scans with >= timestamp filters now correctly prune files that do not match the predicate (#9932), improving query performance through more effective data skipping (file-level pruning).
The PostgreSQL data connector now supports partitioned tables (#9997) for both federated and accelerated queries.
Improved parquet read performance from S3 and other object stores (#10064), particularly for tables with many columns. Column data ranges are now coalesced into fewer, larger requests instead of being fetched individually, reducing the number of HTTP round-trips.
The Cayenne accelerator now correctly respects the configured target file size (#10071). Previously, Cayenne could produce many small, fragmented Vortex files; with this fix, files are written at the expected target size, improving storage efficiency and query performance.
The Spice CLI can now upgrade to v2.0 runtime versions. This enables upgrading to v2.0 release candidates and, once released, the v2.0 stable runtime.
Running spice upgrade without a version will upgrade to the latest stable version, including v2.0 once released.
Note: Native Windows runtime builds will no longer be provided in v2.0. Use WSL for local development instead.
No breaking changes.
No new cookbook recipes.
The Spice Cookbook includes 86 recipes to help you get started with Spice quickly and easily.
To upgrade to v1.11.5, use one of the following methods:
CLI:
Homebrew:
Docker:
Pull the spiceai/spiceai:1.11.5 image:
For available tags, see DockerHub.
Helm:
AWS Marketplace:
Spice is available in the AWS Marketplace.
FallbackOnZeroResultsScanExec fallback plan by @sgrebnov in #9927>= timestamp predicates by @sgrebnov in #9932Full Changelog: https://github.com/spiceai/spiceai/compare/v1.11.4...v1.11.5