Skip to content

Bump insteon panel to 0.6.0 to fix dialog button issues#159449

Merged
joostlek merged 6 commits into
home-assistant:devfrom
teharris1:update-insteon
Dec 20, 2025
Merged

Bump insteon panel to 0.6.0 to fix dialog button issues#159449
joostlek merged 6 commits into
home-assistant:devfrom
teharris1:update-insteon

Conversation

@teharris1
Copy link
Copy Markdown
Contributor

Breaking change

Proposed change

Upgrade the Insteon configuration panel to the new version.
Change log: pyinsteon/insteon-panel@0.5.0...2025.12.19.154216

Type of change

  • Dependency upgrade
  • Bugfix (non-breaking change which fixes an issue)
  • New integration (thank you!)
  • New feature (which adds functionality to an existing integration)
  • Deprecation (breaking change to happen in the future)
  • Breaking change (fix/feature causing existing functionality to break)
  • Code quality improvements to existing code or addition of tests

Additional information

Checklist

  • I understand the code I am submitting and can explain how it works.
  • The code change is tested and works locally.
  • Local tests pass. Your PR cannot be merged unless tests pass
  • There is no commented out code in this PR.
  • I have followed the development checklist
  • I have followed the perfect PR recommendations
  • The code has been formatted using Ruff (ruff format homeassistant tests)
  • Tests have been added to verify that the new code works.
  • Any generated code has been carefully reviewed for correctness and compliance with project standards.

If user exposed functionality or configuration variables are added/changed:

If the code communicates with devices, web services, or third-party tools:

  • The manifest file has all fields filled out correctly.
    Updated and included derived files by running: python3 -m script.hassfest.
  • New or updated dependencies have been added to requirements_all.txt.
    Updated by running python3 -m script.gen_requirements_all.
  • For the updated dependencies - a link to the changelog, or at minimum a diff between library versions is added to the PR description.

To help with the load of incoming pull requests:

Copilot AI review requested due to automatic review settings December 19, 2025 15:44
@home-assistant home-assistant Bot added bugfix cla-signed dependency Pull requests marked as a dependency upgrade integration: dynalite integration: insteon small-pr PRs with less than 30 lines. labels Dec 19, 2025
Copy link
Copy Markdown
Contributor

@home-assistant home-assistant Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a merge conflict.

@home-assistant home-assistant Bot marked this pull request as draft December 19, 2025 15:44
@home-assistant
Copy link
Copy Markdown
Contributor

Please take a look at the requested changes, and use the Ready for review button when you are done, thanks 👍

Learn more about our pull request process.

@home-assistant
Copy link
Copy Markdown
Contributor

Hey there @ziv1234, mind taking a look at this pull request as it has been labeled with an integration (dynalite) you are listed as a code owner for? Thanks!

Code owner commands

Code owners of dynalite can trigger bot actions by commenting:

  • @home-assistant close Closes the pull request.
  • @home-assistant rename Awesome new title Renames the pull request.
  • @home-assistant reopen Reopen the pull request.
  • @home-assistant unassign dynalite Removes the current integration label and assignees on the pull request, add the integration domain after the command.
  • @home-assistant add-label needs-more-information Add a label (needs-more-information, problem in dependency, problem in custom component) to the pull request.
  • @home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component) on the pull request.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR upgrades the Insteon integration's frontend and backend dependencies to fix dialog button issues. The main updates include bumping insteon-frontend-home-assistant from 0.5.0 to 0.6.0 and pyinsteon from 1.6.3 to 1.6.4, along with necessary code changes to support the new frontend package structure.

Key changes:

  • Dependency version bumps for both the Insteon frontend panel and pyinsteon library
  • URL format correction from dash to dot separator (entrypoint-{build_id}.jsentrypoint.{build_id}.js) to match the new frontend package structure
  • Bug fix in properties reset functionality to include device.configuration items

Reviewed changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.

Show a summary per file
File Description
requirements_test_all.txt Updated test dependencies for insteon-frontend-home-assistant (0.5.0 → 0.6.0) and pyinsteon (1.6.3 → 1.6.4)
requirements_all.txt Updated production dependencies for insteon-frontend-home-assistant (0.5.0 → 0.6.0) and pyinsteon (1.6.3 → 1.6.4)
homeassistant/components/insteon/manifest.json Updated integration requirements to reference new dependency versions
homeassistant/components/insteon/api/properties.py Added missing reset loop for device.configuration values in websocket_reset_properties
homeassistant/components/insteon/api/init.py Updated module URL format from dash to dot separator for new frontend package structure
homeassistant/components/dynalite/panel.py Updated module URL format from dash to dot separator for consistency with updated pattern
Comments suppressed due to low confidence (1)

homeassistant/components/insteon/api/properties.py:290

  • The iteration pattern is inconsistent across these three loops. Line 285 iterates over .values() and accesses the property directly, while lines 287 and 289 iterate over keys and then access the dictionary using those keys. For consistency and readability, all three loops should use the same pattern. Consider either changing line 285 to for prop in device.configuration: followed by device.configuration[prop].new_value = None, or changing lines 287-290 to iterate over .values() like line 285 does.
    for prop in device.configuration.values():
        prop.new_value = None
    for prop in device.operating_flags:
        device.operating_flags[prop].new_value = None
    for prop in device.properties:
        device.properties[prop].new_value = None

@teharris1 teharris1 marked this pull request as ready for review December 19, 2025 16:32
@joostlek joostlek added this to the 2025.12.4 milestone Dec 19, 2025
@bramkragten bramkragten modified the milestones: 2025.12.4, 2025.12.5 Dec 19, 2025
@joostlek joostlek merged commit 3c752d4 into home-assistant:dev Dec 20, 2025
67 checks passed
@github-actions github-actions Bot locked and limited conversation to collaborators Dec 21, 2025
@teharris1 teharris1 deleted the update-insteon branch January 22, 2026 03:48
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Insteon buttons not showing up on add device screen.

5 participants