Skip to content

Z-Wave.me: Allow updating entities#167839

Merged
joostlek merged 6 commits into
home-assistant:devfrom
Tomeamis:feat/LightUpdate
May 11, 2026
Merged

Z-Wave.me: Allow updating entities#167839
joostlek merged 6 commits into
home-assistant:devfrom
Tomeamis:feat/LightUpdate

Conversation

@Tomeamis
Copy link
Copy Markdown
Contributor

@Tomeamis Tomeamis commented Apr 9, 2026

Proposed change

Makes entities from the Z-wave.me integration support being explicitly updated

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

  • This PR fixes or closes issue: fixes #
  • This PR is related to issue:
  • Link to documentation pull request:
  • Link to developer documentation pull request:
  • Link to frontend pull request:

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 diff between library versions and ideally a link to the changelog/release notes is added to the PR description.

To help with the load of incoming pull requests:

Copilot AI review requested due to automatic review settings April 9, 2026 20:11
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.

Hi @Tomeamis

It seems you haven't yet signed a CLA. Please do so here.

Once you do that we will be able to review and accept this pull request.

Thanks!

@home-assistant home-assistant Bot marked this pull request as draft April 9, 2026 20:11
@home-assistant
Copy link
Copy Markdown
Contributor

home-assistant Bot commented Apr 9, 2026

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

home-assistant Bot commented Apr 9, 2026

Hey there @lawfulchaos, @Z-Wave-Me, @PoltoS, mind taking a look at this pull request as it has been labeled with an integration (zwave_me) you are listed as a code owner for? Thanks!

Code owner commands

Code owners of zwave_me 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 zwave_me 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, problem in config, problem in device, feature-request) to the pull request.
  • @home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component, problem in config, problem in device, feature-request) on the pull request.

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.

Hi @Tomeamis

It seems you haven't yet signed a CLA. Please do so here.

Once you do that we will be able to review and accept this pull request.

Thanks!

@Tomeamis Tomeamis marked this pull request as ready for review April 9, 2026 20:23
@home-assistant home-assistant Bot dismissed stale reviews from themself April 9, 2026 20:23

Stale

@mib1185
Copy link
Copy Markdown
Member

mib1185 commented Apr 9, 2026

Which use case or bug will this solve or fix?

Copy link
Copy Markdown
Member

@joostlek joostlek left a comment

Choose a reason for hiding this comment

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

CI is failing, can you take a look?

@home-assistant home-assistant Bot marked this pull request as draft April 9, 2026 22:12
@Tomeamis
Copy link
Copy Markdown
Contributor Author

Which use case or bug will this solve or fix?

I have a dimmable light that doesn't push updates to the controller. The controller seems to expect that, so after it issues a Set command, it also tries to get the value from the device. Unfortunately, if the change is slow enough, the update happens before the value changes, so the controller seems to think that nothing has changed. I tried to force the update from a HA script, but it did nothing. This ensures that the update command actually goes to the device, thus alerting the controller that changes are happening.

@Tomeamis Tomeamis marked this pull request as ready for review April 10, 2026 20:06
@home-assistant home-assistant Bot requested a review from joostlek April 10, 2026 20:06
@Tomeamis
Copy link
Copy Markdown
Contributor Author

CI is failing, can you take a look?

Done. Now the only failure is the test coverage, and there were no tests for this to begin with.

@mib1185
Copy link
Copy Markdown
Member

mib1185 commented Apr 11, 2026

I have a dimmable light that doesn't push updates to the controller. The controller seems to expect that, so after it issues a Set command, it also tries to get the value from the device. Unfortunately, if the change is slow enough, the update happens before the value changes, so the controller seems to think that nothing has changed. I tried to force the update from a HA script, but it did nothing. This ensures that the update command actually goes to the device, thus alerting the controller that changes are happening.

This sounds more like it should be solved in the zwave_me_ws library, rather than here in the consuming application (Home Assistant) 🤔

@Tomeamis
Copy link
Copy Markdown
Contributor Author

This sounds more like it should be solved in the zwave_me_ws library, rather than here in the consuming application (Home Assistant) 🤔

How so? You can't force update from HA if the HA integration ignores the command. The library you linked is just a wrapper around their websocket API, which does nothing on its own. The attempted update logic is in the controller, which indeed has many places that could be improved, but sadly, they aanounced that there will be no new versions. Also, what exactly is bad about Home Assistant being able to solicit an update from the device?

@mib1185
Copy link
Copy Markdown
Member

mib1185 commented Apr 11, 2026

Besides the update method should be placed in the base ZWaveMeEntity class, so all possible faulty devices could be manually updated, this is still not a good user experience - the user should not be in charge to check if a config change on the device arrived, the data are correct updated and if not manually force an update - this should be done by the integration automatically, so no user intervention is necessary

@Tomeamis
Copy link
Copy Markdown
Contributor Author

