2021.3: My Oh My
Home Assistant Core 2021.3! And my oh My Home Assistant!
I’m super excited for this release! 13 Brand new integrations! Z-Wave JS is moving forward with an almost insane development speed; thank you all for jumping into it as well! 🎉
For me, this release is about two things. My Home Assistant and some super slick new UI features for everything related to service calls. What it is; is explained down below, but both are just a leap forward in: making things easier.
My oh my, enjoy this release!
../Frenck
- My Home Assistant
- New UI for service calls
- Suggested areas
- Fan speeds: 100%
- Z-Wave JS update
- Flexible & variable automation triggers
- Oversettelser i Supervisor panelet
- Other noteworthy changes
- New Integrations
- New Platforms
- Integrations now available to set up from the UI
- Release 2021.3.1 - March 5
- Release 2021.3.2 - March 5
- Release 2021.3.3 - March 8
- Release 2021.3.4 - March 12
- If you need help…
- Backward-incompatible changes
- Farewell to the following
- All changes
My Home Assistant
To be more helpful, we often want to link you to a specific page in your
Home Assistant instance. However, each Home Assistant instance is hosted at a
different URL. Yours might be http://homeassistant.local:8123
, or something
completely different.
My Home Assistant allows the documentation, forums, chat, weblogs, or any other website, to link you to specific pages in your Home Assistant instance, without knowing the URL of your instance.
The beauty of this? All the data is stored locally in your browser and My Home Assistant only redirects you to pages that provide you with information about your instance or help you start an action. Following a link from My Home Assistant will never make any changes to your instance.
Long story short! We can do a lot of helpful things with this, for example, the following buttons will bring your places on your instance:
But we can make buttons or links to a lot of screen, and even help you start a configuration for adding an integration, import a Blueprint, link to an add-on page, and a lot more!
Setting up a new integration on your instance, from the documentation using My Home Assistant.
Additionally, we have added a link/badge generator, so you can create your own links, for e.g., adding to a Blueprint on the Blueprint Exchange.
https://my.home-assistant.io/create-link/
Lastly, support for My Home Assistant with our apps is expected to be available soon! Android should be available via an update today and iOS will land soon.
New UI for service calls
This release adds a new user interface for doing service calls!
Screenshot of the new UI in the services tab of the Developer Tools.
The UI may look familiar, as it uses the same UI parts as used by the recently introduced Blueprints. This new UI can be found in multiple places, that all have adjusted with a shiny new UI;
- The Actions tab in the Developer Tools.
- Doing service calls in the automation UI editor.
- Doing service calls in the script UI editor.
- In Lovelace cards that support calling actions.
Not all service calls will show this slick new UI yet, as the integrations service descriptions need to be adjusted to with this. But, all common ones have been migrated already. Like doing YAML? Well, the good old YAML mode is available as well!
Suggested areas
Areas are becoming more and more useful in Home Assistant, and this release is helping out with putting them to use a bit!
Recently, it became possible to not only assign devices to areas, but entities as well. And now; Integrations can now suggest areas!
This means, if an integration knows about an area/room/location place it is in, it can suggest an area if the device isn’t in one yet. For example, the Hue integration can now suggest an area based on the Hue group it is in.
The following integration will now already suggest areas as of this release:
- Bond
- Hue
- Hunter Douglas PowerView
- Lutron Caséta
- Netatmo
- Nexia
- NuHeat
- Roku
- Sonos
- Tado
- Universal Devices ISY994
Fan speeds: 100%
Got an overhaul! Fans now work with speed percentages instead of the previous “low”, “mid”, “high”, “off”. This makes Home Assistant more interoperable with more fan brands and third-party assistants, like HomeKit.
Don’t worry, everything has been implemented with backward compatibility.
Screenshot of automation editor, showing the % fan speeds!
Did you notice in the above screenshot, the automation editor is now wider? The layout has been adjusted to give you more screen real estate when creating automations.
Z-Wave JS update
Also this release the Z-Wave JS team has been very busy. Several new features have been added and many bugs squashed. Below you can read a summary.
We’ve introduced a protocol schema version in the Z-Wave JS server to allow older clients to connect and talk to a newer server. This prevents compatibility issues for the future!
Home Assistant Core 2021.3.0 will require Z-Wave JS server version 1.1.0. If you’re using the official Home Assistant add-on, the integration will automatically update the add-on if an older add-on and server version is encountered. Magic! If you’re not using the Home Assistant add-on to run the server you will need to update the server before updating Home Assistant Core.
You can now automate and change the configuration settings of your devices with
the zwave_js.set_config_parameter
service and create automations using the new zwave_js.refresh_value
service, to update a device that doesn’t automatically refresh itself.
But there is more!
- Garage doors (barrier) and similar covers can now be controlled.
- Some heating valves and similar devices that can be set to multiple different
values will now show up as
number
entities.
Flexible & variable automation triggers
We now support the use of variables and (limited) templates in automation triggers! This can be really useful, for example, when making Blueprints for MQTT based automations!
automation:
trigger_variables:
room: "living_room"
node: "ac"
value: "on"
trigger:
- platform: mqtt
topic: "{{ room ~ '/switch/' ~ node}}"
payload: "{{ 'state:' ~ value }}"
As shortly mentioned, the template syntax for trigger templates and variables are more limited; read more about this in the limited templates documentation.
Oversettelser i Supervisor panelet
Unless you are in the nordics, that title does not mean much, it’s Norwegian and translates to “Translations in the Supervisor panel”. Yes! We have now added translations in the Supervisor panel. 🎉
If you want to help translate that into your native language, join the frontend team on Localize.
But we did not stop there! Now add-ons can provide translation files for configuration options and network descriptions that are shown in the frontend.
Not enough? You want more? Okay then!
- The communication between the frontend and the backend now relies on WebSockets, which allows the Supervisor to notify the frontend about changes.
- For add-on authors, you can now use YAML instead of JSON for your add-ons configuration files.
- New update dialog that will ask you to take a snapshot before you upgrade core/add-ons.
- Better hardware support to cover more devices.
- Passwords and secrets in add-on configurations are checked against known
breaches with https://haveibeenpwned.com/
Screenshot of the new update dialog that asks for creating a snapshot.
Other noteworthy changes
There is much more juice in this release; here are some of the other noteworthy changes this release:
- Shelly now supports battery-operated devices, thanks to @thecode
! - You can now use the color
homeassistant
as acolor_name
in your light service calls, just because we can 😎 -
@emontnemery
, added support for using alias
to virtually any step in scripts/automations. This is really helpful when debugging and documents your sequences as well, as it annotates each step. -
@emontnemery
didn’t stop there, he also added support for enabling/disabling integration configuration entries! So you can, e.g., temporarily disable a whole integration.
Screenshot of disabling an integration entry.
- Thanks to @Nixon506E
, you can now set a transition time when activate Hue scenes. - In the States tab of the Developer Tools, there is now
a small copy to clipboard button with each entity. Thanks, @KTibow
! -
@postlund
added support for repeat, shuffle and volume stepping to the media player integration of the Apple TV integration. -
@larena1
reduced the amount of rendering history charts cause, so that will speed things up! Thanks! - We now have a select selector! Great for adding dropdown choices
to Blueprints, thanks @EPMatt
! -
@raman325
extended the Universal Media Player with a lot of new capabilities. - When adding a new integration, the UI will now show discovered devices for
that integration as well! Thanks, @bramkragten
! - We updated CodeMirror to the latest version, which provided the YAML code editors in our UI. It should now be better, faster and has improved support for mobile devices.
New Integrations
We welcome the following new integrations this release:
-
AEMET OpenData, added by @Noltari
-
ClimaCell, added by @raman325
-
FAA Delays, added by @ntilley905
-
Honeywell Lyric, added by @timmo001
-
KMTronic, added by @dgomes
-
Litter-Robot, added by @natekspencer
-
Mazda Connected Services, added by @bdr99
-
Mullvad VPN, added by @meichthys
-
My Home Assistant, add by @bramkragten
-
Rituals Perfume Genie, added by @milanmeu
-
SmartTub, added by @mdz
-
Subaru, adde by @G-Two
New Platforms
The following integration got support for a new platform:
-
Aurora has now support for sensors, added by @djtimca
-
KNX added support for fans, added by @crazyfx1
-
Templates can now be used to create weather entities, added by @dgomes
-
VeSync now support their dimmer switches, added by @decompil3d
-
WiLight support covers now, added by @leofig-rj
Integrations now available to set up from the UI
The following integrations are now available via the Home Assistant UI:
-
ASUSWRT, done by @ollo69
-
Keenetic NDMS2 Routers, done by @foxel
-
LiteJet, done by @joncar
-
MySensors, done by @functionpointer
-
Nuki, done by @pree
-
Philips TV, done by @elupus
-
Xiaomi Miio (partially), done by @starkillerOG
Release 2021.3.1 - March 5
- Fix Xiaomi Miio setup of switch entity for lumi.acpartner.v3 (@starkillerOG
- #47345 ) (xiaomi_miio docs) - Make zwave_js add-on manager more flexible (@MartinHjelmare
- #47356 ) (zwave_js docs) - Catch ConditionError in generic_thermostat climate (@amelchio
- #47359 ) (generic_thermostat docs) - Fix zwave_js manual reconfiguration of add-on managed entry (@MartinHjelmare
- #47364 ) (zwave_js docs) - Don’t raise on known non-matching states in numeric state condition (@frenck
- #47378 ) - Fix access of missing zwave_js climate unit value (@MartinHjelmare
- #47380 ) (zwave_js docs) - Update frontend to 20210302.4 (@bramkragten
- #47383 ) (frontend docs) - Revert “Speed-up wemo discovery (#46821)” (@esev
- #47392 ) (wemo docs) - Fix RFLink TCP KeepAlive error log (@cpainchaud
- #47395 ) (rflink docs) - Map silent as a preset mode for fan backcompat (@bdraco
- #47396 ) (fan docs) - Fix measurement unit (Closes: #47390) (@syssi
- #47398 ) (xiaomi_miio docs) - Fix Climacell timezone issue with daily forecasts (@raman325
- #47402 ) (climacell docs) - Fix AirVisual exception when config entry contains old integration type (@bachya
- #47405 ) (airvisual docs) - Don’t convert Climacell forecast temperatures to celsius because platform does it automatically (@raman325
- #47406 ) (climacell docs) - Bump zwave-js-server-python to 0.21.0 (@raman325
- #47408 ) (zwave_js docs) - Fix older Roborock models (@frenck
- #47412 ) (xiaomi_miio docs) - Only create snapshot if add-on update will be done (@MartinHjelmare
- #47424 ) (zwave_js docs)
Release 2021.3.2 - March 5
- Update pyotgw to 1.1b1 (@mvn23
- #47446 ) (opentherm_gw docs) - Fix issue at Netatmo startup (@cgtobi
- #47452 ) (netatmo docs) - Fix Hue scene overriding Hue default transition times (@frenck
- #47454 ) (hue docs) - Bump version with fix for v1 (@elupus
- #47458 ) (philips_js docs) - Update frontend to 20210302.5 (@bramkragten
- #47462 ) (frontend docs) - Use conn_made callback in MySensors (@functionpointer
- #47463 ) (mysensors docs) - Bump zwave-js-server-python to 0.21.1 (@raman325
- #47464 ) (zwave_js docs) - Raise error instead of crashing when template passed to call service target (@balloob
- #47467 ) (websocket_api docs) - Update zwave_js.refresh_value service description (@raman325
- #47469 ) (zwave_js docs) - Bump amcrest package version to 1.7.1 (@pnbruckner
- #47483 ) (amcrest docs)
Release 2021.3.3 - March 8
- Adjust litterrobot tests and code to match guidelines (@natekspencer
- #47060 ) (litterrobot docs) - Bump HAP-python to 3.4.0 (@bdraco
- #47476 ) (homekit docs) - Fix Sonos polling mode (@amelchio
- #47498 ) (sonos docs) - Fix mysensors notify platform (@MartinHjelmare
- #47517 ) (mysensors docs) - Fix AsusWRT wrong api call (@ollo69
- #47522 ) (asuswrt docs) - Bump pymysensors to 0.21.0 (@MartinHjelmare
- #47530 ) (mysensors docs) - Fix mysensors device tracker (@MartinHjelmare
- #47536 ) (mysensors docs) - Fix mysensors unload clean up (@MartinHjelmare
- #47541 ) (mysensors docs) - Correct weather entities forecast time (@dgomes
- #47565 ) - Allow running and restarting with both ozw and zwave active (@ronytomen
- #47566 ) (ozw docs) (zwave docs) - Add fallback zwave_js entity name using node ID (@raman325
- #47582 ) (zwave_js docs) - Ensure bond devices recover when wifi disconnects and reconnects (@bdraco
- #47591 ) (bond docs) - Update frontend to 20210302.6 (@bramkragten
- #47592 ) (frontend docs) - Fix turn on without speed in homekit controller (@bdraco
- #47597 ) (homekit_controller docs) - Ensure template fan value_template always determines on state (@bdraco
- #47598 ) (template docs) - Fix insteon fan speeds (@bdraco
- #47603 ) (insteon docs) - Fix turning off scene in homekit (@bdraco
- #47604 ) (homekit docs) - Fix Shelly logbook exception when missing COAP (@thecode
- #47620 ) (shelly docs) - Update zwave_js supported features list to be static (@raman325
- #47623 ) (zwave_js docs)
Release 2021.3.4 - March 12
- Write SimpliSafe alarm control panel state after arming/disarming (@bachya
- #47649 ) (simplisafe docs) - Cover Tilt Position Bugfix (@mtl010957
- #47682 ) (mqtt docs) - Fix zwave_js target_temp_low (@firstof9
- #47762 ) (zwave_js docs) - Adjust insteon fan speed range to valid upper bound (@bdraco
- #47765 ) (insteon docs) - Bump plexapi to 4.4.1 (@jjlawren
- #47766 ) (plex docs) - Ensure homekit reset accessory service can target any entity (@bdraco
- #47787 ) (homekit docs) - Fix Netatmo event handling (@cgtobi
- #47792 ) (netatmo docs)
If you need help…
…don’t hesitate to use our very active forums or join us for a little chat
Experiencing issues introduced by this release? Please report them in our issue tracker
Backward-incompatible changes
Below is a listing of the breaking change for this release, per subject or integration. Click on one of those to read more about the breaking change for that specific item.
Custom integrations: Version warning
Custom integrations now require a version
key in their manifest file, this
also means that all custom integrations now require a manifest file.
If you are using a legacy custom integration like custom_components/awesome.py
this now needs to move to custom_components/awesome/__init__.py
so you can
add custom_components/awesome/manifest.json
to it.
For more information about integration, manifests have a look here: https://developers.home-assistant.io/docs/creating_integration_manifest
For now, this will create a warning on startup. But this will eventually be blocked from loading if it’s missing a version in the manifest.
If you see these warnings, please report the issue with the author of that custom integration.
Fan
The fan entity model has changed to split named speeds into percentages in the range from 0 (off)-100 and preset modes.
Why change?
This change allowed us to expand the number of supported speeds to accommodate additional fan models in Home Assistant.
We had 3 fan speeds and that worked great as long as the fan had no more than 3 speeds.
Over time we received a number of requests to add fans with 4, 5, or even more speeds and preset modes. This put us in the difficult position of having to reject this support because the underlying fan model didn’t support it.
Percentages were chosen because they can represent up to 100 speeds which should accommodate all fans. Additionally, it’s a lot easier to ask your voice assistant to set the fan to 20% then remember that medium-low is actually low-medium or have to learn and remember how to say the speeds for every fan model you want to control.
What to change?
Calls in automations and scripts to fan.set_speed
should be replaced:
- Calls that set a speed should use
fan.set_percentage
. - Calls that set a preset mode should use
fan.set_preset_mode
.
The following speeds existed in core integration and will now be automatically
identified as preset modes: auto
, smart
, interval
, idle
, and favorite
.
Both of the new calls are backward compatible.
Calls in automations and scripts to fan.turn_on
that use the speed
attribute
should be switched to use the percentage
or preset_mode
attribute once the
underlying integration has been updated to support it.
All core fans have been updated to ensure that calls to the fan.turn_on
service map percentage
or preset_mode
to speed
for backwards compatibility.
Template: Fan
Template fans have been updated for the new entity model that uses a percentage for the speed.
The following configuration options have been deprecated: speed_template
, set_speed
, and speeds
.
The replacement options are percentage_template
and set_percentage
. There
is no replacement for speeds
since the percentage is always from 1-100 along
with 0 for off.
(@bdraco
Hyperion
Hyperion has fully transitioned to configuration via UI. YAML configuration has been removed. Existing YAML configuration has already been imported automatically in the previous releases and can now safely be removed from your configuration files.
(@dermotduffy
CalDAV
For CalDAV custom calendars, now only matching events are shown in the calendar frontend, instead of all events for this calendar.
Although, this is technically a bugfix, if you didn’t notice it before, it might now surprise you.
(@inytar
LG Soundbar
If discovery
is used the entity will get a new entity_id
derived from the
hostname of the soundbar. This means the entity_id
can not be changed anymore
since there is currently no way to get a unique_id
from the device.
MySensors
MySensors has fully transitioned to configuration via UI. Existing YAML configuration is automatically migrated and imported, and can now safely be removed from your configuration files after upgrading.
No changes to YAML are applied after the migration has happened. If you need to change anything, use the frontend.
MQTT: Covers
MQTT cover value_template
is deprecated to use for extracting position,
support will be removed in Home Assistant Core 2021.6.
Instead of using value_template
, position_template
should be used.
MQTT cover tilt_invert_state
is deprecated, instead tilt_min
and tilt_max
should be used. Support for tilt_invert_state
will be removed in Home
Assistant Core 2021.6.
Cameras and Streams
Removes the internal stream
components record
service.
This service is meant to be used internally only by camera
so this is not
expected to be a problem in practice as you should be using camera.record
instead.
(@allenporter
HTTP: base_url
The HTTP base_url
URL setting was marked deprecated in Home Assistant Core
0.110 and replaced by the new internal & external URL settings that are
available in the UI.
This release removes the fallback logic to the old base_url
setting. If you
still have an base_url
configured in the HTTP section of your YAML
configuration, please remove it.
MQTT: Lights
The MQTT light with template schema will now send a float
instead of an int
with the transition key.
Lights that require an int
instead of a float
can restore the original
functionality by using the following in the template for specifying the
transition:
(@kangaroomadman
Philips TV
Configuration via YAML is now deprecated and you existing YAML configuration will be automatically imported into the UI on first run. If your TV is not running on first start, you will need to complete the configuration from integration screen once your TV us online.
The previous turn_on_action
will not be imported, and must be re-created as a
device trigger automation.
(@elupus
ASUSWRT
The legacy device tracker DeviceScanner
was replaced with the new device
tracker implementation ScannerEntity
.
You should remove references to platform asuswrt
in device_tracker
section
in your YAML configuration and update person device tracker with the new entity.
The YAML key dnsmasq
, interface
and require_ip
now are managed as
integration options. The values present in YAML are imported in the options
the first time that the integration is loaded.
All sensors are initially created as disabled and can be enabled from ASUSWRT device configuration instead of using YAML configuration.
(@ollo69
Keenetic NDMS2 Routers
Keenetic NDMS2 Routers are now configured and managed from the UI. Existing YAML configuration will be automatically imported and can be safely removed after upgrading.
The upgraded platform also adds:
- Entities and devices manageable from UI.
- Binary sensors for router connection status.
- Support for monitoring multiple interfaces.
(@foxel
Automations
If an automation trigger template already renders as true
on Home Assistant
Core startup, it will no longer trigger at startup. This bug fix prevents
unintended triggers of automations as startup, but might cause a different
behavior than before.
(@amelchio
Scripts and automations are now more careful about reporting problems with
conditions. For example, a state
condition that references an unavailable
entity will log a message warning about the problem. Depending on the
circumstances when such errors happen, the flow of the automation
(i.e., stop/continue) might end up different from before.
Xiaomi Miio
Xiaomi Miio Switch, and Vacuum platforms should now be set up using the UI, please remove the old YAML configuration from your configuration file.
They are now automatically discovered, if not, click Configuration in the sidebar, then click Integrations and then click the + icon in the lower right and find Xiaomi Miio.
Select the option “Connect to a Xiaomi Miio Device” and click submit, follow the setup instructions.
HomeKit
HomeKit pairings and accessory IDs from Home Assistant Core version 0.109 and earlier are no longer migrated on upgrade.
Users upgrading directly to 2021.3 from 0.109 and older should upgrade to 2021.2 first if they wish to preserve HomeKit configuration and avoid re-pairing the bridge.
This change does not affect upgrades from 0.110 and later.
(@bdraco
Google Assistant
Requests for closing/opening covers fully from Google Assistant will now use
close
/open
service instead of set_postion
service. This a a revert of an
unexpected breaking change.
Habitica
Habitica has fully transitioned to configuration via UI. Existing YAML configuration is automatically migrated and imported, and can now safely be removed from your configuration files after upgrading.
(@leikoilja
Z-Wave JS
Minimum required zwave-js-server version is now 1.1.0. You need to run this server version at mimimum for the integration to work.
(@marcelveldt
Honeywell Total Connect Alarm
To support user equipment that requires the entry of a usercode in addition to username and password, now all users must configure a usercode.
This can be done by updating the integration in the User Interface via Configuration > Integrations.
The use of YAML configuration is no longer supported.
Tado
Polling interval of 15 seconds causes high load on Tado servers and does not provide enough value to warrant it. Tado plans to introduce a rate limit to prevent such misuse of the API, therefore the polling interval needs to be increased to make sure the integration works well in the future.
LiteJet
LiteJet is now configured via the UI. Existing YAML configurations will automatically be imported and can be removed after completing the upgrade.
LiteJet’s include_switches
YAML option has been removed. Switches can be
enabled via the integration’s entity list in the UI.
LiteJet’s exclude_names
YAML option has been removed. Undesired entities can
be disabled via the integration’s entity list in the UI.
(@joncar
Nest
The nest FAN_ON
mode now sets the device timer to use the max duration of
12 hours, rather than the default of 15 minutes. If you would like the fan to
turn off sooner may use an automation with timer
to set FAN_OFF
sooner.
(@allenporter
Hue
Hue groups are now disabled by default because they do not have a unique ID. Existing configurations that have previously saved Hue options are not affected.
To enable Hue groups:
- Browse to your Home Assistant instance
- In the sidebar click on Configuration
- From the configuration menu select Devices & services
- Find the entry for the Hue Bridge
- Select Options and change the setting
Farewell to the following
The following integrations are no longer available as of this release:
-
CoinMarketCap has been removed, the used API has been out of service
for a long time already. (@frenck
- #46615 ) -
Crime Reports has been removed, as the API is no longer available.
(@frenck
- #46312 ) -
Nuimo was in a non working state for a long time now.
(@rngtng
- #45600 ) -
Synology has been removed, the Synology DSM integration provides a full
replacement. (@thecode
- #46482 ) -
xFinity Was previously marked deprecated. It relies on web scraping to
function, which is no longer allowed.
(@thecode
- #46484 )
All changes
Click to see all changes!
- Bump version to 2021.3.0dev0 (@frenck
- #45617 ) - Clean tcp tests (@oxygen0211
- #41673 ) (tcp docs) - Separate fan speeds into percentages and presets modes (@bdraco
- #45407 ) (fan docs) (breaking-change) - Update ozw to use new fan entity model (@bdraco
- #45577 ) (ozw docs) - Update lutron_caseta manufacturer string (@bdraco
- #45637 ) (lutron_caseta docs) - Update wemo to use new fan entity model (@bdraco
- #45582 ) (wemo docs) - Update smartthings to use new fan entity model (@bdraco
- #45592 ) (smartthings docs) - Update zwave_js to use new fan entity model (@bdraco
- #45543 ) (zwave_js docs) - Update bond to use new fan entity model (@bdraco
- #45534 ) (bond docs) - Update isy994 to use new fan entity model (@bdraco
- #45536 ) (isy994 docs) - Update zwave to use new fan entity model (@bdraco
- #45541 ) (zwave docs) - Add support for percentage speeds and preset modes to template fan (@bdraco
- #45478 ) (template docs) (breaking-change) - Update homekit_controller to use new fan entity model (@bdraco
- #45547 ) (homekit_controller docs) - Support blocking trusted network from new ip (@elupus
- #44630 ) (auth docs) (http docs) (websocket_api docs) - Upgrade beautifulsoup4 to 4.9.3 (@fabaff
- #45619 ) (scrape docs) - Update homekit to use new fan entity model (@bdraco
- #45549 ) (homekit docs) - Bump gios library (@bieniu
- #45639 ) (gios docs) - Update lutron_caseta to use new fan entity model (@bdraco
- #45540 ) (lutron_caseta docs) - Unregister webhook if it can’t be established successfully (@cgtobi
- #42791 ) (netatmo docs) - Update vesync to use new fan entity model (@bdraco
- #45585 ) (vesync docs) - Add first set of tests to devolo Home Control integration (@Shutgun
- #42527 ) (devolo_home_control docs) - Update comfoconnect to use new fan entity model (@bdraco
- #45593 ) (comfoconnect docs) - Update esphome to use new fan entity model (@bdraco
- #45590 ) (esphome docs) - Add reauthentication flow to fritzbox integration (@jloehr
- #45587 ) (fritzbox docs) - Replace strange “dict logic” in AirVisual pollutant level sensors (2 of 2) (@bachya
- #44903 ) (airvisual docs) - Add last_lost_timestamp attribute to Tile (@bachya
- #45681 ) (tile docs) - Use new fixtures in devolo Home Control tests (@Shutgun
- #45669 ) (devolo_home_control docs) - Add vicare heat pump sensors (@crazyfx1
- #41413 ) (vicare docs) - Stop Tile setup on invalid auth (@bachya
- #45683 ) (tile docs) - Remove YAML support from Hyperion integration (@dermotduffy
- #45690 ) (hyperion docs) (breaking-change) - Fix formatting IntEnum as hex in 3.8.x (@teharris1
- #45686 ) (insteon docs) - Update bootstrap script (@balloob
- #45692 ) - Use pure rgb and allow to set only brightness for fibaro (@aizerin
- #45673 ) (fibaro docs) - Refactoring upnp component (@StevenLooman
- #43646 ) (upnp docs) - Bump crpytography to 3.3.1 (@balloob
- #45691 ) - Add config flow for nuki (@pree
- #45664 ) (nuki docs) (breaking-change) - Address late review comments for upnp (@StevenLooman
- #45696 ) (upnp docs) - Add override duration for genius hub switches (@GeoffAtHome
- #45558 ) (geniushub docs) - Only show matching caldav events in calendar (@inytar
- #45701 ) (caldav docs) (breaking-change) - Add patch method to rest switch component (@o-l-o
- #45663 ) (rest docs) - Improve HomeKit Accessory Mode UX (@bdraco
- #45402 ) (homekit docs) - Updates to dev container (@balloob
- #45706 ) - Use a fully mocked credential (@elupus
- #45707 ) - Allow new UniFi flows to update existing entries if host and site match (@Kane610
- #45668 ) (unifi docs) - Add unit of measurement and icon for sleep score (@KTibow
- #45705 ) (withings docs) - During tests we can run with lowest rounds (@elupus
- #45710 ) - Added Romanian voice to Google Cloud TTS (@cristian-vescan
- #45704 ) (google_cloud docs) - Add reboot_gateway service to Velux (@pawlizio
- #43198 ) (velux docs) - Fix ozw init tests (@MartinHjelmare
- #45718 ) (ozw docs) - Set default position value for cover action (@spacegaier
- #45670 ) (cover docs) - Remove ggravlingen from codeowners (@ggravlingen
- #45723 ) - Advanced testing for Nuki config flow (@pree
- #45721 ) (nuki docs) - Upgrade youtube_dl to version 2021.01.24.1 (@chpego
- #45724 ) (media_extractor docs) - Do not cache frontend files during dev (@balloob
- #45698 ) (frontend docs) - Fix feedback from UVC (@rfleming71
- #45630 ) (uvc docs) - Implement person significant change (@ntilley905
- #45713 ) (person docs) - Add significant change support to lock (@bachya
- #45726 ) (lock docs) - Add significant change support to binary_sensor (@bachya
- #45677 ) (binary_sensor docs) - Use DataUpdateCoordinator for solaredge (@bdraco
- #45734 ) (solaredge docs) - IHC service functions support for multiple IHC controllers (@dingusdk
- #44626 ) (ihc docs) - Upgrade pysonos to 0.0.40 (@amelchio
- #45743 ) (sonos docs) - Use fixed due date only for comparison in todoist (@Guliver
- #43300 ) (todoist docs) - Add initial GitHub Issue Form (@frenck
- #45752 ) - Upgrade mypy to 0.800 (@scop
- #45485 ) - Update dyson for the new fan entity model (@bdraco
- #45762 ) (dyson docs) - Bump ROVA package requirement (@kochen
- #45755 ) (rova docs) - Update insteon to use new fan entity model (@bdraco
- #45767 ) (insteon docs) - Honeywell Lyric Integration (@timmo001
- #39695 ) (lyric docs) (new-integration) - Add WLED unload entry result correctly (@frenck
- #45783 ) (wled docs) - Upgrade pre-commit to 2.10.0 (@frenck
- #45777 ) - Fix polling and update of camera state for synology_dsm (@mib1185
- #43683 ) (synology_dsm docs) - Resolve homekit cover adjustment slowness (@bdraco
- #45730 ) (homekit docs) - Update homekit for new async library changes (@bdraco
- #45731 ) (homekit docs) - Move homekit accessory creation to async (@bdraco
- #45788 ) (homekit docs) - Change via_hub to via_device (@iMicknl
- #45804 ) (roon docs) (somfy docs) - Remove misleading “for” from custom integration warning message (@scop
- #45811 ) - Add izone control zone (@sgryphon
- #43984 ) (izone docs) - Remove Nuimo integration (@rngtng
- #45600 ) (nuimo_controller docs) (breaking-change) - Increase test coverage for stream worker (@allenporter
- #44161 ) (stream docs) - Code quality improvements to UniFi integration (@Kane610
- #45794 ) (unifi docs) - Add support for Keg and Airlock to Plaato using polling API (@JohNan
- #34760 ) (plaato docs) - Correct synology_dsm CPU sensor’s naming and measurement unit (@mib1185
- #45500 ) (breaking-change) - Bump brother library to version 0.2.0 (@bieniu
- #45832 ) (brother docs) - Add ability to configure AirVisual with city/state/country in UI (@bachya
- #44116 ) (airvisual docs) - Allow Influxdb CA path in verify_ssl (@alexpilotti
- #45270 ) (influxdb docs) - Upgrade colorlog to 4.7.2 (@fabaff
- #45840 ) - Upgrade TwitterAPI to 2.6.5 (@fabaff
- #45842 ) (twitter docs) - Lyric Code Improvements (@timmo001
- #45819 ) (lyric docs) - Add sensors to Lyric integration (@timmo001
- #45791 ) (lyric docs) (new-platform) - Upgrade sqlalchemy to 1.3.23 (@fabaff
- #45845 ) (recorder docs) (sql docs) - Fix environment_canada high/low temperature display in evenings. (@michaeldavie
- #45855 ) (environment_canada docs) - Add Insteon entities in event loop (@teharris1
- #45829 ) (insteon docs) - Ensure homekit never picks a port that another config entry uses (@bdraco
- #45433 ) (homekit docs) - Update alexa/const.py to reflect docs (@kriansa
- #45806 ) (alexa docs) - Add fan speed percentage support to google assistant (@bdraco
- #45835 ) (google_assistant docs) - Upgrade jinja2 to >=2.11.3 (@fabaff
- #45843 ) - Upgrade pytz to >=2021.1 (@fabaff
- #45839 ) - Upgrade watchdog to 1.0.2 (@fabaff
- #45848 ) (folder_watcher docs) - Upgrade emoji to 1.2.0 (@fabaff
- #45847 ) (mobile_app docs) - Bump Freebox to 0.0.9 (@Quentame
- #45837 ) (freebox docs) - Add transitiontime to hue scene service (@Nixon506E
- #45785 ) (hue docs) - Add support for Shelly battery operated devices (@thecode
- #45406 ) (shelly docs) - Homeconnect remote states (@badguy99
- #45610 ) (home_connect docs) - Fix duplicate lg_soundbar entities and disable polling (@bernimoses
- #42044 ) (lg_soundbar docs) (breaking-change) - Add Mazda Connected Services integration (@bdr99
- #45768 ) (mazda docs) (new-integration) - add api to refresh topology (@dmulcahey
- #44840 ) (zha docs) - Use core constants for command_line auth provider (@tkdrob
- #45907 ) - Fix typo in Roomba strings (@spacegaier
- #45928 ) (roomba docs) - Consistent spelling of IT abbreviations / protocol / format names (@spacegaier
- #45913 ) - Enable emulated_hue setting XY color and transition time by client (@denes44
- #45844 ) (emulated_hue docs) - Fix onvif ConnectionResetError (@olijouve
- #45899 ) (onvif docs) - Add warning to custom integrations without version (@ludeeus
- #45919 ) (breaking-change) - Use bootstrap in devcontainer (@ludeeus
- #45968 ) - Fix exception in Shelly sleeping device that switches to polling (@thecode
- #45930 ) (shelly docs) - Allow manual configuration of ignored singleton config entries (@emontnemery
- #45161 ) - Update yarnpkg GPG key (@ludeeus
- #45973 ) - Use core constants for alert (@tkdrob
- #45935 ) (alert docs) - Use core constants for alexa (@tkdrob
- #45937 ) (alexa docs) - Use core constants for amazon polly (@tkdrob
- #45938 ) (amazon_polly docs) - Throw error in hassfest when integration is missing version (@ludeeus
- #45976 ) - Use core constants for asuswrt (@tkdrob
- #46015 ) (asuswrt docs) - Use core constants for aws (@tkdrob
- #46017 ) (aws docs) - Upgrade slixmpp to 1.7.0 (@fabaff
- #46019 ) (xmpp docs) - Upgrade praw to 7.1.2 (@fabaff
- #46012 ) (reddit docs) - Fix homekit options not being prefilled (@bdraco
- #45926 ) (homekit docs) - Use core constants for automation (@tkdrob
- #46016 ) (automation docs) - Use core constants for delijn (@tkdrob
- #46027 ) (delijn docs) - User core constants for deutsche_bahn (@tkdrob
- #46028 ) (deutsche_bahn docs) - Standardize AirVisual helper method in config flow (@bachya
- #45999 ) (airvisual docs) - Use core constants for doods (@tkdrob
- #46043 ) (doods docs) - Centralize some Airly constants (@yuvalabou
- #45985 ) (airly docs) - Force Vera refresh after starting subscription (@pavoni
- #46001 ) (vera docs) - Use core constants for bmw_connected_drive (@tkdrob
- #46042 ) (bmw_connected_drive docs) - Use core constants for bluetooth_tracker (@tkdrob
- #46041 ) (bluetooth_tracker docs) - Fix demo number entity (@kukulich
- #45991 ) (demo docs) - Improve UniFi tests (@Kane610
- #45871 ) (unifi docs) - Address Plaato post merge review (@JohNan
- #46024 ) (plaato docs) - Add unique id to UniFi config entries using the unique id of the site it is controlling (@Kane610
- #45737 ) (unifi docs) - MySensors config flow (@functionpointer
- #45421 ) (mysensors docs) (breaking-change) - Activate manual ZHA config flow when no comports detected (@frenck
- #46077 ) (zha docs) - Add sensor platform for Aurora integration (@djtimca
- #43148 ) (aurora docs) (new-platform) - Fix race in script wait for trigger step (@emontnemery
- #46055 ) - Bump aioharmony from 0.2.6 to 0.2.7 (@ehendrix23
- #46075 ) (harmony docs) - Use better names for zwave_js platforms that are self describing (@raman325
- #46083 ) (zwave_js docs) - Exclude disabled rfxtrx entities from async_entries_for_device (@emontnemery
- #46102 ) (rfxtrx docs) - Fix backwards compatiblity with fan update to new model (@bdraco
- #45951 ) (fan docs) - Don’t defer formatting of log messages (@emontnemery
- #44873 ) (logger docs) - Convert old deCONZ groups unique ids (@Kane610
- #46093 ) (deconz docs) - Add new features to Apple TV media player (@postlund
- #45828 ) (apple_tv docs) - Simplify UniFi entry configuration data (@Kane610
- #45759 ) (unifi docs) - xknx 0.16.3 (@farmio
- #46128 ) (knx docs) - Use core constants for envisalink (@tkdrob
- #46136 ) (envisalink docs) - Use core constants for ffmpeg_motion (@tkdrob
- #46137 ) (ffmpeg_motion docs) - Use core constants for emulated_hue (@tkdrob
- #46092 ) (emulated_hue docs) - Remove unused config_flows (@tkdrob
- #46188 ) (aws docs) (daikin docs) (mqtt docs) (tellduslive docs) (tradfri docs) (zwave docs) - Use core constants for fixer (@tkdrob
- #46173 ) (fixer docs) - Use core constants for file integration (@tkdrob
- #46171 ) (file docs) - Upgrade praw to 7.1.3 (@fabaff
- #46073 ) (reddit docs) - Add media_player device triggers (@emontnemery
- #45430 ) (media_player docs) - Increase skybell scan time to reduce timeouts (@adamoutler
- #46169 ) (skybell docs) - Use core constants for efergy (@tkdrob
- #46090 ) (efergy docs) - Bump actions/cache from v2 to v2.1.4 (@dependabot - #46197
) - Bump actions/stale from v3.0.15 to v3.0.16 (@dependabot - #46196
) - Fix dyson service name in services.yaml (@boralyl
- #46176 ) (dyson docs) - Mark entities as unavailable when they are removed but are still registered (@balloob
- #45528 ) - Raise ConditionError for numeric_state errors (@amelchio
- #45923 ) (automation docs) (bayesian docs) (homeassistant docs) - Support templating MQTT triggers (@emontnemery
- #45614 ) (automation docs) (mqtt docs) - Bump python-verisure to version 1.7.2 (@persandstrom
- #46177 ) (verisure docs) - Remove unneeded from_state from device triggers (@emontnemery
- #45152 ) - Use core constants for flux (@tkdrob
- #46201 ) (flux docs) - Use core constants for frontend component (@tkdrob
- #46203 ) (frontend docs) - Use core constants for google_assistant (@tkdrob
- #46204 ) (google_assistant docs) - Upgrade praw to 7.1.4 (@fabaff
- #46202 ) (reddit docs) - Use core constants for fleetgo (@tkdrob
- #46200 ) (fleetgo docs) - Various type hint improvements (@scop
- #46144 ) - Use core constants for google (@tkdrob
- #46210 ) (google docs) - Pass variables to numeric state trigger templates (@emontnemery
- #46209 ) (homeassistant docs) - Pass variables to state trigger templates (@emontnemery
- #46208 ) (homeassistant docs) - Add select selector for blueprints (@EPMatt
- #45803 ) - Support templates in event triggers (@emontnemery
- #46207 ) (homeassistant docs) - Use caplog fixture for log capturing (@amelchio
- #46214 ) (automation docs) (homeassistant docs) - Add my component (@bramkragten
- #46058 ) (default_config docs) (my docs) (new-integration) - Fix sync oath2 scaffold template (@MartinHjelmare
- #46219 ) - Upgrade pre-commit to 2.10.1 (@frenck
- #46211 ) - Add entity specific force_update for DSMR (@yurnih
- #46111 ) (dsmr docs) - Fix BT Smarthub device tracker (@hencoappel
- #44813 ) (bt_smarthub docs) - Add unavailable to Vera (@pavoni
- #46064 ) (vera docs) - Enhance MQTT cover platform (@thecode
- #46059 ) (mqtt docs) (breaking-change) - Call setup during devcontainer create (@balloob
- #46224 ) - Centralize keepalive logic in Stream class (@allenporter
- #45850 ) (stream docs) - Update frontend to 20210208.0 (@bramkragten
- #46225 ) (frontend docs) - Add noltari to Tado code owners (@Noltari
- #46216 ) - Allow discovery info accessible from CORS enabled domains (@balloob
- #46226 ) (api docs) - Downgrade and improve lutron caseta LIP error message (@bdraco
- #46236 ) (lutron_caseta docs) - Use core constants for group component (@tkdrob
- #46239 ) (group docs) - Use core constants for helpers (@tkdrob
- #46240 ) - Use core constants for greeneye_monitor (@tkdrob
- #46238 ) (greeneye_monitor docs) - Use core constants for hikvision (@tkdrob
- #46247 ) (hikvision docs) - Test that variables are passed to wait_for_trigger script action (@emontnemery
- #46221 ) - Cleanup bond identifiers and device info (@bdraco
- #46192 ) (bond docs) - Add support for generic lights to bond (@bdraco
- #46193 ) (bond docs) - Add DHCP discovery support to Nuki integration (@pree
- #46032 ) (nuki docs) - Change the API boundary between camera and stream with initial improvement for nest expiring stream urls (@allenporter
- #45431 ) (camera docs) (generic docs) (nest docs) (stream docs) (breaking-change) - Move camera timeouts to constants (@allenporter
- #46262 ) (camera docs) - Improve deCONZ tests by using aioclient_mock rather than patching web requests (@Kane610
- #45927 ) (deconz docs) - Allow to setup of a previously discovered sleeping Shelly device (@bieniu
- #46124 ) (shelly docs) - Add BPUP (push updates) support to bond (@bdraco
- #45550 ) (bond docs) - Raise ConditionError for state errors (@amelchio
- #46244 ) - Use core constants for homematic (@tkdrob
- #46248 ) (homematic docs) - Use core constants for image_processing (@tkdrob
- #46269 ) (image_processing docs) - Use core constants for elkm1 (@tkdrob
- #46091 ) (elkm1 docs) - Remove unnecessary constant from ihc (@tkdrob
- #46268 ) (ihc docs) - bump pysmappee (@bsmappee
- #46270 ) (smappee docs) - Remove unnecessary variable definition in firmata (@tkdrob
- #46172 ) (firmata docs) - Use core constants for here_travel_time (@tkdrob
- #46246 ) (here_travel_time docs) - Convert Hive to Async (@KJonline
- #46117 ) (hive docs) - Fix bug in test found by manual log inspection (@allenporter
- #46309 ) (stream docs) - Update nest stream URLs expiration (@allenporter
- #46311 ) (nest docs) (stream docs) - Add fan platform to knx (@crazyfx1
- #46161 ) (knx docs) (new-platform) - Fix race in EntityRegistry.async_device_modified (@emontnemery
- #46319 ) - Bump pyav version to 8.03 (@uvjustin
- #46315 ) (stream docs) - Fix typo (@emontnemery
- #46321 ) - Revert multiple interfaces (@thecode
- #46300 ) (shelly docs) - Add target to service call API (@bramkragten
- #45898 ) (api docs) (websocket_api docs) - Fix deprecated asyncio.wait use with coroutines (@scop
- #44981 ) - Remove base_url fallback (@frenck
- #46316 ) (http docs) (breaking-change) - Use core constants for joaoapps_join (@tkdrob
- #46291 ) (joaoapps_join docs) - Use core constants for sensor integration (@tkdrob
- #46290 ) (integration docs) - Hide volume control for cast devices with fixed volume (@emontnemery
- #46328 ) (cast docs) - Remove defunct Crime Reports integration (@frenck
- #46312 ) (crimereports docs) (breaking-change) - Use core constants for konnected (@tkdrob
- #46322 ) (konnected docs) - Replace StrictVersion with AwesomeVersion (@ludeeus
- #46331 ) (updater docs) - Replace LooseVersion with AwesomeVersion (@ludeeus
- #46330 ) - Replace parse_version with AwesomeVersion (@ludeeus
- #46329 ) (blueprint docs) (hyperion docs) - Add WiLight Cover (@leofig-rj
- #46065 ) (wilight docs) (new-platform) - Bump hatasmota to 0.2.8 (@emontnemery
- #46340 ) (tasmota docs) - Keep 1 extra segment around after playlist removal (@uvjustin
- #46310 ) (stream docs) - Remove unnecessary variables from logbook (@tkdrob
- #46350 ) (logbook docs) - Update wilight for new fan entity model (@bdraco
- #45869 ) (wilight docs) - Update wilight tests for new fan entity model (@leofig-rj
- #46358 ) (wilight docs) - Use core constants for logi_circle (@tkdrob
- #46359 ) (logi_circle docs) - Use core constants for local_file (@tkdrob
- #46349 ) (local_file docs) - Use core constants for lcn (@tkdrob
- #46348 ) (lcn docs) - Update WiLight Cover Fan Light (@leofig-rj
- #46366 ) (wilight docs) - Use activity ids for unique_id for Harmony switches (@mkeesey
- #46139 ) (harmony docs) - Use core constants for lovelace (@tkdrob
- #46368 ) (lovelace docs) - Some code cleanups for ESPHome (@tkdrob
- #46367 ) (esphome docs) - Fix explict return in tesla config flow (@bdraco
- #46377 ) (tesla docs) - Use core constants for microsoft (@tkdrob
- #46369 ) (microsoft docs) - Raise ConditionError for template errors (@amelchio
- #46245 ) - Clean up kira integration (@tkdrob
- #46292 ) (kira docs) - Use core constants for mqtt (@tkdrob
- #46389 ) (mqtt docs) - Use core constants for modbus (@tkdrob
- #46388 ) (modbus docs) - Clean up kira integration constants (@tkdrob
- #46390 ) (kira docs) - Allow MQTT template light floating point transition (@kangaroomadman
- #46385 ) (mqtt docs) (breaking-change) - Raise ConditionError for time errors (@amelchio
- #46250 ) - Wait for registries to load at startup (@emontnemery
- #46265 ) - Use core constants for nissan_leaf (@tkdrob
- #46401 ) (nissan_leaf docs) - Use core constants for nmap_tracker (@tkdrob
- #46402 ) (nmap_tracker docs) - Improve knx fan implementation (@crazyfx1
- #46404 ) (knx docs) - Use core constants for ohmconnect (@tkdrob
- #46413 ) (ohmconnect docs) - Migrate mobile_app to RestoreEntity (@emontnemery
- #46391 ) (mobile_app docs) - Add generic_thermostat unique ID parameter (@Antoni-Czaplicki
- #46399 ) (generic_thermostat docs) - Add config flow to philips_js (@elupus
- #45784 ) (philips_js docs) (breaking-change) - Install libpcap-dev for devcontainer (@chriss158
- #46106 ) - Correct errors found on post merge review in philips_js (@elupus
- #46428 ) (philips_js docs) - Use core constants for recollect_waste (@tkdrob
- #46416 ) (recollect_waste docs) - Postponed evaluation of annotations in core (@frenck
- #46434 ) - Use core constants for plugwise (@tkdrob
- #46414 ) (plugwise docs) - Improve MQTT timeout print (@emontnemery
- #46398 ) (mqtt docs) - Use core constants for rpi_gpio (@tkdrob
- #46442 ) (rpi_gpio docs) - Enhance platform discovery for zwave_js (@marcelveldt
- #46355 ) (zwave_js docs) - Fix cmus remote disconnections (@kingo55
- #40284 ) (cmus docs) - Add apple tv remote delay command (@WizBangCrash
- #46301 ) (apple_tv docs) - Enable TCP KEEPALIVE to RFLink for dead connection detection (@cpainchaud
- #46438 ) (rflink docs) - Use core constants for roomba (@tkdrob
- #46441 ) (roomba docs) - Allow Modbus “old” config or discovery_info as configuration (@janiversen
- #46445 ) (modbus docs) - Make some Area and EntityRegistry member functions callbacks (@emontnemery
- #46433 ) (config docs) - Upgrade sentry-sdk to 0.20.1 (@frenck
- #46456 ) (sentry docs) - Bump brother library to version 0.2.1 (@bieniu
- #46421 ) (brother docs) - Postponed evaluation of annotations for integrations (@frenck
- #46455 ) - Fix homekit migration not being awaited (@bdraco
- #46460 ) (homekit docs) - Use core constants for somfy (@tkdrob
- #46466 ) (somfy docs) - Use core constants for rflink (@tkdrob
- #46440 ) (rflink docs) - Use core constants for dynalite (@tkdrob
- #46044 ) (dynalite docs) - Use core constants for homeassistant triggers (@tkdrob
- #46472 ) (homeassistant docs) - Remove unnecessary gethostbyname() from Shelly integration (@bieniu
- #46483 ) (shelly docs) - Use core constants for starline (@tkdrob
- #46471 ) (starline docs) - Use core constants for simplepush (@tkdrob
- #46465 ) (simplepush docs) - Bump dsmr_parser to 0.28, configure keep_alive_interval (@RobBie1221
- #46464 ) (dsmr docs) - None optional hass typing in FlowHandler (@frenck
- #46462 ) - Remove deprecated Synology integration (@thecode
- #46482 ) (synology docs) (breaking-change) - Remove deprecated xfinity integration (@thecode
- #46484 ) (xfinity docs) (breaking-change) - Add Asuswrt Config Flow and Scanner Entities (@ollo69
- #46468 ) (asuswrt docs) (breaking-change) - Update HAP-python to 3.3.0 for homekit (@bdraco
- #46497 ) (homekit docs) - Add AEMET OpenData integration (@Noltari
- #45074 ) (aemet docs) (new-integration) - Improve Elgato code quality (@frenck
- #46505 ) (elgato docs) - Use core constants for sma (@tkdrob
- #46501 ) (sma docs) - Use core constants for rpi_rf (@tkdrob
- #46500 ) (rpi_rf docs) - Use core constants for rmvtransport (@tkdrob
- #46502 ) (rmvtransport docs) - Update tuya for new fan entity model (@bdraco
- #45870 ) (tuya docs) - Fix missing condition in nws (@MatthewFlamm
- #46513 ) (nws docs) - Use core constants for temper (@tkdrob
- #46508 ) (temper docs) - Use core constants for switcher_kis (@tkdrob
- #46507 ) (switcher_kis docs) - Use core constants for thethingsnetwork (@tkdrob
- #46520 ) (thethingsnetwork docs) - Use core constants for trend (@tkdrob
- #46521 ) (trend docs) - Add hive hub 360 sensors (@KJonline
- #46320 ) (hive docs) - Clean up template (@tkdrob
- #46509 ) (template docs) - Add keenetic_ndms2 config flow (@foxel
- #38353 ) (keenetic_ndms2 docs) (breaking-change) - Add barrier covers to zwave_js integration (@kpine
- #46379 ) (zwave_js docs) - Improve nest defense against broken event loop on shutdown (@allenporter
- #46494 ) (nest docs) - Cleanup unused loggers (@tkdrob
- #46510 ) - Don’t allow recursive secrets loading (@palfrey
- #41812 ) - Add myself to RFLink codeowners (@javicalle
- #46511 ) (rflink docs) - Update modbus test harness (@janiversen
- #44892 ) (modbus docs) - Do not trigger when template is true at startup (@amelchio
- #46423 ) (template docs) (breaking-change) - Add support for pre-filtering events to the event bus (@bdraco
- #46371 ) (recorder docs) - Use core constants for vasttrafik (@tkdrob
- #46539 ) (vasttrafik docs) - Fix variable name from script refactoring (@bdraco
- #46503 ) - Use core constants for uvc (@tkdrob
- #46538 ) (uvc docs) - Use core constants for volvooncall (@tkdrob
- #46543 ) (volvooncall docs) - Use core constants for wemo (@tkdrob
- #46544 ) (wemo docs) - Fix typing on tuya fan percentage (@bdraco
- #46541 ) (tuya docs) - Add additional supported feature support to universal media player (@raman325
- #44711 ) (universal docs) - Use core constants for wemo and whois (@tkdrob
- #46548 ) (wemo docs) (whois docs) - Allow users to set device class for universal media player (@raman325
- #46550 ) (universal docs) - Add additional stream HLS payload tests (@allenporter
- #46517 ) (stream docs) - Remove @home-assistant/core from MQTT codeowners (@emontnemery
- #46562 ) (mqtt docs) - Bump hatasmota to 0.2.9 (@emontnemery
- #46561 ) (tasmota docs) - Convert better from byte value to percentage in futurenow (@spike411
- #45042 ) (futurenow docs) - Log ffmpeg errors for homekit cameras (@bdraco
- #46545 ) (homekit docs) - Use httpx in generic camera (@uvjustin
- #46576 ) (generic docs) - MQTT cover Bugfixes (@thecode
- #46479 ) (mqtt docs) - Limit fronius error messages on failed connection (@nielstron
- #45824 ) (fronius docs) - Refactor stream worker responsibilities for segmenting into a separate class (@allenporter
- #46563 ) (stream docs) - Add config flow to Xiaomi Miio switch (@starkillerOG
- #46179 ) (xiaomi_miio docs) (breaking-change) - Upgrade blinkpy to 0.17.0 (@fronzbot
- #46581 ) (blink docs) - Use shared clientsession for sense (@bdraco
- #46419 ) (sense docs) - Upgrade sentry-sdk to 0.20.2 (@frenck
- #46590 ) (sentry docs) - Use core constants for xiaomi_aqara (@tkdrob
- #46551 ) (xiaomi_aqara docs) - Bump tuyaha to 0.0.10 and fix set temperature issues (@ollo69
- #45732 ) (tuya docs) - Add device_class attribute to ESPHome sensor entities (@marecabo
- #46595 ) (esphome docs) - Remove support for migrating pre-config entry homekit (@bdraco
- #46616 ) (homekit docs) (breaking-change) - Add target to services.yaml (@bramkragten
- #46410 ) (light docs) (sonos docs) - Use explicit open/close for covers (@elupus
- #46602 ) (google_assistant docs) (breaking-change) - Remove defunct CoinMarketCap integration (@frenck
- #46615 ) (coinmarketcap docs) - Bump python-vlc-telnet to 2.0.1 (@dmcc
- #46608 ) (vlc_telnet docs) - Use core constants for yeelight (@tkdrob
- #46552 ) (yeelight docs) - Use update coordinator for Xioami Miio subdevices (@starkillerOG
- #46251 ) (xiaomi_miio docs) - Fix vlc_telnet state update (@MartinHjelmare
- #46628 ) (vlc_telnet docs) - Remove unnecessary constants from universal (@tkdrob
- #46537 ) (universal docs) - Separate HLS logic out of core StreamOutput to prepare for discontinuity (@allenporter
- #46610 ) (camera docs) (stream docs) - Do not provide icon if device class is set in ESPHome config (@marecabo
- #46650 ) (esphome docs) - Fix exception in stream idle callback (@allenporter
- #46642 ) (stream docs) - Fix KeyError in comfoconnect percentage (@esev
- #46654 ) (comfoconnect docs) - Fix version of pip in tox (@scop
- #46656 ) - Fix stream keepalive on startup (@allenporter
- #46640 ) (camera docs) - Add SmartTub integration (@mdz
- #37775 ) (smarttub docs) (new-integration) - Fix media_pause in vlc_telnet (@dmcc
- #46675 ) (vlc_telnet docs) - Fix Cloud Google/Alexa check (@balloob
- #46681 ) (cloud docs) - Add back block_until_done calls removed in PR 46610 (@allenporter
- #46680 ) (stream docs) - Add sensors to fetch Habitica tasks (@leikoilja
- #38910 ) (habitica docs) (breaking-change) - Remove exception handling for AttributeError in wemo (@esev
- #46674 ) (wemo docs) - Fix multiple motion blinds gateways (@starkillerOG
- #46622 ) (motion_blinds docs) - Home connect use consts (@badguy99
- #46659 ) (home_connect docs) - Fix flaky stream tests due to race in idle timeout callback (@allenporter
- #46687 ) (stream docs) - Fix Tuya Option Flow tests (@ollo69
- #46651 ) (tuya docs) - Clean up xbee (@tkdrob
- #46549 ) (xbee docs) - Increase async_timeout for wemo update polling (@esev
- #46649 ) (wemo docs) - Remove calls to wemo.reconnect_with_device (@esev
- #46646 ) (wemo docs) - Bump RMVtransport to v0.3.0 (@cgtobi
- #46691 ) (rmvtransport docs) - Discover HRT4-ZW / SRT321 SetPoint in zwave_js (@gsemet
- #46625 ) (zwave_js docs) - Update zha to use new fan entity model (@bdraco
- #45758 ) (zha docs) - Centralize wemo exception handling (@esev
- #46705 ) (wemo docs) - Perform wemo state update quickly after a timeout (@esev
- #46702 ) (wemo docs) - Bump pylutron 0.2.7 (@uvjustin
- #46717 ) (lutron docs) - Switch ssdp to be async by using async_upnp_client for scanning (@bdraco
- #46554 ) (ssdp docs) (breaking-change) - Add selectors to Input * service definitions (@frenck
- #46652 ) (input_boolean docs) (input_datetime docs) (input_number docs) (input_select docs) (input_text docs) - Add selectors to Alert service definitions (@frenck
- #46627 ) (alert docs) - Add selectors to Camera service definitions (@frenck
- #46630 ) (camera docs) - Add selectors to Switch service definitions (@frenck
- #46635 ) (switch docs) - Add selectors to Downloader service definitions (@frenck
- #46638 ) (downloader docs) - Add selectors to Fan service definitions (@frenck
- #46639 ) (fan docs) - Add selectors to Cover service definitions (@frenck
- #46634 ) (cover docs) - Add selectors to Automation service definitions (@frenck
- #46629 ) (automation docs) - Add selectors to Climate service definitions (@frenck
- #46632 ) (climate docs) - Add selectors to Alarm Control Panel service definitions (@frenck
- #46626 ) (alarm_control_panel docs) - Upgrade and constrain httplib2>=0.19.0 (@frenck
- #46725 ) (google docs) (remember_the_milk docs) - ubus: switch to pypi library (@Noltari
- #46690 ) (ubus docs) - Add selectors to Counter service definitions (@frenck
- #46633 ) (counter docs) - Add advanced service parameter flag (@frenck
- #46727 ) (light docs) - Add discontinuity support to HLS streams and fix nest expiring stream urls (@allenporter
- #46683 ) (stream docs) - Add selectors to Scene service definitions (@frenck
- #46729 ) (scene docs) - Fix missing color switch specific device class for Z-Wave JS driver >6.3 (@jcam
- #46718 ) (zwave_js docs) - Add selectors to Netatmo services (@cgtobi
- #46574 ) (netatmo docs) - Add selectors to Vacuum service definitions (@frenck
- #46728 ) (vacuum docs) - Add selectors to Script service definitions (@frenck
- #46730 ) (script docs) - Add advanced selectors to Light service definitions (@frenck
- #46732 ) (light docs) - Add selectors to WLED service definitions (@frenck
- #46731 ) (wled docs) - Add advanced selectors to Climate service definitions (@frenck
- #46736 ) (climate docs) - Add selectors to Z-Wave JS service definitions (@frenck
- #46737 ) (zwave_js docs) - Add selectors to Logger, System Log & Logbook service definitions (@frenck
- #46740 ) (logbook docs) (logger docs) (system_log docs) - Add selectors to MQTT service definitions (@frenck
- #46738 ) (mqtt docs) - Add selectors to Color Extractor service definitions (@frenck
- #46742 ) (color_extractor docs) - Add selectors to Lock service definitions (@frenck
- #46743 ) (lock docs) - Add selectors to Timer service definitions (@frenck
- #46744 ) (timer docs) - Skip repeated segment in stream recorder (@uvjustin
- #46701 ) (stream docs) - Fix typo in Tesla Powerwall strings (@spacegaier
- #46752 ) (powerwall docs) - Add selectors to Hue service definitions (@frenck
- #46747 ) (hue docs) - Add selectors to Media Player service definitions (@frenck
- #46739 ) (media_player docs) - Add selectors to Toon service definitions (@frenck
- #46750 ) (toon docs) - Add selectors to Browser, Recorder, Shopping List service definitions (@frenck
- #46749 ) (browser docs) (recorder docs) (shopping_list docs) - Add selectors to Conversation, Image Processing and Number service definitions (@frenck
- #46746 ) (conversation docs) (image_processing docs) (number docs) - Minor service definition tweaks (@frenck
- #46741 ) (cloud docs) (cloudflare docs) (command_line docs) (keyboard docs) (lovelace docs) (rest docs) (universal docs) - Added Slovenian language (sl-si) to Microsoft TTS (@AdmiralStipe
- #46720 ) (microsoft docs) - Add selectors to HomeKit service definitions (@frenck
- #46745 ) (homekit docs) - Add selectors to Twente Milieu service definitions (@frenck
- #46748 ) (twentemilieu docs) - Ensure pre-commit’s hassfest triggers on service file changes (@frenck
- #46753 ) - Add selectors to Home Assistant service definitions (@frenck
- #46733 ) (homeassistant docs) - Upgrade sentry-sdk to 0.20.3 (@frenck
- #46754 ) (sentry docs) - Allow LIFX bulbs to fade color even when off (@emichael
- #46596 ) (lifx docs) - Add @esev as codeowner for wemo (@esev
- #46756 ) (wemo docs) - Upgrade cryptography to 3.3.2 (@frenck
- #46759 ) - Address late smarttub review (@mdz
- #46703 ) (smarttub docs) - Fix flip-flopped substitutions in Custom Version Type Warning message. (@shbatm
- #46768 ) - Implement percentage step sizes for fans (@bdraco
- #46512 ) (fan docs) - Fix backwards compatibility with vesync fans (@bdraco
- #45950 ) (vesync docs) - Bump actions/stale from v3.0.16 to v3.0.17 (@dependabot - #46777
) - Raise ConditionError for zone errors (@amelchio
- #46253 ) - Raise ConditionError for and/or/not errors (@amelchio
- #46767 ) (automation docs) - Bump RMVtransport to 0.3.1 (@cgtobi
- #46780 ) (rmvtransport docs) - Add Home Assistant color (@frenck
- #46751 ) (light docs) - Allow multiple recipients for XMPP (@oetken
- #45328 ) (xmpp docs) - Update GitHub Issue Form template (@deniseyu
- #46791 ) - Add zwave_js thermostat fan mode and fan state support (@raman325
- #46793 ) (zwave_js docs) - Format zwave_js dump as json (@raman325
- #46792 ) (zwave_js docs) - Bump pywemo to 0.6.2 (@esev
- #46797 ) (wemo docs) - Implement suggested_area in the device registry (@bdraco
- #45940 ) - Cleanup inconsistencies in zha fan and make it a bit more dry (@bdraco
- #46714 ) (zha docs) - Add support for using a single endpoint for rest data (@bdraco
- #46711 ) (rest docs) - Add device_entities template function/filter (@emontnemery
- #46406 ) - Add suggested area support to nuheat (@bdraco
- #46801 ) (nuheat docs) - Fix typing of fan speed count and steps (@bdraco
- #46790 ) - Implement suggested area for netatmo (@bdraco
- #46802 ) (netatmo docs) - Add suggested area to nexia (@bdraco
- #46776 ) (nexia docs) - Add suggested area to hunterdouglas_powerview (@bdraco
- #46774 ) (hunterdouglas_powerview docs) - Ensure recorder shuts down cleanly on restart before startup is finished (@bdraco
- #46604 ) (recorder docs) - Ensure HomeAssistant can still restart when a library file is missing (@bdraco
- #46664 ) - Implement suggested area in lutron_caseta (@bdraco
- #45941 ) (lutron_caseta docs) - Implement percentage step sizes in HomeKit (@bdraco
- #46722 ) (homekit docs) - Update smarty to use new fan entity model (@bdraco
- #45879 ) (smarty docs) - Update alexa for new fan model (@bdraco
- #45836 ) (alexa docs) - Implement suggested areas in bond (@bdraco
- #45942 ) (bond docs) - Recover and restart the recorder if the sqlite database encounters corruption while running (@bdraco
- #46612 ) (recorder docs) - Add suggested area support to Sonos (@bdraco
- #46794 ) (sonos docs) - Run homekit service calls in async since the server is now async (@bdraco
- #45859 ) (homekit docs) - Do not trigger when numeric_state is true at startup (@amelchio
- #46424 ) (homeassistant docs) - Bump zwave-js-server-python to 0.18.0 (@raman325
- #46787 ) (zwave_js docs) (breaking-change) - Rollback stream StreamOutput refactoring in PR#46610 (@allenporter
- #46684 ) (camera docs) (stream docs) - Upgrade TwitterAPI to 2.6.6 (@fabaff
- #46812 ) (twitter docs) - Update rokuecp to 0.8.0 (@ctalkington
- #46799 ) (roku docs) - Add support for bond up and down lights (@bdraco
- #46233 ) (bond docs) (breaking-change) - Add rtsp transport options to generic camera (@uvjustin
- #46623 ) (generic docs) - change log level to info (@mib1185
- #46823 ) (nut docs) - Update xknx to 0.17.0 (@farmio
- #46809 ) (knx docs) (breaking-change) - Detect iBlinds v2.0 switch value as a cover not light (@kpine
- #46807 ) (zwave_js docs) - Implement suggested area in roku (@ctalkington
- #46819 ) (roku docs) - Explicitly create_task for asyncio.wait (@amelchio
- #46325 ) (script docs) - Validate icon and device_class of ESPHome sensor entities (@marecabo
- #46709 ) (esphome docs) - Enable KNX routing optional local_ip (@farmio
- #46133 ) (knx docs) - knx-read-service (@farmio
- #46670 ) (knx docs) - Add open/close tilt support to KNX cover (@crazyfx1
- #46583 ) (knx docs) - Bump pywemo to 0.6.3 (@esev
- #46825 ) (wemo docs) - Disable update polling for Wemo when devices can push updates (@esev
- #46806 ) (wemo docs) - Fix habitica entry unload clean up (@MartinHjelmare
- #46798 ) (habitica docs) - Speed-up wemo discovery (@esev
- #46821 ) (wemo docs) - Add Rituals Perfume Genie integration (@milanmeu
- #46218 ) (rituals_perfume_genie docs) (new-integration) - Bump zigpy-znp from 0.3.0 to 0.4.0 (@puddly
- #46828 ) (zha docs) - Add smarttub sensor platform and state sensor (@mdz
- #46775 ) (smarttub docs) (new-platform) - Fix Insteon config flow with add X10 and device override (@teharris1
- #45854 ) (insteon docs) - Allow upnp ignore SSDP-discoveries (@StevenLooman
- #46592 ) (upnp docs) - Add new Subaru integration (@G-Two
- #35760 ) (subaru docs) (new-integration) - Add support for “alias” in script steps device, device_condition, and conditions (@emontnemery
- #46647 ) - Add support for disabling config entries (@emontnemery
- #46779 ) (config docs) - Add support for preset modes in homekit fans (@bdraco
- #45962 ) (homekit docs) - Cleanup recorder tests (@bdraco
- #46836 ) (recorder docs) - Refine printing of ConditionError (@amelchio
- #46838 ) (automation docs) (homeassistant docs) (breaking-change) - Fix unmocked I/O in rituals_perfume_genie config flow test (@bdraco
- #46862 ) (rituals_perfume_genie docs) - Log zwave_js connection errors (@cgarwood
- #46867 ) (zwave_js docs) - Clean up denonavr constants (@tkdrob
- #46883 ) (denonavr docs) - Clean up acer_projector constants (@tkdrob
- #46880 ) (acer_projector docs) - Add more sensors to SmartTub integration (@mdz
- #46839 ) (smarttub docs) - Add weather platform to template domain (@dgomes
- #45031 ) (template docs) (new-platform) - Add support for SmartTub heat modes (@mdz
- #46876 ) (smarttub docs) - Add switch platform and pump entity to SmartTub (@mdz
- #46842 ) (smarttub docs) (new-platform) - Add support for VeSync dimmer switches (@decompil3d
- #44713 ) (vesync docs) (new-platform) - Log the name of automations with condition errors (@amelchio
- #46854 ) (automation docs) - Add support for SmartTub filtration cycles (@mdz
- #46868 ) (smarttub docs) - Add KNX service exposure_register (@farmio
- #45257 ) (knx docs) - Add light platform to SmartTub (@mdz
- #46886 ) (smarttub docs) (new-platform) - Add KMTronic Integration (@dgomes
- #41682 ) (kmtronic docs) (new-integration) - Add UV sensor to SmartTub (@mdz
- #46888 ) (smarttub docs) - Expose locked attribute in deCONZ climate platform (@jwnmulder
- #46814 ) (deconz docs) - Handle ConditionError with multiple entity_id for state/numeric_state (@amelchio
- #46855 ) - Add usercode support to totalconnect (@austinmroczek
- #39199 ) (totalconnect docs) (breaking-change) - Upgrade mypy to 0.812 (@frenck
- #46898 ) - Add Xiaomi Miio vacuum config flow (@starkillerOG
- #46669 ) (xiaomi_miio docs) (breaking-change) - Bump samsungtvws from 1.4.0 to 1.6.0 (@kukulich
- #46878 ) (samsungtv docs) - Add device_class to Shelly cover domain (@chemelli74
- #46894 ) (shelly docs) - Cleanup of possibily confusing comment in esphome (@frenck
- #46903 ) (esphome docs) - Add binary sensor to SmartTub for online status (@mdz
- #46889 ) (smarttub docs) (new-platform) - Clean up constants (@tkdrob
- #46885 ) - Add name to services (@frenck
- #46905 ) (light docs) - Add service names to Netatmo services (@cgtobi
- #46909 ) (netatmo docs) - add name and target filter to zwave_js lock services.yaml (@raman325
- #46914 ) (zwave_js docs) - Increase tado API polling interval to 5 minutes (@macrosak
- #46915 ) (tado docs) (breaking-change) - Add name and target filter to vizio entity service (@raman325
- #46916 ) (vizio docs) - Add litterrobot integration (@natekspencer
- #45886 ) (litterrobot docs) (new-integration) - Test zwave_js GE 12730 fan controller device-specific discovery (@kpine
- #46840 ) (zwave_js docs) - Clean up Mitemp_bt constants (@tkdrob
- #46881 ) (acer_projector docs) (mitemp_bt docs) - Description tweaks for automation services (@spacegaier
- #46926 ) (automation docs) - Update frontend to 20210222.0 (@bramkragten
- #46928 ) (frontend docs) - Add get_config_parameters websocket command to zwave_js (@cgarwood
- #46463 ) (zwave_js docs) - Add missing required=true to code slot field in zwave_js.set_lock_usercode service (@raman325
- #46931 ) (zwave_js docs) - Add zwave_js/get_log_config and zwave_js/update_log_config WS API commands (@raman325
- #46601 ) (zwave_js docs) - Add zwave_js set_config_parameter WS API command (@raman325
- #46910 ) (zwave_js docs) - Restore stream recorder functionality and add discontinuity support (@uvjustin
- #46772 ) (stream docs) - Add suggested area to tado (@bdraco
- #46932 ) (tado docs) - Update tasmota to use new fan entity model (@bdraco
- #45877 ) (tasmota docs) - Add suggested area support to isy994 (@bdraco
- #46927 ) (isy994 docs) - Fix smaty fan typing (@bdraco
- #46941 ) (smarty docs) - Clean up constants (@tkdrob
- #46924 ) - Add zwave_js constant for add-on slug (@MartinHjelmare
- #46950 ) (zwave_js docs) - Bump accuweather to 0.1.0 (@bieniu
- #46951 ) (accuweather docs) - Add service names to previously enriched services (@frenck
- #46929 ) - Add description to tts and notify services (@bramkragten
- #46764 ) (media_player docs) (tts docs) - Update homeassistant services.yaml (@bramkragten
- #46952 ) (homeassistant docs) - Return states list from zwave_js get_config_parameters websocket if available (@cgarwood
- #46954 ) (zwave_js docs) - Add stop tilt support to KNX (@spacegaier
- #46947 ) (knx docs) - Catch more zwave_js errors (@MartinHjelmare
- #46957 ) (zwave_js docs) - Add zwave_js.set_config_parameter service (@raman325
- #46673 ) (zwave_js docs) - Add missing target to increase_speed/decrease_speed service (@bdraco
- #46939 ) (fan docs) - LiteJet is now configured using config_flow (@joncar
- #44409 ) (litejet docs) (breaking-change) - Bump pymyq to fix myq in core (@bdraco
- #46962 ) (myq docs) - Fix Plex handling of clips (@jjlawren
- #46667 ) (plex docs) - Improve zwave_js config flow (@MartinHjelmare
- #46906 ) (zwave_js docs) - Fix Shelly mireds and color_temp return type (@chemelli74
- #46112 ) (shelly docs) - Avoid having to ask for the bond token when possible during config (@bdraco
- #46845 ) (bond docs) - Fix KNX services.yaml (@farmio
- #46897 ) (knx docs) - Implement additional DataUpdateCoordinator to harmonize the data update handling of Synology DSM (@mib1185
- #46113 ) (synology_dsm docs) - Add more shopping list services (@MHV33
- #45591 ) (shopping_list docs) - Use core constants for dht (@tkdrob
- #46029 ) (dht docs) - Fix Plex showing removed shared users (@jjlawren
- #46971 ) (plex docs) - Fix typo in fireservicerota strings (@milanmeu
- #46973 ) (fireservicerota docs) - Add zwave_js.refresh_value service (@raman325
- #46944 ) (zwave_js docs) - deep copy zwave_js state in test fixtures so tests are more isolated (@raman325
- #46976 ) (zwave_js docs) - Automatically create HomeKit accessory mode entries (@bdraco
- #46473 ) (homekit docs) - Update xknx to 0.17.1 (@farmio
- #46974 ) (knx docs) - Extend zwave_js discovery scheme for lights (@marcelveldt
- #46907 ) (zwave_js docs) - Add switches and sensors to Litter-Robot (@natekspencer
- #46942 ) (litterrobot docs) (new-platform) - Make FAN_ON use the max duration rather than 15 min default (@allenporter
- #46489 ) (nest docs) (breaking-change) - Handle device IP change in upnp (@StevenLooman
- #46859 ) (upnp docs) - Add template support to service targets (@frenck
- #46977 ) - Validate KNX addresses (@farmio
- #46933 ) (knx docs) - Add ClimaCell weather integration (@raman325
- #36547 ) (climacell docs) (new-integration) - Save mysensors gateway type in config entry (@MartinHjelmare
- #46981 ) (mysensors docs) - Mullvad VPN (@meichthys
- #44189 ) (mullvad docs) (new-integration) - Improve mysensors config flow (@MartinHjelmare
- #46984 ) (mysensors docs) - Fix TTS services name (@bramkragten
- #46988 ) (tts docs) - Mullvad integration improvements (@frenck
- #46987 ) (mullvad docs) - Catch AuthRequired exception in confirm discovery step for Shelly config flow (@bieniu
- #46135 ) (shelly docs) - Restore Tado binary sensor attributes (@Noltari
- #46069 ) (tado docs) - Add enable and disable services for recorder (@adrian-vlad
- #45778 ) (recorder docs) - Migrate zwave_js entities to use new unique ID format (@raman325
- #46979 ) (zwave_js docs) - Fix zwave_js config flow server version timeout (@MartinHjelmare
- #46990 ) (zwave_js docs) - Set awesomeversion to 21.2.3 (@fabaff
- #46989 ) - Add addon selector (@ludeeus
- #46789 ) - Climacell fixes: Use common keys for strings, fix temp_low measurement, add windy condition (@raman325
- #46991 ) (climacell docs) - Use location common key reference in totalconnect (@milanmeu
- #46995 ) (totalconnect docs) - Add Netatmo device trigger (@cgtobi
- #45387 ) (netatmo docs) - Remove recursive key reference (@milanmeu
- #46999 ) (syncthru docs) - Add number platform to Z-Wave JS (@marcelveldt
- #46956 ) (zwave_js docs) - Setup config entry even if vizio device is unreachable (@raman325
- #46864 ) (vizio docs) - Support value_template in MQTT triggers (@emontnemery
- #46891 ) (mqtt docs) - Add Sonos media browser image proxy (@cgtobi
- #46902 ) (sonos docs) - Use Plex server URL as config entry title (@jjlawren
- #47010 ) (plex docs) - Bump plexapi to 4.4.0 (@jjlawren
- #47007 ) (plex docs) - Add FAA Delays Integration (@ntilley905
- #41347 ) (faadelays docs) (new-integration) - Add missing tilt icon to Shelly tilt sensor (@chemelli74
- #46993 ) (shelly docs) - Update frontend to 20210224.0 (@bramkragten
- #47013 ) (frontend docs) - Change Z-Wave JS discovery logic to adopt changes to DeviceClass (@marcelveldt
- #46983 ) (zwave_js docs) (breaking-change) - Ensure doorbird events are re-registered when changing options (@bdraco
- #46860 ) (doorbird docs) (beta fix) - Use dispatch instead of eventbus for supervisor events (@ludeeus
- #46986 ) (hassio docs) (beta fix) - Bump python-garminconnect to 0.1.19 to fix broken api (@cyberjunky
- #47020 ) (garmin_connect docs) (beta fix) - Fix missing Shelly external input (@chemelli74
- #47028 ) (shelly docs) (beta fix) - Fix zwave_js unique ID migration logic (@raman325
- #47031 ) (zwave_js docs) (beta fix) - Remove deprecated credstash + keyring (@balloob
- #47033 ) (breaking-change) (beta fix) - Updated frontend to 20210225.0 (@bramkragten
- #47059 ) (frontend docs) (beta fix) - Revert CORS changes for my home assistant (@bramkragten
- #47064 ) (api docs) (http docs) (beta fix) - Ensure hue options show the defaults when the config options have not yet been saved (@bdraco
- #47067 ) (hue docs) (breaking-change) (beta fix) - catch ValueError when unique ID update fails because its taken and remove the duplicate entity (@raman325
- #47072 ) (zwave_js docs) (beta fix) - Bump Z-Wave JS Server Python to 0.20.0 (@balloob
- #47076 ) (zwave_js docs) (beta fix) - Add support for v6 features to philips js integration (@elupus
- #46422 ) (philips_js docs) (beta fix) - Add support for Shelly SHBTN-2 device triggers (@CurrentThread
- #46644 ) (shelly docs) (beta fix) - Add suggested area to hue (@bdraco
- #47056 ) (hue docs) (beta fix) - Bump bimmer_connected to 0.7.15 and fix bugs (@rikroe
- #47066 ) (bmw_connected_drive docs) (beta fix) - Upgrade aiohttp to 3.7.4 (@balloob
- #47077 ) (beta fix) - Bump pychromecast to 8.1.2 (@emontnemery
- #47085 ) (cast docs) (beta fix) - Fix Z-Wave JS discovery schema for thermostat devices (@marcelveldt
- #47087 ) (zwave_js docs) (beta fix) - Bump aioshelly to 0.6.1 (@chemelli74
- #47088 ) (shelly docs) (beta fix) - Add new machine generic-x86-64 to build matrix (@agners
- #47095 ) (beta fix) - Bump google-nest-sdm to v0.2.12 to improve API call error messages (@allenporter
- #47108 ) (nest docs) (beta fix) - Use async_capture_events to avoid running in executor (@balloob
- #47111 ) (beta fix) - Fix Shelly RGBW (@thecode
- #47116 ) (shelly docs) (beta fix) - Handle lutron_caseta fan speed being none (@bdraco
- #47120 ) (lutron_caseta docs) (beta fix) - Provide a human readable exception for the percentage util (@bdraco
- #47121 ) (beta fix) - Update frontend to 20210226.0 (@bramkragten
- #47123 ) (frontend docs) (beta fix) - Fix the updater schema (@balloob
- #47128 ) (updater docs) (beta fix) - Fix MQTT trigger where wanted payload may be parsed as an integer (@emontnemery
- #47162 ) (mqtt docs) (beta fix) - Bump builder to get generic-x86-64 nightly builds (@agners
- #47164 ) (beta fix) - Bump ZHA quirks to 0.0.54 (@dmulcahey
- #47172 ) (zha docs) (beta fix) - Update HAP-python to 3.3.1 (@bdraco
- #47180 ) (homekit docs) (beta fix) - Update AlarmDecoder dependency (@ajschmidt8
- #46841 ) (alarmdecoder docs) (beta fix) - Fix Xiaomi Miio discovery (@starkillerOG
- #47134 ) (xiaomi_miio docs) (beta fix) - Bump simplisafe-python to 9.6.7 (@bachya
- #47206 ) (simplisafe docs) (beta fix) - Increment the homekit config version when restarting (@bdraco
- #47209 ) (homekit docs) (beta fix) - Bump HAP-python to 3.3.2 to fix unavailable condition on restart (@bdraco
- #47213 ) (homekit docs) (beta fix) - Fix generic-x86-64 build (@agners
- #47214 ) (beta fix) - Update color logic for zwave_js light platform (@marcelveldt
- #47110 ) (zwave_js docs) (beta fix) - Fix number of reported issues by github integration (@maxwroc
- #47203 ) (github docs) (beta fix) - Fix race when disabling config entries (@emontnemery
- #47210 ) (beta fix) - Fix harmony failing to switch activities when a switch is in progress (@bdraco
- #47212 ) (harmony docs) (beta fix) - Fix duplicate template handling in Persistent Notifications (@frenck
- #47217 ) (persistent_notification docs) (beta fix) - Fix Xiaomi Miio flow unique_id for non discovery flows (@starkillerOG
- #47222 ) (xiaomi_miio docs) (beta fix) - Fix Shelly Polling (@thecode
- #47224 ) (shelly docs) (beta fix) - Pass variables to initial evaluation of template trigger (@emontnemery
- #47236 ) (template docs) (beta fix) - Bump simplisafe-python to 9.6.8 (@bachya
- #47241 ) (simplisafe docs) (beta fix) - Fix lutron caseta fan handling of speed off (@bdraco
- #47244 ) (lutron_caseta docs) (beta fix) - Add suggested area for zwave_js devices (@raman325
- #47250 ) (zwave_js docs) (beta fix) - Update frontend to 20210301.0 (@bramkragten
- #47252 ) (frontend docs) (beta fix) - Revert “Fix the updater schema (#47128)” (@balloob
- #47254 ) (updater docs) (beta fix) - Limit log spam by ConfigEntryNotReady (@chemelli74
- #47201 ) (beta fix) - Upgrade pillow to 8.1.1 (@frenck
- #47223 ) (doods docs) (image docs) (proxy docs) (qrcode docs) (seven_segments docs) (sighthound docs) (tensorflow docs) (beta fix) - Add zwave_js add-on manager (@MartinHjelmare
- #47251 ) (hassio docs) (zwave_js docs) (beta fix) - Fix Alexa doorbells (@balloob
- #47257 ) (alexa docs) (beta fix) - Add raw values to zwave_js value notification event (@raman325
- #47258 ) (zwave_js docs) (beta fix) - Make MQTT number respect retain setting (@emontnemery
- #47270 ) (beta fix) - Bump simplisafe-python to 9.6.9 (@bachya
- #47273 ) (simplisafe docs) (beta fix) - Fix issue when setting boost preset for a turned off Netatmo thermostat (@cgtobi
- #47275 ) (netatmo docs) (beta fix) - Update frontend to 20210302.0 (@bramkragten
- #47278 ) (frontend docs) (beta fix) - Update ZHA dependencies (@Adminiuga
- #47282 ) (zha docs) (beta fix) - Convert climacell forecast timestamp to isoformat so that UI shows the right times (@raman325
- #47286 ) (climacell docs) (beta fix) - Bump zwave-js-server-python to 0.20.1 (@raman325
- #47289 ) (zwave_js docs) (beta fix) - Correct climacell device info (@raman325
- #47292 ) (climacell docs) (beta fix) - Update frontend to 20210302.3 (@bramkragten
- #47310 ) (frontend docs) (beta fix) - Improve behaviour when disabling or enabling config entries (@emontnemery
- #47301 ) (beta fix) - Simplify switch light (@balloob
- #47317 ) (switch docs) (beta fix)