Release v1.0.9: Fix SSE real-time streaming in Home Assistant Ingress mode
This commit is contained in:
@@ -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
|
||||
|
||||
+1
-1
@@ -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 = `
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "webui",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.9",
|
||||
"type": "module",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
|
||||
Reference in New Issue
Block a user