diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a01af1..9c54575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.9] - 2025-12-11 + +### Fixed +- Fixed real-time SSE streaming in Home Assistant Ingress mode +- SSE events now arrive immediately instead of being buffered until completion + +### Technical +- Added automatic detection of Home Assistant Ingress via X-Ingress-Path header +- Implemented 64KB padding for SSE events to overcome aiohttp buffer in HA Supervisor +- Adjusted progress update interval to 3 seconds in Ingress mode to reduce traffic +- Normal mode (Docker/direct access) remains unchanged + ## [1.0.8] - 2025-11-26 ### Changed diff --git a/cmd/strix/main.go b/cmd/strix/main.go index 0ce8160..248a4a0 100644 --- a/cmd/strix/main.go +++ b/cmd/strix/main.go @@ -20,7 +20,7 @@ import ( const ( // Version is the application version - Version = "1.0.7" + Version = "1.0.9" // Banner is the application banner Banner = ` diff --git a/webui/package.json b/webui/package.json index cce0065..a1e8b57 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "webui", - "version": "1.0.4", + "version": "1.0.9", "type": "module", "description": "", "main": "index.js",