Cover action stopped working on groups with 2024.10

I have a groups configured via helpers for my pairs of shades, which have been working fine for several years.

On the latest update they stopped working as a group. This is an issue both from the automation and when using voice assistants. If I control the items individually, it’s fine. This is easy to do for the automations, but is a pain for the voice assistant (Google).

Logger: homeassistant.components.automation.light_filtering_shades_remote
Source: helpers/script.py:525
integration: Automation (documentation, issues)
First occurred: October 5, 2024 at 3:35:08 PM (45 occurrences)
Last logged: 11:21:24 AM

Shades Remote 1x Click: If at step 1: Error executing script. Unexpected error for if at pos 1: 'NoneType' object has no attribute 'value_id'
Shades Remote 1x Click: Error executing script. Unexpected error for if at pos 1: 'NoneType' object has no attribute 'value_id'
Shades Remote 1x Click: If at step 2: If at step 1: Error executing script. Unexpected error for call_service at pos 1: 'NoneType' object has no attribute 'value_id'
Shades Remote 1x Click: If at step 2: Error executing script. Unexpected error for if at pos 1: 'NoneType' object has no attribute 'value_id'
Shades Remote 1x Click: Error executing script. Unexpected error for if at pos 2: 'NoneType' object has no attribute 'value_id'
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 525, in _async_step
    await getattr(self, handler)()
  File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 763, in _async_call_service_step
    response_data = await self._async_run_long_action(
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 726, in _async_run_long_action
    return await long_task
           ^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2761, in async_call
    response_data = await coro
                    ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2804, in _execute_service
    return await target(service_call)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 996, in entity_service_call
    single_response = await _handle_entity_call(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1068, in _handle_entity_call
    result = await task
             ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/components/group/cover.py", line 190, in async_close_cover
    await self.hass.services.async_call(
  File "/usr/src/homeassistant/homeassistant/core.py", line 2761, in async_call
    response_data = await coro
                    ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2804, in _execute_service
    return await target(service_call)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1021, in entity_service_call
    raise result from None
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 1610, in async_request_call
    return await coro
           ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1068, in _handle_entity_call
    result = await task
             ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/components/zwave_js/cover.py", line 426, in async_close_cover
    await self._async_set_value(self._down_value, True)
  File "/usr/src/homeassistant/homeassistant/components/zwave_js/entity.py", line 338, in _async_set_value
    f"Unable to set value {value.value_id}: {err}"
                           ^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'value_id'

I am observing the exact same issue. Cover automation stopped working, same error:

AttributeError: 'NoneType' object has no attribute 'value_id'

I think it’s the mqtt or zwave integration which changed its interface and the group integration is just returning an error. I noticed I now have two cover entities in one device and both are only half functional.
-Brian