11.0.287

huggingface/smolagents11.0.287Jun 30, 2026by adubovikov

AI Summary

This release adds configurable DuckDB S3 URL styles for DuckLake on custom endpoints, allowing users to switch between path-style and virtual-hosted-style URLs.

Key Highlights

  • Added s3_url_style / url_style config options (path or vhost).
  • Propagates URL style through writer, node, CLI, tiered storage, compaction, and manager.
  • Default remains path for MinIO/RustFS/R2 compatibility; supports Aliyun OSS.

New Features

  • Configurable S3 URL style for DuckLake on custom endpoints.

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
```