Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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).

## [0.3.1] - 2025-12-18

### Fixed
- Fixed "Invalid handler specified" error during integration configuration by renaming config flow handler class from `HomebridgeUpdateFlowHandler` to `ConfigFlowHandler` to follow Home Assistant naming conventions
- Removed deprecated `CONNECTION_CLASS` class attribute from config flow handler

### Changed
- Updated manifest.json version to 0.3.1
- Updated hacs.json version to 0.3.1

## [0.3.0] - 2025-12-11

### Added
Expand Down
3 changes: 1 addition & 2 deletions custom_components/homebridge_monitor/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@
)


class HomebridgeUpdateFlowHandler(config_entries.ConfigFlow):
class ConfigFlowHandler(config_entries.ConfigFlow):
"""Handle a config flow for homebridge_monitor, including reauth."""

VERSION = 1
DOMAIN = DOMAIN
CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_POLL

def __init__(self) -> None:
"""Initialize flow state."""
Expand Down
2 changes: 1 addition & 1 deletion custom_components/homebridge_monitor/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"documentation": "https://github.com/Geek-MD/Homebridge_Monitor",
"iot_class": "local_polling",
"requirements": [],
"version": "0.3.0"
"version": "0.3.1"
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"tags": ["homebridge", "monitor", "updates", "plugins"],
"authors": ["Geek-MD"],
"domains": ["binary_sensor"],
"version": "0.3.0",
"version": "0.3.1",
"repo_url": "https://github.com/Geek-MD/Homebridge_Monitor"
}