Tomeamis commented Apr 11, 2026

Besides the update method should be placed in the base ZWaveMeEntity class, so all possible faulty devices could be manually updated, this is still not a good user experience - the user should not be in charge to check if a config change on the device arrived, the data are correct updated and if not manually force an update - this should be done by the integration automatically, so no user intervention is necessary

I have thought about putting it there, but I wasn't sure that I should do that with all device types, since I can only test a few. But if you think it's better, I can move it. AFAIK all the device types either support the "update" command or ignore it, so it shouldn't break anything.
And I agree that the user experience is not the best, but the best user experience would be if the device actually reported the brightness change. But since I can't make it do that, the next best thing is if I have the tools to work around the defects. It's not like this forces the user to manually update, it just gives them the option. And I thought the whole point of Home Assistant was putting the power in the hands of the user.

EDIT: Also, most devices do report the changes themselves, so it's not like the integration should just call the "update" command after every change command.

@PoltoS
Copy link
Copy Markdown
Contributor

PoltoS commented Apr 11, 2026

The update process should not be in the integration, but rather in Z-Way itself.

Z-Way is smart enough to detect that the device supports Supervision and LifeLine. If so, it won't do additional updates. Otherwise, it will poll the device itself after the update.

If the device, on getting a Set and then a Get, will return the old value and no unsolicited report, it is a big device issue. You can write a script to poll such a device on Get (tricky, but doable).

But better to check first:

  • does it support Supervision
  • is it a Z-Wave Plus device with LifeLine
  • is Z-Way in LifeLine Association group?

@Tomeamis
Copy link
Copy Markdown
Contributor Author

The update process should not be in the integration, but rather in Z-Way itself.

Z-Way is smart enough to detect that the device supports Supervision and LifeLine. If so, it won't do additional updates. Otherwise, it will poll the device itself after the update.

If the device, on getting a Set and then a Get, will return the old value and no unsolicited report, it is a big device issue. You can write a script to poll such a device on Get (tricky, but doable).

But better to check first:

  • does it support Supervision
  • is it a Z-Wave Plus device with LifeLine
  • is Z-Way in LifeLine Association group?

It doesn't support Supervision.

And yes, it does poll the device after the Set. But it doesn't seem to take the Set duration into account, it just issues a Get immediately, and if that returns a different value, (apparently) every 2 seconds thereafter until it returns the same value. Unfortunately, if the duration is, for example, 10 minutes, that makes for one tick every 6 seconds, so the 2 second Get interval returns the same value and the polling ends.

Also, in your opinion, would it cause any issues if I just put the update method in the ZWaveMeEntity? AFAIK HA wouldn't call it by itself, since the Integration is Local Push, so it should just give the user the option of forcing an update.

@PoltoS
Copy link
Copy Markdown
Contributor

PoltoS commented Apr 14, 2026

I got your point about a very slow Set. Make sense, I'll check if we can improve Z-Way to change 2s to depend on the duration (if it is set). Good idea! Issue created.

Also, in your opinion, would it cause any issues if I just put the update method in the ZWaveMeEntity? AFAIK HA wouldn't call it by itself, since the Integration is Local Push, so it should just give the user the option of forcing an update.

Won't harm if it is not called periodically.

@joostlek joostlek marked this pull request as draft April 14, 2026 14:25
@Tomeamis Tomeamis changed the title Z-Wave.me: Allow updating a light Z-Wave.me: Allow updating entities Apr 14, 2026
@Tomeamis
Copy link
Copy Markdown
Contributor Author

I moved the update to ZWaveMeEntity, tested it with some other devices and it seems to work fine.

I got your point about a very slow Set. Make sense, I'll check if we can improve Z-Way to change 2s to depend on the duration (if it is set). Good idea! Issue created.

Also, in your opinion, would it cause any issues if I just put the update method in the ZWaveMeEntity? AFAIK HA wouldn't call it by itself, since the Integration is Local Push, so it should just give the user the option of forcing an update.

Won't harm if it is not called periodically.

Oh, nice. I thought the development was over. I looked in the GitHub repos and couldn't find it, would you mind linking it?

