Compare commits

...

16 Commits

Author SHA1 Message Date
github-actions[bot]
9c5209a32e release(hamh-testing): 2.0.0-testing.13 2026-01-29 00:19:34 +00:00
RiDDiX
ff0e085fcd fix: update hamh-testing description to warn about breaking changes 2026-01-29 01:15:18 +01:00
RiDDiX
cdd63974df fix: correct Docker image name for hamh-testing (remove -testing suffix) 2026-01-29 01:12:47 +01:00
github-actions[bot]
179e8cc792 release(hamh-testing): 2.0.0-testing.12 2026-01-29 00:08:42 +00:00
github-actions[bot]
88d13344cc release(hamh-alpha): 2.0.0-alpha.64 2026-01-29 00:08:25 +00:00
github-actions[bot]
b4fdeebfa2 release(hamh-testing): 2.0.0-testing.11 2026-01-28 23:49:41 +00:00
github-actions[bot]
6d29c8ef92 release(hamh-alpha): 2.0.0-alpha.63 2026-01-28 23:49:32 +00:00
github-actions[bot]
e52aca9716 release(hamh-alpha): 2.0.0-alpha.62 2026-01-28 23:44:21 +00:00
github-actions[bot]
42cfbe92e1 release(hamh-testing): 2.0.0-testing.10 2026-01-28 23:43:54 +00:00
RiDDiX
64f90a36fe fix: prevent double channel suffix in project name 2026-01-29 00:41:58 +01:00
github-actions[bot]
80b4c29bed release(hamh-testing): 4.0.0-testing.1 2026-01-28 23:32:36 +00:00
RiDDiX
be474ebdb8 fix: don't append channel to hamh-testing project directory 2026-01-29 00:32:21 +01:00
RiDDiX
8b1e146395 fix: clean merge conflict markers and reset testing version to 4.0.0-testing.1 2026-01-29 00:30:19 +01:00
github-actions[bot]
d3ce8ac636 release(hamh-alpha): 2.0.0-alpha.61 2026-01-28 23:28:21 +00:00
RiDDiX
2172fe81fb feat: reset testing version to 4.0.0-testing.1 with matter.js testing branch 2026-01-29 00:27:25 +01:00
RiDDiX
dceb495aea feat: reset testing version to 4.0.0-testing.1 with matter.js testing branch 2026-01-29 00:27:07 +01:00
5 changed files with 84 additions and 7 deletions

View File

@@ -52,9 +52,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"

View File

@@ -1,3 +1,31 @@
# [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)

View File

@@ -1,4 +1,4 @@
version: "2.0.0-alpha.60"
version: "2.0.0-alpha.64"
image: ghcr.io/riddix/home-assistant-matter-hub-addon
slug: hamh-alpha
name: Home-Assistant-Matter-Hub (Alpha)

View File

@@ -1,3 +1,41 @@
# [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)

View File

@@ -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.13"
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