mirror of
https://github.com/RiDDiX/home-assistant-addons.git
synced 2026-07-15 05:28:09 +08:00
Compare commits
46 Commits
hamh-testi
...
hamh-1.7.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
163d4caa4b | ||
|
|
8121c345c0 | ||
|
|
318c186d88 | ||
|
|
275d2cfe92 | ||
|
|
c2aa2dd22f | ||
|
|
7da1d830d4 | ||
|
|
15ea16c9ac | ||
|
|
f99cd2cd03 | ||
|
|
23f6d3c11b | ||
|
|
7f46ac767f | ||
|
|
69c143d952 | ||
|
|
214ef8c4c2 | ||
|
|
84ceed3e66 | ||
|
|
8dbe270e00 | ||
|
|
346bf1dfbd | ||
|
|
da960dbd23 | ||
|
|
42a0f7820a | ||
|
|
da48eee897 | ||
|
|
7d31400eec | ||
|
|
893f250a6c | ||
|
|
d2bc35fa16 | ||
|
|
d5a564fe18 | ||
|
|
b082fa65da | ||
|
|
61b7479dbb | ||
|
|
7c2cbd35ff | ||
|
|
b1eecc1459 | ||
|
|
392944ac61 | ||
|
|
8b424b2242 | ||
|
|
9c5209a32e | ||
|
|
ff0e085fcd | ||
|
|
cdd63974df | ||
|
|
179e8cc792 | ||
|
|
88d13344cc | ||
|
|
b4fdeebfa2 | ||
|
|
6d29c8ef92 | ||
|
|
e52aca9716 | ||
|
|
42cfbe92e1 | ||
|
|
64f90a36fe | ||
|
|
80b4c29bed | ||
|
|
be474ebdb8 | ||
|
|
8b1e146395 | ||
|
|
d3ce8ac636 | ||
|
|
2172fe81fb | ||
|
|
dceb495aea | ||
|
|
d88908e5be | ||
|
|
185402be36 |
20
.github/workflows/release-addons.yaml
vendored
20
.github/workflows/release-addons.yaml
vendored
@@ -26,6 +26,11 @@ on:
|
||||
# version: "3.0.0"
|
||||
# changelogUrl: "https://..."
|
||||
|
||||
# Serialize all releases to prevent push conflicts
|
||||
concurrency:
|
||||
group: addon-release
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -52,9 +57,18 @@ jobs:
|
||||
CHANGELOG_URL="${{ github.event.inputs.changelogUrl }}"
|
||||
fi
|
||||
|
||||
# Append channel to project name if not latest
|
||||
# Only append channel if:
|
||||
# 1. Channel is not "latest"
|
||||
# 2. Project doesn't already contain the channel suffix
|
||||
if [ "$CHANNEL" != "latest" ]; then
|
||||
PROJECT="$PROJECT-$CHANNEL"
|
||||
case "$PROJECT" in
|
||||
*-alpha|*-testing)
|
||||
# Project already has channel suffix, don't append
|
||||
;;
|
||||
*)
|
||||
PROJECT="$PROJECT-$CHANNEL"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
echo "project=$PROJECT" >> "$GITHUB_OUTPUT"
|
||||
@@ -92,6 +106,8 @@ jobs:
|
||||
- name: Commit and Push
|
||||
run: |
|
||||
git commit -m "release(${{ steps.event_parser.outputs.project }}): ${{ steps.event_parser.outputs.version }}"
|
||||
# Pull any changes from concurrent releases and rebase
|
||||
git pull --rebase origin main
|
||||
git push origin main
|
||||
|
||||
- name: Create GitHub Release
|
||||
|
||||
@@ -1,3 +1,113 @@
|
||||
# [2.0.0-alpha.74](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.73...v2.0.0-alpha.74) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* correct thermostat deadband constraint logic with 2.5C margin ([fde0e98](https://github.com/RiDDiX/home-assistant-matter-hub/commit/fde0e980233470880197a5ff5c4708987dba66aa))
|
||||
|
||||
# [2.0.0-alpha.73](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.72...v2.0.0-alpha.73) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* adjust thermostat setpoint limits to satisfy Matter.js 200 deadband constraint ([e92b485](https://github.com/RiDDiX/home-assistant-matter-hub/commit/e92b4853456a7c533628e601acd883586bd8224c))
|
||||
|
||||
# [2.0.0-alpha.72](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.71...v2.0.0-alpha.72) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* remove AutoMode feature to prevent Matter.js permission error on thermostatRunningMode (fixes [#24](https://github.com/RiDDiX/home-assistant-matter-hub/issues/24)) ([36d50b2](https://github.com/RiDDiX/home-assistant-matter-hub/commit/36d50b25a2fc189619cd5252a97cdb2c88d025fc))
|
||||
|
||||
# [2.0.0-alpha.71](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.70...v2.0.0-alpha.71) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add asLocalActor to preUpdateRunningMode for thermostat systemMode writes (fixes [#24](https://github.com/RiDDiX/home-assistant-matter-hub/issues/24)) ([fd4cd11](https://github.com/RiDDiX/home-assistant-matter-hub/commit/fd4cd1188e44cc4670ad9d967c6ac10493fc0592))
|
||||
|
||||
# [2.0.0-alpha.70](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.69...v2.0.0-alpha.70) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* BridgeWizard sends wrong filter format - use HomeAssistantMatcher (fixes [#33](https://github.com/RiDDiX/home-assistant-matter-hub/issues/33)) ([5de5221](https://github.com/RiDDiX/home-assistant-matter-hub/commit/5de52216767a7eba3ab1b4a1afd670636895468a))
|
||||
|
||||
# [2.0.0-alpha.69](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.68...v2.0.0-alpha.69) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add asLocalActor to thermostat setpoint handlers (fixes [#9](https://github.com/RiDDiX/home-assistant-matter-hub/issues/9)) ([a567cf7](https://github.com/RiDDiX/home-assistant-matter-hub/commit/a567cf727f1842613025251759d18125fcf60db9))
|
||||
|
||||
# [2.0.0-alpha.68](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.67...v2.0.0-alpha.68) (2026-01-29)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add exponential backoff retry, circuit breaker, and config validation ([1fb6d03](https://github.com/RiDDiX/home-assistant-matter-hub/commit/1fb6d03eddce825bf3a9b120be49d05fc83c8c71))
|
||||
|
||||
# [2.0.0-alpha.67](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.66...v2.0.0-alpha.67) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* resolve lint formatting errors in SystemInfo and BackupRestore ([b6057c0](https://github.com/RiDDiX/home-assistant-matter-hub/commit/b6057c08f64f0776b4b852ead7744e19f6b2ebc5))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* enhance System Info with version, environment detection, CPU model ([20dc7e1](https://github.com/RiDDiX/home-assistant-matter-hub/commit/20dc7e1f629b50677f1a172151b62a4fad4e63cb))
|
||||
|
||||
# [2.0.0-alpha.66](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.65...v2.0.0-alpha.66) (2026-01-29)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* capture application logs in buffer for Log Viewer API ([d58c7fb](https://github.com/RiDDiX/home-assistant-matter-hub/commit/d58c7fbd9db384d80d2f2c040576d0484c20ca18))
|
||||
|
||||
# [2.0.0-alpha.65](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.64...v2.0.0-alpha.65) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use relative API paths for Home Assistant ingress compatibility ([a791fd9](https://github.com/RiDDiX/home-assistant-matter-hub/commit/a791fd95dda9f9b1c8b1f02967783d6d0358aac3))
|
||||
|
||||
# [2.0.0-alpha.64](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.63...v2.0.0-alpha.64) (2026-01-29)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add Full Backup with Identity option and fix API paths in BackupRestore ([8822468](https://github.com/RiDDiX/home-assistant-matter-hub/commit/88224683d79db50e5178602f0f0facbefc87f3c3))
|
||||
|
||||
# [2.0.0-alpha.63](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.62...v2.0.0-alpha.63) (2026-01-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* improve system info API with more parameters (CPU, load, process info) ([8c60bc3](https://github.com/RiDDiX/home-assistant-matter-hub/commit/8c60bc3d7889daf9aa7e609c77d95d15dee4e502))
|
||||
|
||||
# [2.0.0-alpha.62](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.61...v2.0.0-alpha.62) (2026-01-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* graceful handling of /api/system/info 404 and restore missing components ([26e396d](https://github.com/RiDDiX/home-assistant-matter-hub/commit/26e396d409062e7613ebb6e626bc636b5a0d1664))
|
||||
|
||||
# [2.0.0-alpha.61](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.60...v2.0.0-alpha.61) (2026-01-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* comprehensive UI enhancements - logs, system info, device overview, and devices page ([9e21ba7](https://github.com/RiDDiX/home-assistant-matter-hub/commit/9e21ba7ec986204bb7ac34e6b4fdcc68b4b68ddd))
|
||||
|
||||
# [2.0.0-alpha.60](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.59...v2.0.0-alpha.60) (2026-01-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use pre-commit handlers for thermostat setpoint changes ([#9](https://github.com/RiDDiX/home-assistant-matter-hub/issues/9)) ([8070297](https://github.com/RiDDiX/home-assistant-matter-hub/commit/80702972a0de970dd3093a47f654169eb80a4f71))
|
||||
|
||||
# [2.0.0-alpha.59](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-alpha.58...v2.0.0-alpha.59) (2026-01-28)
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version: "2.0.0-alpha.59"
|
||||
version: "2.0.0-alpha.74"
|
||||
image: ghcr.io/riddix/home-assistant-matter-hub-addon
|
||||
slug: hamh-alpha
|
||||
name: Home-Assistant-Matter-Hub (Alpha)
|
||||
|
||||
@@ -1,3 +1,105 @@
|
||||
# [2.0.0-testing.22](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.21...v2.0.0-testing.22) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* correct thermostat deadband constraint logic with 2.5C margin ([93ec659](https://github.com/RiDDiX/home-assistant-matter-hub/commit/93ec659e816f1ec226055f045a0cfce57272cd05))
|
||||
|
||||
# [2.0.0-testing.21](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.20...v2.0.0-testing.21) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* adjust thermostat setpoint limits to satisfy Matter.js 200 deadband constraint ([4ac7f0d](https://github.com/RiDDiX/home-assistant-matter-hub/commit/4ac7f0d3d729e8dbf90440ebdcb1b36c6294a06c))
|
||||
|
||||
# [2.0.0-testing.20](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.19...v2.0.0-testing.20) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* remove AutoMode feature to prevent Matter.js permission error on thermostatRunningMode (fixes [#24](https://github.com/RiDDiX/home-assistant-matter-hub/issues/24)) ([a0cf010](https://github.com/RiDDiX/home-assistant-matter-hub/commit/a0cf0104aa1ae523d6054de9fe8c2923af0d0140))
|
||||
|
||||
# [2.0.0-testing.19](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.18...v2.0.0-testing.19) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add asLocalActor to preUpdateRunningMode for thermostat systemMode writes (fixes [#24](https://github.com/RiDDiX/home-assistant-matter-hub/issues/24)) ([b289c0e](https://github.com/RiDDiX/home-assistant-matter-hub/commit/b289c0eeef4e36381390f81cfe485718d10fd1af))
|
||||
|
||||
# [2.0.0-testing.18](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.17...v2.0.0-testing.18) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add asLocalActor to thermostat setpoint handlers (fixes [#9](https://github.com/RiDDiX/home-assistant-matter-hub/issues/9)) ([a2bc129](https://github.com/RiDDiX/home-assistant-matter-hub/commit/a2bc1293f1b599a209655479205bc0b91097a53e))
|
||||
* BridgeWizard sends wrong filter format - use HomeAssistantMatcher (fixes [#33](https://github.com/RiDDiX/home-assistant-matter-hub/issues/33)) ([8bca099](https://github.com/RiDDiX/home-assistant-matter-hub/commit/8bca09927050cbec890774abaaa93c73e30d3d1d))
|
||||
|
||||
# [2.0.0-testing.17](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.16...v2.0.0-testing.17) (2026-01-29)
|
||||
|
||||
# [2.0.0-testing.16](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.15...v2.0.0-testing.16) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* resolve lint formatting errors in SystemInfo and BackupRestore ([1d032aa](https://github.com/RiDDiX/home-assistant-matter-hub/commit/1d032aa926765335757cacfb6c0cb9fdd0459418))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* enhance System Info with version, environment detection, CPU model ([1376def](https://github.com/RiDDiX/home-assistant-matter-hub/commit/1376def479cf33d132b8a0e0d824b31ccacc7b02))
|
||||
|
||||
# [2.0.0-testing.15](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.14...v2.0.0-testing.15) (2026-01-29)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* capture application logs in buffer for Log Viewer API ([d53faa0](https://github.com/RiDDiX/home-assistant-matter-hub/commit/d53faa022b80f1f498d0ecbb8cd3695199a7714e))
|
||||
|
||||
# [2.0.0-testing.14](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.13...v2.0.0-testing.14) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use relative API paths for Home Assistant ingress compatibility ([d53131b](https://github.com/RiDDiX/home-assistant-matter-hub/commit/d53131b32f63fb1ea206f8b44dba5f8df47323ea))
|
||||
|
||||
# [2.0.0-testing.13](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.12...v2.0.0-testing.13) (2026-01-29)
|
||||
|
||||
|
||||
* feat!: bump to version 4.0 series for testing branch ([427b12a](https://github.com/RiDDiX/home-assistant-matter-hub/commit/427b12ae90d43f5278a9e832be26e6776ef09eac))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* Major version bump to 4.0 series. This testing branch may contain breaking changes, experimental features, and unstable code. Use at your own risk.
|
||||
|
||||
# [2.0.0-testing.12](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.11...v2.0.0-testing.12) (2026-01-29)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add Full Backup with Identity option and fix API paths in BackupRestore ([ed3bc78](https://github.com/RiDDiX/home-assistant-matter-hub/commit/ed3bc7861314d61f0647674a05e6b270397c4115))
|
||||
|
||||
# [2.0.0-testing.11](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.10...v2.0.0-testing.11) (2026-01-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* improve system info API with more parameters (CPU, load, process info) ([4f62d98](https://github.com/RiDDiX/home-assistant-matter-hub/commit/4f62d9853d758658dd20d44563ecd3f2c6328cd5))
|
||||
|
||||
# [2.0.0-testing.10](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.9...v2.0.0-testing.10) (2026-01-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* graceful handling of /api/system/info 404 and restore missing components ([da587e9](https://github.com/RiDDiX/home-assistant-matter-hub/commit/da587e96a13044d6e21de423a1b1569db56dc26b))
|
||||
|
||||
# [2.0.0-testing.9](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.8...v2.0.0-testing.9) (2026-01-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* comprehensive UI enhancements - logs, system info, device overview, and devices page ([7a0c4f0](https://github.com/RiDDiX/home-assistant-matter-hub/commit/7a0c4f08d3c2f5d07988e5e9d8e0a6b5d45e5862))
|
||||
|
||||
# [2.0.0-testing.8](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v2.0.0-testing.7...v2.0.0-testing.8) (2026-01-28)
|
||||
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
version: "2.0.0-testing.8"
|
||||
image: ghcr.io/riddix/home-assistant-matter-hub-addon-testing
|
||||
version: "2.0.0-testing.22"
|
||||
image: ghcr.io/riddix/home-assistant-matter-hub-addon
|
||||
slug: hamh-testing
|
||||
name: Home-Assistant-Matter-Hub (Testing)
|
||||
description: "\U0001F9EA TESTING VERSION - For Matter.js debugging only! Contains debug logging without ACL workaround patch."
|
||||
url: https://github.com/riddix/home-assistant-matter-hub/tree/testing-matterjs
|
||||
description: "⚠️ TESTING VERSION - May contain BREAKING CHANGES! Experimental features, unstable code, and cutting-edge Matter.js updates. Use at your own risk. Not recommended for production use."
|
||||
url: https://github.com/riddix/home-assistant-matter-hub/tree/testing
|
||||
panel_icon: mdi:bug
|
||||
panel_title: Matter Hub Testing
|
||||
homeassistant: 2024.1.0
|
||||
@@ -21,7 +21,9 @@ options:
|
||||
app_log_level: debug
|
||||
disable_log_colors: false
|
||||
mdns_network_interface: ""
|
||||
matter_js_testing: true
|
||||
schema:
|
||||
app_log_level: list(silly|debug|info|notice|warn|error|fatal)
|
||||
disable_log_colors: bool
|
||||
mdns_network_interface: "str?"
|
||||
matter_js_testing: bool
|
||||
|
||||
@@ -1,3 +1,89 @@
|
||||
## [1.7.36](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.35...v1.7.36) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* correct thermostat deadband constraint logic with 2.5C margin ([b37f03c](https://github.com/RiDDiX/home-assistant-matter-hub/commit/b37f03c8d452f6a7c2e4a32cf869b3ff3e8ba761))
|
||||
|
||||
## [1.7.35](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.34...v1.7.35) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* adjust thermostat setpoint limits to satisfy Matter.js 200 deadband constraint ([3cc6ec6](https://github.com/RiDDiX/home-assistant-matter-hub/commit/3cc6ec6c19e39e5c4bbd99a1c4fbe96bd4f90a88))
|
||||
|
||||
## [1.7.34](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.33...v1.7.34) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* remove AutoMode feature to prevent Matter.js permission error on thermostatRunningMode (fixes [#24](https://github.com/RiDDiX/home-assistant-matter-hub/issues/24)) ([7fb48d2](https://github.com/RiDDiX/home-assistant-matter-hub/commit/7fb48d2dedd56ae8f95b8d994a63721dab853eff))
|
||||
|
||||
## [1.7.33](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.32...v1.7.33) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add asLocalActor to preUpdateRunningMode for thermostat systemMode writes (fixes [#24](https://github.com/RiDDiX/home-assistant-matter-hub/issues/24)) ([27055dd](https://github.com/RiDDiX/home-assistant-matter-hub/commit/27055dd656748ab754f00f821ae1665460231e5f))
|
||||
|
||||
## [1.7.32](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.31...v1.7.32) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add asLocalActor to thermostat setpoint handlers (fixes [#9](https://github.com/RiDDiX/home-assistant-matter-hub/issues/9)) ([61fb48d](https://github.com/RiDDiX/home-assistant-matter-hub/commit/61fb48d066048faecb8d1ad8c2d8185d53a7168b))
|
||||
* BridgeWizard sends wrong filter format - use HomeAssistantMatcher (fixes [#33](https://github.com/RiDDiX/home-assistant-matter-hub/issues/33)) ([478b1b8](https://github.com/RiDDiX/home-assistant-matter-hub/commit/478b1b83e15fc5b9d675b36bf40ed9e73ef97cba))
|
||||
|
||||
## [1.7.31](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.30...v1.7.31) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* resolve lint formatting errors in SystemInfo and BackupRestore ([c9b8303](https://github.com/RiDDiX/home-assistant-matter-hub/commit/c9b830379f90fe0c1cfb6397ab6eacefd4a7da12))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* enhance System Info with version, environment detection, CPU model ([14e1b67](https://github.com/RiDDiX/home-assistant-matter-hub/commit/14e1b673deab9a153e627e0e795e2fa654f17fc4))
|
||||
|
||||
## [1.7.30](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.29...v1.7.30) (2026-01-29)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* capture application logs in buffer for Log Viewer API ([3d94994](https://github.com/RiDDiX/home-assistant-matter-hub/commit/3d9499450a3b4c9ccb84512a445347e1dbbef08f))
|
||||
|
||||
## [1.7.29](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.28...v1.7.29) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use relative API paths for Home Assistant ingress compatibility ([7aa2348](https://github.com/RiDDiX/home-assistant-matter-hub/commit/7aa234838c35a87fa446e3b51eb85c7d3e12d322))
|
||||
|
||||
## [1.7.28](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.27...v1.7.28) (2026-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add missing dependencies (archiver, multer, unzipper) to app package.json ([e6057d7](https://github.com/RiDDiX/home-assistant-matter-hub/commit/e6057d70cfedd9e8c0342f5b7050c476dbbca763))
|
||||
* graceful handling of /api/system/info 404 and restore missing components ([dec4e00](https://github.com/RiDDiX/home-assistant-matter-hub/commit/dec4e00f0cba55ece1030b8817e620538f25f947))
|
||||
* sync frontend/backend/common packages from alpha to fix missing components ([c658289](https://github.com/RiDDiX/home-assistant-matter-hub/commit/c658289c64b69e2a707977a78a999b5d8d43eec2))
|
||||
* sync pnpm-lock.yaml and backend package.json from alpha to include all dependencies ([5430ea8](https://github.com/RiDDiX/home-assistant-matter-hub/commit/5430ea8b95e3ec7be9e00446b8bdc3dfc5b95e4e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add Full Backup with Identity option and fix API paths in BackupRestore ([ab6b663](https://github.com/RiDDiX/home-assistant-matter-hub/commit/ab6b663c64d9ad1d4eaac09598e5a844820f1f55))
|
||||
* comprehensive UI enhancements - logs, system info, device overview, and devices page ([5e621aa](https://github.com/RiDDiX/home-assistant-matter-hub/commit/5e621aa5d0cf88b0785a4780f6f3d21cd329c522))
|
||||
* improve system info API with more parameters (CPU, load, process info) ([fc291a6](https://github.com/RiDDiX/home-assistant-matter-hub/commit/fc291a6d0e38d042e4028e7713d481c45bab5a83))
|
||||
|
||||
## [1.7.27](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.26...v1.7.27) (2026-01-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use pre-commit handlers for thermostat setpoint changes ([#9](https://github.com/RiDDiX/home-assistant-matter-hub/issues/9)) ([0b1c118](https://github.com/RiDDiX/home-assistant-matter-hub/commit/0b1c11827837135b75484210202f4a8c14ccf137))
|
||||
|
||||
## [1.7.26](https://github.com/RiDDiX/home-assistant-matter-hub/compare/v1.7.25...v1.7.26) (2026-01-28)
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version: "1.7.26"
|
||||
version: "1.7.36"
|
||||
image: ghcr.io/riddix/home-assistant-matter-hub-addon
|
||||
slug: hamh
|
||||
name: Home-Assistant-Matter-Hub
|
||||
|
||||
Reference in New Issue
Block a user