@Tomeamis Tomeamis marked this pull request as ready for review April 14, 2026 21:29
@joostlek joostlek merged commit e2805e4 into home-assistant:dev May 11, 2026
32 of 33 checks passed
bogaczl added a commit to bogaczl/core that referenced this pull request May 11, 2026
Bump aiotankerkoenig to 0.5.3 (home-assistant#170224)

Fix entities refresh for UptimeRobot (home-assistant#170217)

Update easyEnergy exception and icon translations (home-assistant#170218)

Add more Gen1 sensors to indevolt (home-assistant#170191)

Bump letpot to 0.7.0 (home-assistant#169868)

Migrate Thermo Beacon to config entry runtime data (home-assistant#170226)

Migrate Sensirion BLE to config entry runtime data (home-assistant#170227)

Co-authored-by: Josef Zweck <josef@zweck.dev>

Bump imgw-pib to 2.1.2 (home-assistant#170274)

Bump serialx to 1.7.2 (home-assistant#170272)

Bump aioamazondevices to 13.5.0 (home-assistant#170258)

Update upb-lib to 0.7.0 (home-assistant#170051)

Bump qbittorrent-api to 2026.5.1 (home-assistant#170181)

Use VERSION from PrusaLinkConfigFlow in prusalink (home-assistant#170200)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Migrate Duco to python-duco-connectivity and remove temperature sensors (home-assistant#170237)

fix: Do not forget segments from state when a new config arrives (home-assistant#170265)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete icon translations for Indevolt (home-assistant#170292)

Align Indevolt quality scale with documentation (home-assistant#170289)

Apply strict typing to Indevolt integration (home-assistant#170288)

iaqualink: set system specific polling interval (home-assistant#170279)

Use standby for HDMI-CEC turn off (home-assistant#170206)

prusalink: add continue-job button for ATTENTION state (home-assistant#170193)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

data grand lyon: implement diagnostics (home-assistant#170184)

Set serial port description from `description`, not `product` (home-assistant#170160)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>

Update infrared-protocols to 4.0.0 (home-assistant#170297)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

data grand lyon: use test fixture instead of manual patching (home-assistant#170294)

Handle empty BSB-LAN heating circuits (home-assistant#170249)

Add diagnostics platform to Home Assistant Connect ZBT-2 (home-assistant#170158)

Fix deprecated_class to work with inheritance (home-assistant#170137)

Skip offline devices instead of aborting ViCare diagnostics (home-assistant#170106)

Fix local API incorrectly marking devices as unavailable in Overkiz (home-assistant#170118)

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>

Add RepairsFlowResult TypeAlias (home-assistant#170263)

Fix flaky diagnostics test for Novy Cooker Hood (home-assistant#170299)

Fix spelling of RS-232 in Denon RS-232 integration (home-assistant#170298)

data grand lyon: implement reconfiguration flow (home-assistant#170210)

Add shared test mocks for the Infrared integration (home-assistant#170296)

Co-authored-by: Claude <noreply@anthropic.com>

Bump renault-api to 0.5.8 (home-assistant#170309)

Bump indevolt api to 1.7.2 (home-assistant#170310)

Update IQS to platinum for UptimeRobot (home-assistant#170260)

Add player specific sensor to nintendo_parental_controls (home-assistant#155786)

Co-authored-by: Joshua Peisach (ItzSwirlz) <itzswirlz2020@outlook.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Erik Montnemery <erik@montnemery.com>

Fix hassio.backup_partial AttributeError when folders are specified (home-assistant#170312)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add backoff to forbidden packages (home-assistant#170242)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add tuya water timer data points (home-assistant#170314)

Add more entities for Tuya camera (home-assistant#169966)

Co-authored-by: mik-laj <12058428+mik-laj@users.noreply.github.com>
Co-authored-by: Norbert Rittel <norbert@rittel.de>

Add Tuya DLQ fixture (home-assistant#169585)

Update rf-protocols to 3.0.0 (home-assistant#170301)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add Message Expire Interval option to MQTT publish service (home-assistant#169317)

Co-authored-by: Copilot <copilot@github.com>

Add new CentriConnect component (home-assistant#166933)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Watts: add HVAC action + preset mode (home-assistant#169546)

Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Joostlek <joostlek@outlook.com>

Add quality scale for airnow integration (home-assistant#169709)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Fix nobo_hub NoboProfileSelector class-level mutable defaults (home-assistant#170119)

Add cover support to control4 (home-assistant#169417)

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>

Add Mitsubishi brand (home-assistant#169924)

Co-authored-by: Nikolai Rahimi <nikolairahimi@users.noreply.github.com>
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Fix coordinator data mutation in YouTube diagnostics (home-assistant#170300)

Co-authored-by: FIls0010 <a1867444@adelaide.edu.au>

Bump aiovodafone to 3.2.0 (home-assistant#170322)

Add countdown number for Tuya sfkzq single-valve timers (home-assistant#170318)

Allow setting hvac_mode in generic_thermostat.set_temperature (home-assistant#168062)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Z-Wave.me: Allow updating entities (home-assistant#167839)

Fix MQTT device discovery not using shared QoS and encoding options (home-assistant#170195)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Google assistant temperature setting active thermostat mode (home-assistant#166448)

Co-authored-by: Lucas Sanchez Sagrado <lucas.sansag@educa.jcyl.es>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale to Tesla Fleet integration (home-assistant#160475)

Co-authored-by: Claude <noreply@anthropic.com>

Only use SmartThings switch for light if it should (home-assistant#166424)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale file to Ness Alarm (home-assistant#163425)

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Fix Shelly media player availability (home-assistant#170319)

Update discovery description wording (home-assistant#170325)

Bump teltasync to 0.3.0, fix discovery for older devices (home-assistant#169660)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete exception translations for Indevolt (home-assistant#170291)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add Kiosker switch platform (home-assistant#168858)

Add `ZWaveNodeBaseEntity` for Z-Wave node-level entities (home-assistant#170124)

Add number platform to eurotronic_cometblue (home-assistant#168119)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
bogaczl added a commit to bogaczl/core that referenced this pull request May 11, 2026
Bump aiotankerkoenig to 0.5.3 (home-assistant#170224)

Fix entities refresh for UptimeRobot (home-assistant#170217)

Update easyEnergy exception and icon translations (home-assistant#170218)

Add more Gen1 sensors to indevolt (home-assistant#170191)

Bump letpot to 0.7.0 (home-assistant#169868)

Migrate Thermo Beacon to config entry runtime data (home-assistant#170226)

Migrate Sensirion BLE to config entry runtime data (home-assistant#170227)

Co-authored-by: Josef Zweck <josef@zweck.dev>

Bump imgw-pib to 2.1.2 (home-assistant#170274)

Bump serialx to 1.7.2 (home-assistant#170272)

Bump aioamazondevices to 13.5.0 (home-assistant#170258)

Update upb-lib to 0.7.0 (home-assistant#170051)

Bump qbittorrent-api to 2026.5.1 (home-assistant#170181)

Use VERSION from PrusaLinkConfigFlow in prusalink (home-assistant#170200)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Migrate Duco to python-duco-connectivity and remove temperature sensors (home-assistant#170237)

fix: Do not forget segments from state when a new config arrives (home-assistant#170265)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete icon translations for Indevolt (home-assistant#170292)

Align Indevolt quality scale with documentation (home-assistant#170289)

Apply strict typing to Indevolt integration (home-assistant#170288)

iaqualink: set system specific polling interval (home-assistant#170279)

Use standby for HDMI-CEC turn off (home-assistant#170206)

prusalink: add continue-job button for ATTENTION state (home-assistant#170193)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

data grand lyon: implement diagnostics (home-assistant#170184)

Set serial port description from `description`, not `product` (home-assistant#170160)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>

Update infrared-protocols to 4.0.0 (home-assistant#170297)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

data grand lyon: use test fixture instead of manual patching (home-assistant#170294)

Handle empty BSB-LAN heating circuits (home-assistant#170249)

Add diagnostics platform to Home Assistant Connect ZBT-2 (home-assistant#170158)

Fix deprecated_class to work with inheritance (home-assistant#170137)

Skip offline devices instead of aborting ViCare diagnostics (home-assistant#170106)

Fix local API incorrectly marking devices as unavailable in Overkiz (home-assistant#170118)

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>

Add RepairsFlowResult TypeAlias (home-assistant#170263)

Fix flaky diagnostics test for Novy Cooker Hood (home-assistant#170299)

Fix spelling of RS-232 in Denon RS-232 integration (home-assistant#170298)

data grand lyon: implement reconfiguration flow (home-assistant#170210)

Add shared test mocks for the Infrared integration (home-assistant#170296)

Co-authored-by: Claude <noreply@anthropic.com>

Bump renault-api to 0.5.8 (home-assistant#170309)

Bump indevolt api to 1.7.2 (home-assistant#170310)

Update IQS to platinum for UptimeRobot (home-assistant#170260)

Add player specific sensor to nintendo_parental_controls (home-assistant#155786)

Co-authored-by: Joshua Peisach (ItzSwirlz) <itzswirlz2020@outlook.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Erik Montnemery <erik@montnemery.com>

Fix hassio.backup_partial AttributeError when folders are specified (home-assistant#170312)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add backoff to forbidden packages (home-assistant#170242)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add tuya water timer data points (home-assistant#170314)

Add more entities for Tuya camera (home-assistant#169966)

Co-authored-by: mik-laj <12058428+mik-laj@users.noreply.github.com>
Co-authored-by: Norbert Rittel <norbert@rittel.de>

Add Tuya DLQ fixture (home-assistant#169585)

Update rf-protocols to 3.0.0 (home-assistant#170301)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add Message Expire Interval option to MQTT publish service (home-assistant#169317)

Co-authored-by: Copilot <copilot@github.com>

Add new CentriConnect component (home-assistant#166933)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Watts: add HVAC action + preset mode (home-assistant#169546)

Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Joostlek <joostlek@outlook.com>

Add quality scale for airnow integration (home-assistant#169709)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Fix nobo_hub NoboProfileSelector class-level mutable defaults (home-assistant#170119)

Add cover support to control4 (home-assistant#169417)

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>

Add Mitsubishi brand (home-assistant#169924)

Co-authored-by: Nikolai Rahimi <nikolairahimi@users.noreply.github.com>
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Fix coordinator data mutation in YouTube diagnostics (home-assistant#170300)

Co-authored-by: FIls0010 <a1867444@adelaide.edu.au>

Bump aiovodafone to 3.2.0 (home-assistant#170322)

Add countdown number for Tuya sfkzq single-valve timers (home-assistant#170318)

Allow setting hvac_mode in generic_thermostat.set_temperature (home-assistant#168062)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Z-Wave.me: Allow updating entities (home-assistant#167839)

Fix MQTT device discovery not using shared QoS and encoding options (home-assistant#170195)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Google assistant temperature setting active thermostat mode (home-assistant#166448)

Co-authored-by: Lucas Sanchez Sagrado <lucas.sansag@educa.jcyl.es>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale to Tesla Fleet integration (home-assistant#160475)

Co-authored-by: Claude <noreply@anthropic.com>

Only use SmartThings switch for light if it should (home-assistant#166424)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale file to Ness Alarm (home-assistant#163425)

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Fix Shelly media player availability (home-assistant#170319)

Update discovery description wording (home-assistant#170325)

Bump teltasync to 0.3.0, fix discovery for older devices (home-assistant#169660)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete exception translations for Indevolt (home-assistant#170291)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add Kiosker switch platform (home-assistant#168858)

Add `ZWaveNodeBaseEntity` for Z-Wave node-level entities (home-assistant#170124)

Add number platform to eurotronic_cometblue (home-assistant#168119)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
bogaczl added a commit to bogaczl/core that referenced this pull request May 11, 2026
Bump aiotankerkoenig to 0.5.3 (home-assistant#170224)

Fix entities refresh for UptimeRobot (home-assistant#170217)

Update easyEnergy exception and icon translations (home-assistant#170218)

Add more Gen1 sensors to indevolt (home-assistant#170191)

Bump letpot to 0.7.0 (home-assistant#169868)

Migrate Thermo Beacon to config entry runtime data (home-assistant#170226)

Migrate Sensirion BLE to config entry runtime data (home-assistant#170227)

Co-authored-by: Josef Zweck <josef@zweck.dev>

Bump imgw-pib to 2.1.2 (home-assistant#170274)

Bump serialx to 1.7.2 (home-assistant#170272)

Bump aioamazondevices to 13.5.0 (home-assistant#170258)

Update upb-lib to 0.7.0 (home-assistant#170051)

Bump qbittorrent-api to 2026.5.1 (home-assistant#170181)

Use VERSION from PrusaLinkConfigFlow in prusalink (home-assistant#170200)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Migrate Duco to python-duco-connectivity and remove temperature sensors (home-assistant#170237)

fix: Do not forget segments from state when a new config arrives (home-assistant#170265)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete icon translations for Indevolt (home-assistant#170292)

Align Indevolt quality scale with documentation (home-assistant#170289)

Apply strict typing to Indevolt integration (home-assistant#170288)

iaqualink: set system specific polling interval (home-assistant#170279)

Use standby for HDMI-CEC turn off (home-assistant#170206)

prusalink: add continue-job button for ATTENTION state (home-assistant#170193)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

data grand lyon: implement diagnostics (home-assistant#170184)

Set serial port description from `description`, not `product` (home-assistant#170160)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>

Update infrared-protocols to 4.0.0 (home-assistant#170297)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

data grand lyon: use test fixture instead of manual patching (home-assistant#170294)

Handle empty BSB-LAN heating circuits (home-assistant#170249)

Add diagnostics platform to Home Assistant Connect ZBT-2 (home-assistant#170158)

Fix deprecated_class to work with inheritance (home-assistant#170137)

Skip offline devices instead of aborting ViCare diagnostics (home-assistant#170106)

Fix local API incorrectly marking devices as unavailable in Overkiz (home-assistant#170118)

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>

Add RepairsFlowResult TypeAlias (home-assistant#170263)

Fix flaky diagnostics test for Novy Cooker Hood (home-assistant#170299)

Fix spelling of RS-232 in Denon RS-232 integration (home-assistant#170298)

data grand lyon: implement reconfiguration flow (home-assistant#170210)

Add shared test mocks for the Infrared integration (home-assistant#170296)

Co-authored-by: Claude <noreply@anthropic.com>

Bump renault-api to 0.5.8 (home-assistant#170309)

Bump indevolt api to 1.7.2 (home-assistant#170310)

Update IQS to platinum for UptimeRobot (home-assistant#170260)

Add player specific sensor to nintendo_parental_controls (home-assistant#155786)

Co-authored-by: Joshua Peisach (ItzSwirlz) <itzswirlz2020@outlook.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Erik Montnemery <erik@montnemery.com>

Fix hassio.backup_partial AttributeError when folders are specified (home-assistant#170312)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add backoff to forbidden packages (home-assistant#170242)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add tuya water timer data points (home-assistant#170314)

Add more entities for Tuya camera (home-assistant#169966)

Co-authored-by: mik-laj <12058428+mik-laj@users.noreply.github.com>
Co-authored-by: Norbert Rittel <norbert@rittel.de>

Add Tuya DLQ fixture (home-assistant#169585)

Update rf-protocols to 3.0.0 (home-assistant#170301)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add Message Expire Interval option to MQTT publish service (home-assistant#169317)

Co-authored-by: Copilot <copilot@github.com>

Add new CentriConnect component (home-assistant#166933)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Watts: add HVAC action + preset mode (home-assistant#169546)

Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Joostlek <joostlek@outlook.com>

Add quality scale for airnow integration (home-assistant#169709)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Fix nobo_hub NoboProfileSelector class-level mutable defaults (home-assistant#170119)

Add cover support to control4 (home-assistant#169417)

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>

Add Mitsubishi brand (home-assistant#169924)

Co-authored-by: Nikolai Rahimi <nikolairahimi@users.noreply.github.com>
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Fix coordinator data mutation in YouTube diagnostics (home-assistant#170300)

Co-authored-by: FIls0010 <a1867444@adelaide.edu.au>

Bump aiovodafone to 3.2.0 (home-assistant#170322)

Add countdown number for Tuya sfkzq single-valve timers (home-assistant#170318)

Allow setting hvac_mode in generic_thermostat.set_temperature (home-assistant#168062)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Z-Wave.me: Allow updating entities (home-assistant#167839)

Fix MQTT device discovery not using shared QoS and encoding options (home-assistant#170195)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Google assistant temperature setting active thermostat mode (home-assistant#166448)

Co-authored-by: Lucas Sanchez Sagrado <lucas.sansag@educa.jcyl.es>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale to Tesla Fleet integration (home-assistant#160475)

Co-authored-by: Claude <noreply@anthropic.com>

Only use SmartThings switch for light if it should (home-assistant#166424)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale file to Ness Alarm (home-assistant#163425)

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Fix Shelly media player availability (home-assistant#170319)

Update discovery description wording (home-assistant#170325)

Bump teltasync to 0.3.0, fix discovery for older devices (home-assistant#169660)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete exception translations for Indevolt (home-assistant#170291)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add Kiosker switch platform (home-assistant#168858)

Add `ZWaveNodeBaseEntity` for Z-Wave node-level entities (home-assistant#170124)

Add number platform to eurotronic_cometblue (home-assistant#168119)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
bogaczl added a commit to bogaczl/core that referenced this pull request May 11, 2026
Bump aiotankerkoenig to 0.5.3 (home-assistant#170224)

Fix entities refresh for UptimeRobot (home-assistant#170217)

Update easyEnergy exception and icon translations (home-assistant#170218)

Add more Gen1 sensors to indevolt (home-assistant#170191)

Bump letpot to 0.7.0 (home-assistant#169868)

Migrate Thermo Beacon to config entry runtime data (home-assistant#170226)

Migrate Sensirion BLE to config entry runtime data (home-assistant#170227)

Co-authored-by: Josef Zweck <josef@zweck.dev>

Bump imgw-pib to 2.1.2 (home-assistant#170274)

Bump serialx to 1.7.2 (home-assistant#170272)

Bump aioamazondevices to 13.5.0 (home-assistant#170258)

Update upb-lib to 0.7.0 (home-assistant#170051)

Bump qbittorrent-api to 2026.5.1 (home-assistant#170181)

Use VERSION from PrusaLinkConfigFlow in prusalink (home-assistant#170200)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Migrate Duco to python-duco-connectivity and remove temperature sensors (home-assistant#170237)

fix: Do not forget segments from state when a new config arrives (home-assistant#170265)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete icon translations for Indevolt (home-assistant#170292)

Align Indevolt quality scale with documentation (home-assistant#170289)

Apply strict typing to Indevolt integration (home-assistant#170288)

iaqualink: set system specific polling interval (home-assistant#170279)

Use standby for HDMI-CEC turn off (home-assistant#170206)

prusalink: add continue-job button for ATTENTION state (home-assistant#170193)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

data grand lyon: implement diagnostics (home-assistant#170184)

Set serial port description from `description`, not `product` (home-assistant#170160)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>

Update infrared-protocols to 4.0.0 (home-assistant#170297)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

data grand lyon: use test fixture instead of manual patching (home-assistant#170294)

Handle empty BSB-LAN heating circuits (home-assistant#170249)

Add diagnostics platform to Home Assistant Connect ZBT-2 (home-assistant#170158)

Fix deprecated_class to work with inheritance (home-assistant#170137)

Skip offline devices instead of aborting ViCare diagnostics (home-assistant#170106)

Fix local API incorrectly marking devices as unavailable in Overkiz (home-assistant#170118)

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>

Add RepairsFlowResult TypeAlias (home-assistant#170263)

Fix flaky diagnostics test for Novy Cooker Hood (home-assistant#170299)

Fix spelling of RS-232 in Denon RS-232 integration (home-assistant#170298)

data grand lyon: implement reconfiguration flow (home-assistant#170210)

Add shared test mocks for the Infrared integration (home-assistant#170296)

Co-authored-by: Claude <noreply@anthropic.com>

Bump renault-api to 0.5.8 (home-assistant#170309)

Bump indevolt api to 1.7.2 (home-assistant#170310)

Update IQS to platinum for UptimeRobot (home-assistant#170260)

Add player specific sensor to nintendo_parental_controls (home-assistant#155786)

Co-authored-by: Joshua Peisach (ItzSwirlz) <itzswirlz2020@outlook.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Erik Montnemery <erik@montnemery.com>

Fix hassio.backup_partial AttributeError when folders are specified (home-assistant#170312)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add backoff to forbidden packages (home-assistant#170242)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add tuya water timer data points (home-assistant#170314)

Add more entities for Tuya camera (home-assistant#169966)

Co-authored-by: mik-laj <12058428+mik-laj@users.noreply.github.com>
Co-authored-by: Norbert Rittel <norbert@rittel.de>

Add Tuya DLQ fixture (home-assistant#169585)

Update rf-protocols to 3.0.0 (home-assistant#170301)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add Message Expire Interval option to MQTT publish service (home-assistant#169317)

Co-authored-by: Copilot <copilot@github.com>

Add new CentriConnect component (home-assistant#166933)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Watts: add HVAC action + preset mode (home-assistant#169546)

Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Joostlek <joostlek@outlook.com>

Add quality scale for airnow integration (home-assistant#169709)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Fix nobo_hub NoboProfileSelector class-level mutable defaults (home-assistant#170119)

Add cover support to control4 (home-assistant#169417)

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>

Add Mitsubishi brand (home-assistant#169924)

Co-authored-by: Nikolai Rahimi <nikolairahimi@users.noreply.github.com>
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Fix coordinator data mutation in YouTube diagnostics (home-assistant#170300)

Co-authored-by: FIls0010 <a1867444@adelaide.edu.au>

Bump aiovodafone to 3.2.0 (home-assistant#170322)

Add countdown number for Tuya sfkzq single-valve timers (home-assistant#170318)

Allow setting hvac_mode in generic_thermostat.set_temperature (home-assistant#168062)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Z-Wave.me: Allow updating entities (home-assistant#167839)

Fix MQTT device discovery not using shared QoS and encoding options (home-assistant#170195)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Google assistant temperature setting active thermostat mode (home-assistant#166448)

Co-authored-by: Lucas Sanchez Sagrado <lucas.sansag@educa.jcyl.es>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale to Tesla Fleet integration (home-assistant#160475)

Co-authored-by: Claude <noreply@anthropic.com>

Only use SmartThings switch for light if it should (home-assistant#166424)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale file to Ness Alarm (home-assistant#163425)

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Fix Shelly media player availability (home-assistant#170319)

Update discovery description wording (home-assistant#170325)

Bump teltasync to 0.3.0, fix discovery for older devices (home-assistant#169660)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete exception translations for Indevolt (home-assistant#170291)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add Kiosker switch platform (home-assistant#168858)

Add `ZWaveNodeBaseEntity` for Z-Wave node-level entities (home-assistant#170124)

Add number platform to eurotronic_cometblue (home-assistant#168119)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
bogaczl added a commit to bogaczl/core that referenced this pull request May 11, 2026
Bump aiotankerkoenig to 0.5.3 (home-assistant#170224)

Fix entities refresh for UptimeRobot (home-assistant#170217)

Update easyEnergy exception and icon translations (home-assistant#170218)

Add more Gen1 sensors to indevolt (home-assistant#170191)

Bump letpot to 0.7.0 (home-assistant#169868)

Migrate Thermo Beacon to config entry runtime data (home-assistant#170226)

Migrate Sensirion BLE to config entry runtime data (home-assistant#170227)

Co-authored-by: Josef Zweck <josef@zweck.dev>

Bump imgw-pib to 2.1.2 (home-assistant#170274)

Bump serialx to 1.7.2 (home-assistant#170272)

Bump aioamazondevices to 13.5.0 (home-assistant#170258)

Update upb-lib to 0.7.0 (home-assistant#170051)

Bump qbittorrent-api to 2026.5.1 (home-assistant#170181)

Use VERSION from PrusaLinkConfigFlow in prusalink (home-assistant#170200)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Migrate Duco to python-duco-connectivity and remove temperature sensors (home-assistant#170237)

fix: Do not forget segments from state when a new config arrives (home-assistant#170265)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete icon translations for Indevolt (home-assistant#170292)

Align Indevolt quality scale with documentation (home-assistant#170289)

Apply strict typing to Indevolt integration (home-assistant#170288)

iaqualink: set system specific polling interval (home-assistant#170279)

Use standby for HDMI-CEC turn off (home-assistant#170206)

prusalink: add continue-job button for ATTENTION state (home-assistant#170193)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

data grand lyon: implement diagnostics (home-assistant#170184)

Set serial port description from `description`, not `product` (home-assistant#170160)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>

Update infrared-protocols to 4.0.0 (home-assistant#170297)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

data grand lyon: use test fixture instead of manual patching (home-assistant#170294)

Handle empty BSB-LAN heating circuits (home-assistant#170249)

Add diagnostics platform to Home Assistant Connect ZBT-2 (home-assistant#170158)

Fix deprecated_class to work with inheritance (home-assistant#170137)

Skip offline devices instead of aborting ViCare diagnostics (home-assistant#170106)

Fix local API incorrectly marking devices as unavailable in Overkiz (home-assistant#170118)

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>

Add RepairsFlowResult TypeAlias (home-assistant#170263)

Fix flaky diagnostics test for Novy Cooker Hood (home-assistant#170299)

Fix spelling of RS-232 in Denon RS-232 integration (home-assistant#170298)

data grand lyon: implement reconfiguration flow (home-assistant#170210)

Add shared test mocks for the Infrared integration (home-assistant#170296)

Co-authored-by: Claude <noreply@anthropic.com>

Bump renault-api to 0.5.8 (home-assistant#170309)

Bump indevolt api to 1.7.2 (home-assistant#170310)

Update IQS to platinum for UptimeRobot (home-assistant#170260)

Add player specific sensor to nintendo_parental_controls (home-assistant#155786)

Co-authored-by: Joshua Peisach (ItzSwirlz) <itzswirlz2020@outlook.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Erik Montnemery <erik@montnemery.com>

Fix hassio.backup_partial AttributeError when folders are specified (home-assistant#170312)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add backoff to forbidden packages (home-assistant#170242)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add tuya water timer data points (home-assistant#170314)

Add more entities for Tuya camera (home-assistant#169966)

Co-authored-by: mik-laj <12058428+mik-laj@users.noreply.github.com>
Co-authored-by: Norbert Rittel <norbert@rittel.de>

Add Tuya DLQ fixture (home-assistant#169585)

Update rf-protocols to 3.0.0 (home-assistant#170301)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Add Message Expire Interval option to MQTT publish service (home-assistant#169317)

Co-authored-by: Copilot <copilot@github.com>

Add new CentriConnect component (home-assistant#166933)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Watts: add HVAC action + preset mode (home-assistant#169546)

Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Joostlek <joostlek@outlook.com>

Add quality scale for airnow integration (home-assistant#169709)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Fix nobo_hub NoboProfileSelector class-level mutable defaults (home-assistant#170119)

Add cover support to control4 (home-assistant#169417)

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>

Add Mitsubishi brand (home-assistant#169924)

Co-authored-by: Nikolai Rahimi <nikolairahimi@users.noreply.github.com>
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Fix coordinator data mutation in YouTube diagnostics (home-assistant#170300)

Co-authored-by: FIls0010 <a1867444@adelaide.edu.au>

Bump aiovodafone to 3.2.0 (home-assistant#170322)

Add countdown number for Tuya sfkzq single-valve timers (home-assistant#170318)

Allow setting hvac_mode in generic_thermostat.set_temperature (home-assistant#168062)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Z-Wave.me: Allow updating entities (home-assistant#167839)

Fix MQTT device discovery not using shared QoS and encoding options (home-assistant#170195)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Google assistant temperature setting active thermostat mode (home-assistant#166448)

Co-authored-by: Lucas Sanchez Sagrado <lucas.sansag@educa.jcyl.es>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale to Tesla Fleet integration (home-assistant#160475)

Co-authored-by: Claude <noreply@anthropic.com>

Only use SmartThings switch for light if it should (home-assistant#166424)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Add quality scale file to Ness Alarm (home-assistant#163425)

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

Fix Shelly media player availability (home-assistant#170319)

Update discovery description wording (home-assistant#170325)

Bump teltasync to 0.3.0, fix discovery for older devices (home-assistant#169660)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Complete exception translations for Indevolt (home-assistant#170291)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

Add Kiosker switch platform (home-assistant#168858)

Add `ZWaveNodeBaseEntity` for Z-Wave node-level entities (home-assistant#170124)

Add number platform to eurotronic_cometblue (home-assistant#168119)

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
lmaertin pushed a commit to lmaertin/homeassistant-core that referenced this pull request May 11, 2026
@github-actions github-actions Bot locked and limited conversation to collaborators May 12, 2026
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.

4 participants