11.0.287
sipcapture/homer11.0.287Jun 30, 2026by adubovikov
AI Summary
Feature release adding configurable S3 URL style support for DuckLake, specifically for Aliyun OSS.
Key Highlights
- Added `s3_url_style` / `url_style` configuration option (path or vhost)
- Propagates URL style through writer, node, CLI, and tiered storage
- Improved compatibility for Aliyun OSS and custom endpoints
Breaking Changes
- Users of Aliyun OSS must explicitly set `url_style: vhost` in their configuration.
New Features
- Configurable S3 URL style for DuckLake
Full Release Notes
## Summary
Configurable DuckDB S3 URL style for DuckLake on custom endpoints.
### Changes
* Add `s3_url_style` / `url_style` config (`path` or `vhost`) for DuckLake S3 settings ([#854](https://github.com/sipcapture/homer/pull/854), thanks @happytimor).
* Propagate URL style through writer, node, CLI, tiered storage, compaction, and DuckLake manager setup.
* Default remains `path` for MinIO/RustFS/R2 compatibility.
### Upgrade notes
* For Aliyun OSS and other providers requiring virtual-hosted-style URLs, set `url_style: vhost` (or `s3_url_style: vhost` on volumes).
* Example:
```yaml
storage:
ducklake:
s3:
endpoint: "https://oss-cn-hangzhou.aliyuncs.com"
url_style: vhost
```