0.109: New integrations page and weather card, frontend lost weight.
Last week we wrote about the future of YAML. It raised quite a
bit of additional questions, so Phil
Click here to listen to the Podcast
Home Assistant Core 0.109!
This release ships a lot of work that is not directly visible for the eye. We have seen a lot of bug fixes, stability improvements and quality improvements, which is really awesome! There’s more to this than meets the eye.
A new integration configuration page
Let’s start with something visible to the eye. As part of our configuration layout overhaul, we started work on the integration page. The screen now shows cards for every configured integration, and links to a filtered device and entities pages instead of providing its own detail page with devices, options and entities.
All options are now on the same card. And, you can now also rename an already set up integration instance.
Screenshot of the new integration page.
Don’t the new logos look beautiful? A big thanks to all the people, who
have been working hard to complete our collection of logos and icons
Thanks to everybody for contributing, that is amazing! Special thanks to these
champs who did most of the heavy lifting: @adrianmihalko
As for the next steps in future releases; we will add search, group multiple entries of the same integration and add specific functions for integrations like ZHA.
New weather card
To accompany our new weather row design, @zsarnett
Screenshot of the new weather forecast card.
Weight loss for the frontend
The Home Assistant has a translations system, which is great since it allows one to use Home Assistant in the language one prefers.
However, it came with a performance penalty. All translations were downloaded each time. All of them. This is, of course, highly inefficient. With all the new frontend features added and the integrations that now comes to the UI, it slowly is becoming a bigger issue.
For this release, @balloob
Did you know you can help out translating Home Assistant?
There is no need to learn git or anything. It can be done straight from your browser! Read more about helping out translating Home Assistant on our developers website.
Detection of blocking I/O in the event loop
This is a bit technical, but some things happening in Home Assistant, like fetching data from an API or website, can lock up Home Assistant for a small moment, if not done correctly. Until now, this has been hard to detect.
This release adds logic in the core of Home Assistant that is able to detect if an integration does one of those blocking calls and writes a messages to the logs.
Screenshot of an example log entry.
If you see such a message in your logs, please report the issue on our
GitHub
By addressing these issues, we are able to greatly improve the performance, responsiveness and stability of Home Assistant.
Other noteworthy changes
-
@timmo001
Added the possibility to search in the Lovelace card picker.
Screenshot of the search added to the card picker.
-
There is now MQTT debug information on the device page of an MQTT device, awesome work @emontnemery
! -
@frenck
re-introduced support for transitions in scenes. Both the scene.turn_on
andscene.apply
services now accept atransition
option to make your scene transition on lights look smooth as butter. An example use is added to the documentation. -
HomeKit got love from @bdraco
. He has been squashing bugs, improving the overall stability and added support for Vacuums. Also, pairing with HomeKit now shows the easy to scan QR code, which makes it easier to set up. -
@Kane610
really went out into making the UniFi integration perfect. A lot of adjustments and improvements. Thanks! -
The iRobot Roomba integration now supports Braava too! Thanks @shenxn
!
New Integrations
- Add OpenERZ API integration (@misialq
- #30441 ) (openerz docs) (new-integration) - Support for pi4ioe5v9xxxx I2C IO expanders (@antonverburg
- #28847 ) (pi4ioe5v9xxxx docs) (new-integration) - Add device tracking support for the Arris TG2492LG router (@vanbalken
- #30972 ) (arris_tg2492lg docs) (new-integration) - Add Atag One thermostat integration (@MatsNl
- #32361 ) (atag docs) (new-integration)
New Platforms
- Add cover platform to Dynalite (@ziv1234
- #32594 ) (dynalite docs) (new-platform) - Add notify function for BMW Connected Drive (@gerard33
- #33484 ) (bmw_connected_drive docs) (new-platform) - Add Lightwave TRV (@ColinRobbins
- #31665 ) (lightwave docs) (new-platform)
Integrations now available to set up from the UI
The following integrations are now available via the Home Assistant UI:
-
Bravia TV, done by @bieniu
-
Flu Near You, done by @bachya
-
Flume, done by @bdraco
-
FRITZ!Box, done by @escoand
-
Islamic Prayer Times, done by @engrbm87
-
National Weather Service, done by @MatthewFlamm
-
Panasonic Viera, done by @joogps
-
Roomba, done by @Cyr-ius
-
Synology DSM, done by @Quentame
-
Tado, done by @bdraco
-
Totalconnect, done by @austinmroczek
-
Vera, done by @vangorra
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
-
Flu Near You - This integration is now available to be added from the UI. The
monitored_conditions
setting has been removed. You will need to reconfigure your existing YAML integration. - (@bachya- #32858 ) (flunearyou docs) -
Synology DSM - This integration is now available to be added from the UI. It has been renamed from
synologydsm
tosynology_dsm
. Discovery support has been added and thename
configuration key has been removed. - (@Quentame- #32704 ) (@bdraco - #33729 ) (synology_dsm docs) Example YAML configuration:
synology_dsm: - host: XXX username: XXX password: XXX
-
UniFi - Site ID has been removed from device tracker state attributes since integrations and entity can only belong to one site and it is already known. - (@Kane610
- #32817 ) (unifi docs) -
National Weather Service (NWS) - YAML configuration is no longer supported for NWS integration, configuration is now done through the UI. Two entities are now created for each configured entry, one for daynight and one for hourly. The
mode
option is no longer needed andname
option is no longer supported. - (@MatthewFlamm- #34267 ) (nws docs) -
Withings - Withings sleep state has been removed as it does not work as intended anymore. Withings only provides historical data for this API endpoint and getting recent data is rare. This results in wildly inaccurate state reported by Home Assistant. - (@vangorra
- #33817 ) (withings docs) -
Slide - This integration was previously using the wrong inverted percentage of open/close. A new
invert_position
fallback option has been added and the 5% offset to round it off as open/close has been extended to 15%. Now it lines up with Home Assistant standards, which makes HomeKit work out of the box. - (@ualex73- #33739 ) (slide docs) -
Roomba - This integration can now be added from the integrations UI and provides additional sensors! You will need to reconfigure your existing YAML configuration. Please see the documentation for more details. - (@Cyr-ius
- #33302 ) (roomba docs) Example YAML configuration:
roomba: - host: IP_ADDRESS_OR_HOSTNAME blid: BLID password: PASSWORD
-
UV Sensors (various) - Some UV sensors in the integrations
Metoffice
,OpenUV
,Rfxtrx
andTellduslive
did not have a generalized unit of measurement. However, after this change these sensors now have the unit of measurmentUV index
. This can be a breaking change if you display this kind of sensor in external systems such as influxdb, for example. - (@springstan- #34055 ) (metoffice docs) (openuv docs) (rfxtrx docs) (tellduslive docs) -
Ecobee - Ecobee now uses HVAC mode
heat_cool
instead ofauto
, which is reserved for when the user has no control over the temperature. In Ecobee this was not the case and the user has control over the temperature. - (@balloob- #34193 ) (ecobee docs) -
Air Quality (various) - Some
air quality
entities did not have theunit_of_measurement
property set. Now allair quality
entities have the appropriateunit_of_measurement
µg/m³
set. This can be a breaking change if you display this kind of sensor in external systems such as influxdb, for example. - (@bieniu- #33304 ) (air_quality docs) (xiaomi_miio docs) -
SmartThings - This change removes the need (and ability) to use the SmartThings Classic mobile application to install the Home Assistant SmartApp. Going forward, the SmartThings integration setup is completed entirely through the web. This only changes how the integration is setup and not any functionality once setup. - (@andrewsayre
- #34163 ) (smartthings docs) -
Sony Bravia TV - Configuration of new instances will only be possible through Integration due to the lack of the bravia.conf file, which is necessary for YAML configuration. Existing instances will be imported into config_entry.
ignored sources
has been added to the options and the missingdevice_class
property has been added to the entity class. - (@bieniu- #33774 ) (braviatv docs) -
eQ-3 MAX! - Custom
vacation
preset is replaced with standardaway
. Additionally,manual
preset is removed in favor of HVAC modeheat
. This might affect your scripts, templates or automations. - (@leppa- #28845 ) (maxcube docs) Other improvements:
-
It wasn’t possible to return to automatic (scheduled) operation after switching to
manual
preset.none
preset was added, which switches thermostats to automatic (scheduled) operation. -
Manual
preset was removed. HVAC modeHeat
now switches thermostats into manual mode. -
hvac_action
is implemented, based on the valve position: if it’s open (position higher than 0), we assume that hot water is flowing and heating is active. Else, the thermostat is in Idle mode. For wall thermostats, if at least one thermostat in the room has its valve open, then heating is active. -
Support for
Comfort
,Eco
,Off
andOn
modes was added.Comfort
,Eco
andOn
are exposed as presets and switch thermostats into manual mode with corresponding temperatures, programmed on the thermostats.Off
corresponds to HVAC modeOff
. -
Valve position is exposed as state attribute.
-
-
Recorder - The recorder configuration
purge_interval
has been deprecated. The recorder database is now purged every night. This can be disabled with the newauto_purge
configuration though that is usually not recommended. - (@amelchio- #33646 ) (recorder docs) -
USCIS - The USCIS now uses
name
instead offriendly_name
in its YAML configuration. You will need to adjust accordingly. - (@chrisrosset- #33431 ) (uscis docs) -
Panasonic Viera - This is now its own integration and is available through the integrations UI. You will need to reconfigure your existing YAML integration. - (@joogps
- #33829 ) (panasonic_viera docs) Example YAML configuration:
panasonic_viera: host: 192.168.1.10
-
HomeKit Controller - Support for homekit_controller’s legacy pairing data folder
.homekit
has now been removed. This has not been how pairings are saved since Home Assistant 0.94. If you are running Home Assistant 0.94 or later this does not affect you as your pairings were automatically migrated to the new scheme already. If you are running an older release then you will need to re-pair after upgrading. - (@Jc2k- #34333 ) (homekit_controller docs) -
Add Islamic Prayer Times - Islamic Prayer Times is now its own integration and can be added using the Integrations UI. You will need to reconfigure your existing YAML configuration. All sensors will display the prayer times as per the selected calculation method. Changing the calculation method will update all sensors with new prayer times. - (@engrbm87
- #31590 ) (islamic_prayer_times docs) Example YAML configuration:
islamic_prayer_times: calculation_method: makkah
-
AVM FRITZ!Box - This integration is now available to be added from the UI. YAML configuration has been deprecated and should no longer be used, as it will be removed in one of the next releases. - (@escoand
- #31240 ) (fritzbox docs) -
Plex - Configuring Plex via YAML is now deprecated and will be removed in Home Assistant Core 0.111. Configuration is now done through the UI.- (@jjlawren
- #34546 ) (plex docs) -
Google Cast - Connecting to Cast devices now depends on mDNS even when IP addresses of the Cast Devices are manually entered.- (@emontnemery
- #33922 ) (cast docs)
Farewell to the following
- Pushetta
- Yahoo Weather
Pushetta has been offline since September 2019 and the Yahoo Weather API has been discontinued. - (@frenck
Release 0.109.1 - April 30
- Reload braviatv entry after options update (@bieniu
- #34576 ) (braviatv docs) - Fix CVE-2020-1967 (@pvizeli
- #34853 ) - SmartThings continue correct config flow after external auth (@andrewsayre
- #34862 ) (smartthings docs) - Abort nexia import if the username is already configured (@bdraco
- #34863 ) (nexia docs) - Prevent homekit fans from going to 100% than speed when turning on (@bdraco
- #34875 ) (homekit docs) - Fix Flu Near You exception re: stale coroutines (@bachya
- #34880 ) (flunearyou docs) - Fix Garmin Connect doing I/O in event loop (@balloob
- #34895 ) (garmin_connect docs) - Fix Toon doing I/O in event loop (@balloob
- #34896 ) (toon docs) - Reduce log level for WebOS connection error (@jjlawren
- #34904 ) (webostv docs) - Fix handling homekit thermostat states (@bdraco
- #34905 ) (homekit docs) - Avoid error when battery appears after homekit has started (@bdraco
- #34906 ) (homekit docs) - Make sqlalchemy engine connect listener recorder specific (@bdraco
- #34908 ) (recorder docs) (breaking change) - Use entry ID when IPP printer offers no identifier (@ctalkington
- #34316 )
Release 0.109.2 - May 1
- Don’t attempt to set Vizio is_volume_muted property if Vizio API doesn’t provide muted state (@raman325
- #34782 ) (vizio docs) - Bump brother to 0.1.14 (@bieniu
- #34930 ) (brother docs) - Fix MQTT debug info for same topic (@emontnemery
- #34952 ) (mqtt docs) - Fix preservation of homekit fan speed on toggle (@bdraco
- #34971 ) - Fix restoring isy994 brightness with no previous state (@bdraco
- #34972 ) (isy994 docs) - Support num_repeats for roku remote (@ctalkington
- #34981 ) (roku docs) - Support num_repeats for directv remote (@ctalkington
- #34982 ) (directv docs) (directv docs) - UniFi - Disconnected clients wrongfully marked as wired not created (@Kane610
- #34986 ) (unifi docs) - Log the rachio webhook url (@bdraco
- #34992 ) (rachio docs) - Add allow extra to totalconnect config schema (@austinmroczek
- #34993 ) (totalconnect docs) - Fix roomba not reporting error (@shenxn
- #34996 ) (roomba docs) - Lint roomba (@balloob
- #35000 ) (roomba docs)
Release 0.109.3 - May 2
- Fix MELCloud temperature unit (@vilppuvuorinen
- #35003 ) (melcloud docs) (breaking change) - Fix translation merging for custom components without translations (@balloob
- #35032 ) - Fix Canary doing I/O in the event loop (@bachya
- #35039 ) (canary docs) - Bump hass-nabucasa to 0.34.2 (@balloob
- #35046 ) (cloud docs) - Bump python-synology to 0.7.4 (@Quentame
- #35052 ) (synology_dsm docs) - UniFi - Catch controllers running on UniFi OS that don’t have a local user configured (@Kane610
- #35060 ) (unifi docs) - UniFi - Add support for 2.4/5 GHz separated SSIDs (@Kane610
- #35062 ) (unifi docs) - Bump roombapy to 1.5.2 (@shenxn
- #35067 ) (roomba docs) - Bump python-synology to 0.8.0 + Fix disk space incorrect sensor type (@Quentame
- #35068 ) (synology_dsm docs) - Update bravia-tv to 1.0.3 (@dcnielsen90
- #35077 ) (braviatv docs) - Updated frontend to 20200427.2 (@bramkragten
- #35079 ) (frontend docs) - Improve stability of homekit media players (@bdraco
- #35080 ) (homekit docs)
Release 0.109.4 - May 4
- Fix Synology NAS discovered multiple times (@Quentame
- #35094 ) (synology_dsm docs) - Correct typo Asssitant -> Assistant (@ludeeus
- #35117 ) (websocket_api docs) - Hue: Guard for when there is no brightness (@balloob
- #35151 ) (hue docs) - Bump pyiCloud to 0.9.7 + do not warn when pending devices (@Quentame
- #35156 ) (icloud docs) - Fix Canary KeyError: ‘ffmpeg_arguments’ (@frenck
- #35158 ) (canary docs) - Fix UVC doing I/O inside the event loop (@frenck
- #35169 ) (uvc docs) - Fix utility_meter calibration with float values (@dgomes
- #35186 ) (utility_meter docs) - Fix Synology DSM sensor to be False or 0 (@Quentame
- #35208 ) (synology_dsm docs)
Release 0.109.5 - May 6
- Add retry on empty modbus messages for serial protocol (@janiversen
- #34678 ) (modbus docs) - Change Modbus switch to use verify_register when defined (@janiversen
- #34679 ) (modbus docs) - Catch samsungtv timeout exception (@escoand
- #35205 ) (samsungtv docs) - Broader Notion exception handling (@bachya
- #35265 ) (notion docs) - UniFi - Support SSID filter of SSIDs from access points with extra configuration (@Kane610
- #35295 ) (unifi docs) - Fix SMS doing I/O in event loop (@balloob
- #35313 ) (sms docs)
Release 0.109.6 - May 7
- Fix roomba 980 position report (@shenxn
- #35316 ) (roomba docs) - Update pymyq to 2.0.2 (@bdraco
- #35330 ) (myq docs) - Fix Synology DSM discovery can’t be ignored (@Quentame
- #35331 ) (synology_dsm docs) - Remove panasonic_viera from legacy discovery (@joogps - #34909)
- Fix Islamic prayer sensor timestamp format (@engrbm87 - #35243)
All changes
Click to see all changes!
- Add MQTT debug info for remaining MQTT integrations (@emontnemery
- #33506 ) (mqtt docs) - Add Rachio Schedules (@brg468
- #33421 ) (rachio docs) - Directly call async_write_ha_state (@balloob
- #33508 ) - Add availability to opentherm_gw entities (@mvn23
- #32408 ) (opentherm_gw docs) - UniFi - Make POE control switches configurable (@Kane610
- #32781 ) (unifi docs) - Unsub dispatcher when removing entity from hass (@balloob
- #33510 ) - Add remote platform to directv (@ctalkington
- #32790 ) (directv docs) (directv docs) - Don’t write storage to disk while stopping (@dmulcahey
- #33456 ) - Update pyotgw to 0.6b1 (@mvn23
- #33529 ) (opentherm_gw docs) - Add cover platform to Dynalite (@ziv1234
- #32594 ) (dynalite docs) (new-platform) - Add Rachio Flex Schedules (@brg468
- #33533 ) (rachio docs) - Add melcloud AtaDevice vane control (@vilppuvuorinen
- #32672 ) (melcloud docs) - Use mock storage for MQTT tests (@dmulcahey
- #33553 ) - Fix uncaught exceptions for mqtt (@ziv1234
- #33547 ) - Fix template light returning NULL in color or temperature (@alistairg
- #33498 ) (template docs) - fixed uncaught exceptions for tradfri (@ziv1234
- #33550 ) - Add support to the Econet integration for new attributes: lower_temp, upper_temp, ambient_temp & is_enabled (@dprus
- #33363 ) (econet docs) - Revert “Add support to the Econet integration for new attributes: lower_temp, upper_temp, ambient_temp & is_enabled (#33363)” (@bdraco
- #33555 ) (econet docs) - Remove MQTT state vacuum value_template support. (@emontnemery
- #33536 ) (mqtt docs) - Add config entry for Flu Near You (@bachya
- #32858 ) (flunearyou docs) (breaking change) - Use backend-provided fan speed presets for Xiaomi vacuums, bum… (@rytilahti
- #32850 ) (xiaomi_miio docs) - Add support for Vizio sound mode (@raman325
- #33200 ) (vizio docs) - Rachio Async fixes (@brg468
- #33549 ) (rachio docs) - Add force_update to timer integration (@akasma74
- #31646 ) (timer docs) - Directly call write state 2 (@balloob
- #33513 ) - Add vera config entries support (@vangorra
- #29880 ) (vera docs) - Upgrade Mastodon.py to 1.5.1 (@fabaff
- #33243 ) (mastodon docs) - Add unique id and show on map option in Tankerkoenig (@FlavorFx
- #33400 ) (tankerkoenig docs) - Upgrade cryptography to 2.9 (@fabaff
- #33571 ) - Add support for Mi AirPurifier 3 (@foxel
- #31729 ) (xiaomi_miio docs) - Fix vertical/horizontal property mixup in melcloud (@vilppuvuorinen
- #33580 ) (melcloud docs) - Automatic: fix OAuth2 redirect (@pbeckcom
- #33581 ) - Improve MQTT test coverage and remove dead code (@emontnemery
- #33584 ) (mqtt docs) - Add Abode entity available property (@shred86
- #32923 ) (abode docs) - Small cleanup in async_process_ha_core_config (@emontnemery
- #33583 ) - Perform some small Flu Near You cleanup (@bachya
- #33590 ) (flunearyou docs) - Data Coordinator to return unsub func (@balloob
- #33588 ) (hue docs) - Add Home Coach to zeroconf detection (@cgtobi
- #33593 ) (netatmo docs) - Remove unused manifest fields (@balloob
- #33595 ) - Reduce log spam (@cgtobi
- #33592 ) (netatmo docs) - Change the method of getting the mac address in the braviatv i… (@bieniu
- #33567 ) (braviatv docs) - Fix uncaught exceptions in upnp (@ziv1234
- #33604 ) - Update pymelcloud to fix broken area device search (@vilppuvuorinen
- #33620 ) (melcloud docs) - Support melcloud swing mode (@Danielhiversen
- #33008 ) (melcloud docs) - Add zigbee information to ZHA device information (@dmulcahey
- #33612 ) (zha docs) - Move imports to top in wirelesstag (@frenck
- #33624 ) (wirelesstag docs) - Move imports to top for danfoss_air (@frenck
- #33625 ) (danfoss_air docs) - Move imports to top for doorbird (@frenck
- #33627 ) (doorbird docs) - Move imports to top for spc (@frenck
- #33628 ) (spc docs) - Move imports to top for mystrom (@frenck
- #33629 ) (mystrom docs) - Enable pylint import-outside-toplevel (@frenck
- #33631 ) (mqtt docs) (tensorflow docs) (zwave docs) - String formatting improvements (@frenck
- #33635 ) - Update legacy job calls in abode (@shred86
- #33607 ) (abode docs) - Use byte literals instead of encode (@frenck
- #33633 ) (actiontec docs) (graphite docs) (lannouncer docs) (thomson docs) - Use set & dict literals (@frenck
- #33636 ) - Removal of extraneous parenthesis (@frenck
- #33637 ) - Enable pylint global-statement (@frenck
- #33641 ) - Improve string formatting (@springstan
- #33643 ) (google_assistant docs) (joaoapps_join docs) (nissan_leaf docs) (withings docs) - String formatting improvements (@frenck
- #33653 ) - Use str literals (@frenck
- #33654 ) (rachio docs) (zwave docs) - Replace OSError aliases with OSError (@frenck
- #33655 ) - Remove unused manifest fields v2 (@springstan
- #33656 ) - Use dict literals (@springstan
- #33658 ) - Use tuple literals (@springstan
- #33661 ) (group docs) (tcp docs) - Remove redundant open modes (@frenck
- #33652 ) (config docs) (fail2ban docs) (file docs) (google docs) (onewire docs) (remember_the_milk docs) - Add attribution to Sense component (@tchellomello
- #33657 ) (sense docs) - Improve string formatting v2 (@springstan
- #33645 ) - Use list literals (@springstan
- #33659 ) - Small code style improvements to Alexa integration (@frenck
- #33660 ) (alexa docs) - Correct Hue mireds for lights (@balloob
- #33597 ) (hue docs) - Fix unhandled exceptions in dsmr (@ziv1234
- #33601 ) - Add await to coroutines in Abode (@shred86
- #33664 ) (abode docs) - String formatting improvements for tests (@frenck
- #33663 ) - String formatting improvements for tests (2) (@frenck
- #33666 ) - Handle cancellation in ServiceRegistry.async_call (@pnbruckner
- #33644 ) - Improve string formatting v3 (@springstan
- #33667 ) - Use set literals in tests (@frenck
- #33669 ) (alexa docs) (emulated_hue docs) (group docs) (hue docs) (mqtt docs) (zha docs) - Removal of old style class definitions in tests (@frenck
- #33671 ) (google_pubsub docs) (mqtt docs) (roku docs) (vizio docs) - Replace OSError aliases with OSError in UVC test (@frenck
- #33673 ) (uvc docs) - Use byte literals instead of encode in tests (@frenck
- #33672 ) (graphite docs) - Small code style improvements to Insteon integration (@frenck
- #33662 ) (insteon docs) - Removal of extraneous parenthesis in tests (@frenck
- #33670 ) (filesize docs) (folder docs) (folder_watcher docs) (homekit_controller docs) (homematicip_cloud docs) (hue docs) - use async_on_remove for IPP Update Coordinator (@ctalkington
- #33596 ) (ipp docs) - Add OpenERZ API integration (@misialq
- #30441 ) (openerz docs) (new-integration) - Enable pylint unnecessary-pass (@frenck
- #33650 ) - Add yamllint (in pre-commit and CI) (@frenck
- #33676 ) - List dir when test fails (@balloob
- #33685 ) (tts docs) - Add pyupgrade (in pre-commit and CI) (@frenck
- #33688 ) - Map dry and fan only states for homekit thermostats (@bdraco
- #33682 ) (homekit docs) - Make homekit aware of STATE_STANDBY (@bdraco
- #33679 ) (homekit docs) - Improve string formatting v4 (@springstan
- #33668 ) - Add prettier (in pre-commit and CI) (@frenck
- #33693 ) - Improve string formatting v5 (@springstan
- #33697 ) - Prevent last.fm errors with None (@inverse
- #33446 ) (lastfm docs) - Recommend python & prettier vscode extensions (@frenck
- #33702 ) - Add check executables have shebangs (in pre-commit and CI) (@frenck
- #33703 ) (alexa docs) (dynalite docs) (tankerkoenig docs) - Ensure SimpliSafe state sync when websocket falters (@bachya
- #33680 ) (simplisafe docs) - Show diff in CI and cleanup pylintrc (@frenck
- #33704 ) - Remap homekit auto to home assistant heat_cool (@bdraco
- #33701 ) (homekit docs) - Remove global variable from aquostv (@springstan
- #33716 ) (aquostv docs) - Remove global variable from bloomsky (@springstan
- #33720 ) - Remove global variable from arduino (@springstan
- #33718 ) (arduino docs) - Remove global variable from scsgate (@springstan
- #33719 ) (scsgate docs) - Remove global variable from apcupsd (@springstan
- #33717 ) (apcupsd docs) - Ignore tplink tests exceptions (@ziv1234
- #33710 ) - Fix exception in zwave test (@ziv1234
- #33711 ) (zwave docs) - Fix iCloud tests doing I/O (@Quentame
- #33721 ) (icloud docs) - Improve string formatting v7 (@springstan
- #33705 ) (homekit docs) (rflink docs) (smartthings docs) (withings docs) - Remove global variable from sleepiq (@springstan
- #33715 ) (sleepiq docs) - Convert rachio to cloudhooks (@bdraco
- #33724 ) (rachio docs) - Add config flow to Synology DSM (@Quentame
- #32704 ) (synology_dsm docs) (synologydsm docs) (breaking change) (new-integration) - UniFi - Improve client tracker attributes based on connection (@Kane610
- #32817 ) (unifi docs) (breaking change) - Remove legacy async_add_job from homekit tests (@bdraco
- #33727 ) (homekit docs) - Don’t reinvent callback handler removal logic in several integ… (@bachya
- #33726 ) (airvisual docs) (ambient_station docs) (flunearyou docs) (iqvia docs) (notion docs) (openuv docs) (rainmachine docs) - Fix exceptions in tests for samsung_tv (@ziv1234
- #33732 ) (samsungtv docs) - Add MQTT Alarm Control Panel custom bypass state (@yozik04
- #32541 ) (mqtt docs) - Temporarily disable Prettier on CI until issue is resolved (@frenck
- #33734 ) - Collection of random (mainly) test improvements (@frenck
- #33733 ) - Remove global variable from mochad (@springstan
- #33745 ) (mochad docs) - Collection of random test improvements (@frenck
- #33742 ) (alert docs) (alexa docs) (demo docs) (melissa docs) (water_heater docs) - Clean up after global variable deletion (@springstan
- #33743 ) (arduino docs) (bloomsky docs) (sleepiq docs) - Pre-commit changes to Prettier and executables check (@frenck
- #33749 ) - Add some safety checks for property access in NMBS sensor (@thibmaek
- #33695 ) (nmbs docs) - Properly demarcate websocket and REST API callbacks in SimpliS… (@bachya
- #33706 ) (simplisafe docs) - Patch gdacs entry setup in config flow tests (@MartinHjelmare
- #33776 ) (gdacs docs) - Support for pi4ioe5v9xxxx I2C IO expanders (@antonverburg
- #28847 ) (pi4ioe5v9xxxx docs) (new-integration) - Add Sense attribution to all Sense sensors (@tchellomello
- #33775 ) (sense docs) - Remove global variable from zigbee (@springstan
- #33750 ) (zigbee docs) - Update Codecov.io configuration (@frenck
- #33783 ) - Add emontnemery as codeowner for cast, mqtt (@emontnemery
- #33784 ) - Bumped version to 0.109.0dev0 (@frenck
- #33782 ) - Collection of core tests improvements (@frenck
- #33757 ) - Fix uncaught exceptions for discovery, unify_direct, spotify,… (@ziv1234
- #33735 ) (discovery docs) (smartthings docs) (spotify docs) (unifi_direct docs) - Collection of tests improvements (@frenck
- #33778 ) (demo docs) (media_player docs) (shell_command docs) (version docs) - Remove uncaught exceptions from rflink (@ziv1234
- #33709 ) (rflink docs) - Improve MQTT debug info for subscriptions with wildcard (@emontnemery
- #33752 ) (mqtt docs) - Upgrade hass-cloud to 0.34 (@balloob
- #33789 ) (cloud docs) - Fix flaky TP-Link test (@balloob
- #33790 ) (tplink docs) - Add discovery support to synology_dsm (@bdraco
- #33729 ) (synology_dsm docs) (breaking change) - Update directv remote platform tests service calls (@ctalkington
- #33793 ) (directv docs) (directv docs) - Remove None from dict.get(key, None) (@springstan
- #33794 ) - Clean up access to config in various integrations v2 (@springstan
- #33763 ) - Improve string formatting v6 (@springstan
- #33698 ) - Handle QVR Pro dropping connection (@oblogic7
- #33591 ) (qvr_pro docs) - Fix hue ct (@balloob
- #33791 ) (hue docs) - Clean up access to config in various integrations (@springstan
- #33759 ) (acer_projector docs) (ads docs) (aladdin_connect docs) (alarmdecoder docs) (alert docs) (alpha_vantage docs) (amazon_polly docs) - Upgrade sqlalchemy to 1.3.16 (@frenck
- #33810 ) (recorder docs) (sql docs) - Upgrade shodan to 1.23.0 (@frenck
- #33811 ) (shodan docs) - Add counters for GitHub repo forks, clones, views (@renemarc
- #33300 ) (github docs) - Convert nws integration to component configuration (@MatthewFlamm
- #31398 ) (nws docs) (breaking change) - Convert nut to a multi step config flow (@bdraco
- #33803 ) (nut docs) - Use HTTP_OK constant (@springstan
- #33798 ) - Do not ban supervisor ip if set (@MartinHjelmare
- #33781 ) (http docs) - Add script to clean up translations (@balloob
- #33802 ) - Load integrations with requirements in device_automation (@jason0x43
- #33714 ) (device_automation docs) - Fix thermostats that do not support off under homekit (@bdraco
- #33809 ) (homekit docs) - Remove withings sleep state (@vangorra
- #33817 ) (withings docs) (breaking change) - Fix isort problem in homeassistant/requirements.py (@basnijholt
- #33828 ) - Accommodate mysql servers with a low wait_timeout (@bdraco
- #33638 ) (recorder docs) - Separate august keypads into their own device (@bdraco
- #33665 ) (august docs) - UniFi: Add UDM/P (UniFi OS) support (@Kane610
- #33766 ) (unifi docs) - Use HTTP_INTERNAL_SERVER_ERROR constant (@springstan
- #33832 ) - Add a config flow for flume (@bdraco
- #33419 ) (flume docs) - Use HTTP_NOT_FOUND constant (@springstan
- #33835 ) - Update nut to use DataUpdateCoordinator (@bdraco
- #33831 ) (nut docs) - Fix missed async conversion in flume. (@bdraco
- #33855 ) (flume docs) - Clean up access to config in various integrations v3 (@springstan
- #33842 ) - Fix slide open/close percentage (@ualex73
- #33739 ) (slide docs) (breaking change) - Lookup manufacturer name for casts (@emontnemery
- #33845 ) (cast docs) - Add local_ip unique_id & icon and single_instance_allowed (@Quentame
- #33483 ) (local_ip docs) - Add and use HTTP_FORBIDDEN constant (@springstan
- #33839 ) - Add Direct Message support for Discord integration (@vermium-sifell
- #33692 ) (discord docs) - Add tradfri cover model to the cover entity attributes (@i00
- #33674 ) (tradfri docs) - Use HTTP_BAD_REQUEST constant (@springstan
- #33797 ) - Consolidate translation script (@balloob
- #33911 ) - Rewrite MQTT & demo Lock tests (@frenck
- #33838 ) (demo docs) (lock docs) (mqtt docs) - Guard IPP against negative ink levels (@ctalkington
- #33931 ) (ipp docs) (beta fix) - Migrate translations upload (@balloob
- #33926 ) - Migrate translations clean script (@balloob
- #33930 ) - Make f-strings without placeholder normal strings (@scop
- #33938 ) (homeassistant docs) (homekit docs) - UniFi - Roaming clients should be considered connected (@Kane610
- #33942 ) (unifi docs) - Discover manually added casts (@emontnemery
- #33922 ) (cast docs) - Use TEMP_CELSIUS constant (@springstan
- #33963 ) - Remove support for cast dynamic speaker groups (@emontnemery
- #33884 ) (cast docs) - Use ENERGY_KILO_WATT_HOUR constant (@springstan
- #33962 ) - Use TEMP_FAHRENHEIT constant (@springstan
- #33969 ) (ambient_station docs) (darksky docs) (dyson docs) (eight_sleep docs) - Clean up ssl usage (@springstan
- #33960 ) - Migrate translations_develop script (@balloob
- #33933 ) - Ability to mock long poll requests + refactor qwikswitch unit… (@ziv1234
- #33804 ) (qwikswitch docs) - Rewrite parts of upnp component (@StevenLooman
- #33108 ) (upnp docs) - Add new Econet attributes (@dprus
- #33795 ) (econet docs) - Undo NUT update listener on config reload (@bdraco
- #33986 ) (nut docs) - Fix Rachio binary sensor cold reboot (@brg468
- #33959 ) (rachio docs) - Add and use UNIT_VOLT constant (@springstan
- #33994 ) - Use LENGTH_KILOMETERS constant (@springstan
- #33976 ) - Cleanup ZHA metering and electrical measurement channels (@dmulcahey
- #33992 ) (zha docs) - Add changed_by to elkm1 alarm device_state_attributes (@bdraco
- #33982 ) (elkm1 docs) - Read min and max mireds from ZHA lights (@dmulcahey
- #33983 ) (zha docs) - Bump up zha dependencies. (@Adminiuga
- #33997 ) (zha docs) - Vizio dependency version bump (@raman325
- #34002 ) (vizio docs) - update strings.json to match device name in manifest (@raman325
- #34003 ) (vizio docs) - Upgrade TwitterAPI to 2.5.11 (@fabaff
- #34006 ) (twitter docs) - Upgrade getmac to 0.8.2 (@fabaff
- #34013 ) (huawei_lte docs) (kef docs) (minecraft_server docs) (nmap_tracker docs) - Upgrade sendgrid to 6.2.1 (@fabaff
- #34014 ) (sendgrid docs) - Upgrade mutagen to 1.44.0 (@fabaff
- #34011 ) (tts docs) - Upgrade discord.py to 1.3.3 (@fabaff
- #34008 ) (discord docs) - Upgrade distro to 1.5.0 (@fabaff
- #34009 ) (updater docs) - Upgrade beautifulsoup4 to 4.9.0 (@fabaff
- #34007 ) (scrape docs) - Upgrade numpy to 1.18.2 (@fabaff
- #34012 ) (iqvia docs) (opencv docs) (tensorflow docs) (trend docs) - Fix docstring in test_util/aiohttp.py (@ziv1234
- #34024 ) - Update codeowners for seven_segments (@fabaff
- #34027 ) (seven_segments docs) - Upgrade geopy to 1.21.0 (@fabaff
- #34026 ) (aprs docs) - Use POWER_WATT constant (@springstan
- #33984 ) - Add and use UNIT_DEGREE constant (@springstan
- #33978 ) - Upgrade pillow to 7.1.1 (@fabaff
- #34025 ) (doods docs) (proxy docs) (qrcode docs) (seven_segments docs) (sighthound docs) (tensorflow docs) - Add config_flow for Roomba (@Cyr-ius
- #33302 ) (roomba docs) (breaking change) - Use ZigbeeException instead of DeliveryError in ZHA (@dmulcahey
- #33993 ) (zha docs) - Add tests for various NUT upses (@bdraco
- #34034 ) (nut docs) - Fix docstring in test_utils/aiohttp.py (@ziv1234
- #34040 ) - Various camera test improvements (@frenck
- #34022 ) (camera docs) (demo docs) - Remove already fixed qwikswitch uncaught exceptions (@ziv1234
- #34049 ) - Use UNIT_PERCENTAGE constant (@springstan
- #34054 ) (abode docs) (august docs) (garmin_connect docs) (nexia docs) (nut docs) (powerwall docs) - Handle incorrect config for Nederlandse Spoorwegen integration (@YarmoM
- #31623 ) (nederlandse_spoorwegen docs) - Restore ability to change the scan interval in the NUT (@bdraco
- #33996 ) (nut docs) - Do not use POWER_WATT for West wind direction (@Quentame
- #34069 ) (homematicip_cloud docs) - Upgrade certifi to >=2020.4.5.1 (@fabaff
- #34080 ) - Upgrade importlib-metadata to 1.6.0 (@fabaff
- #34081 ) - Upgrade keyring to 21.2.0 (@fabaff
- #34084 ) - Fix harmony unnecessary whitespace stripping (@dmwyatt
- #34071 ) (harmony docs) - Clean up camera and demo camera (@MartinHjelmare
- #34058 ) (demo docs) - Add homekit configuration option to bind to default interface (@bdraco
- #33999 ) (homekit docs) - Improve string formatting v9 (@springstan
- #34050 ) - Add notify function for BMW Connected Drive (@gerard33
- #33484 ) (bmw_connected_drive docs) (new-platform) - Allow QVR Pro port to be optional on config (@oblogic7
- #33901 ) (qvr_pro docs) - Import ABC from collections.abc instead of collections for Pyt… (@tirkarthi
- #34077 ) (command_line docs) (zha docs) - Increase scan_interval for currencylayer (@fabaff
- #34097 ) (currencylayer docs) - Use MASS_KILOGRAMS constant (@springstan
- #34052 ) (garmin_connect docs) (isy994 docs) (smartthings docs) - Config flow for tado (@bdraco
- #33677 ) (tado docs) - deCONZ support for new device trigger for Feller EDIZIOdue Friends of hue Switch (@bqstony
- #33478 ) (deconz docs) - Use UNIT_UV_INDEX constant (@springstan
- #34055 ) (metoffice docs) (openuv docs) (rfxtrx docs) (tellduslive docs) (breaking change) - Add and use UNIT_CONDUCTIVITY constant (@springstan
- #34107 ) (miflora docs) (mysensors docs) (plant docs) - Use LENGTH_METERS constant (@springstan
- #34110 ) (darksky docs) (garmin_connect docs) (isy994 docs) (mysensors docs) (proximity docs) (zamg docs) - Add and use frequency constants (@springstan
- #34113 ) - Fixed uncaught exceptions for demo (@ziv1234
- #34117 ) (demo docs) - Don’t do http requests to determine Cast device details (@emontnemery
- #34082 ) (cast docs) - Fix reversed door closing/opening states in HomeKit (@bdraco
- #34095 ) (homekit docs) - Fix nws platform setup and data update. (@MatthewFlamm
- #34106 ) (nws docs) - Add tilt support to basic homekit window covers (@bdraco
- #33937 ) (homekit docs) - Convert homekit thermostats to use service callbacks (@bdraco
- #34073 ) (homekit docs) - Add Totalconnect config flow (@austinmroczek
- #32126 ) (totalconnect docs) - Add Lightwave TRV (@ColinRobbins
- #31665 ) (lightwave docs) (new-platform) - Use Orange Pi GPIO as integration name (@pascallj
- #34137 ) (orangepi_gpio docs) - Various light test improvements (@frenck
- #34131 ) (demo docs) (device_sun_light_trigger docs) (flux docs) (group docs) (light docs) - feat(synology-srm): update to latest version and improve errors (@aerialls
- #34144 ) (synology_srm docs) - Add flash light device actions (@chmielowiec
- #33689 ) (light docs) - Use updated powerwall client API library (@jrester
- #34139 ) (powerwall docs) - Fix example paths for Android TV download/upload services (@JeffLIrion
- #34151 ) (androidtv docs) - Add play_media channel support to roku (@quinnhosler
- #34124 ) (roku docs) - Add websocket API to update config entry title (@balloob
- #34155 ) (config docs) - Dump states in event handler for HA_Stop (@balloob
- #33974 ) - Use correct Ecobee fan constants (@balloob
- #34177 ) (ecobee docs) - Allow WS queue to temporarily peak (@balloob
- #34175 ) (websocket_api docs) - Fix typo in sense constant SENSE_TRENDS_COORDINATOR (@bdraco
- #34181 ) (sense docs) - Report unserializable data in websocket (@balloob
- #34072 ) (websocket_api docs) - Update pyHik to 0.2.7 (@mezz64
- #34183 ) (hikvision docs) - Ecobee to use HVAC mode heat-cool instead of auto (@balloob
- #34193 ) (ecobee docs) (breaking change) - Upgrade holidays to 0.10.2 (@fabaff
- #34189 ) (workday docs) - Test updating non existing config entry (@balloob
- #34191 ) (config docs) - Upgrade yamllint to 1.22.0 (@frenck
- #34198 ) - Fix Hue brightness values over 127 off by one (@balloob
- #34190 ) (hue docs) - Upgrade spotipy to 2.11.1 (@frenck
- #34201 ) (spotify docs) - Add Android TV screen capture option and use library screencap (@i00
- #34074 ) (androidtv docs) - Add defrost preset mode to Tesla (@alandtse
- #34186 ) (tesla docs) - Bump simplisafe-python to 9.0.7 (@bachya
- #34216 ) (simplisafe docs) - Add snapcast latency attribute and service (@BarrettLowe
- #34126 ) (snapcast docs) - Improve LG webosTV (@timmo001
- #34147 ) (webostv docs) - Reduce loss of precision when setting light percent brightness (@bdraco
- #34208 ) (light docs) - Add DEVICE_CLASS_BATTERY_CHARGING to binary_sensor (@bdraco
- #34203 ) (binary_sensor docs) - Clean up access to config in various integrations v4 (@springstan
- #34174 ) - Reduce tplink loss of precision during brightness conversion (@bdraco
- #34210 ) (tplink docs) - Fix for schluter unit system bug (@prairieapps
- #34230 ) (schluter docs) - Add unit_of_measurement property for air_quality entity (@bieniu
- #33304 ) (air_quality docs) (xiaomi_miio docs) (breaking change) - Updated frontend to 20200414.0 (@bramkragten
- #34235 ) (frontend docs) - Update SmartThings config flow to be entirely UI based (@andrewsayre
- #34163 ) (smartthings docs) (breaking change) - Add config flow for braviatv integration (@bieniu
- #33774 ) (braviatv docs) (breaking change) - Add attribute for storing one weather warning as a whole (@marecabo
- #29005 ) (dwd_weather_warnings docs) - Allow async_setup changes to config entry data be taken into a… (@balloob
- #34166 ) - Clean up access to config in various integrations v5 (@springstan
- #34206 ) - Add AsusWRT Devices Connected Sensor (@timmo001
- #34204 ) (asuswrt docs) - Move title translation to root (@balloob
- #33850 ) - Add MQTT climate temperature unit (@presslab-us
- #34066 ) (mqtt docs) - Add command to get integration manifests (@balloob
- #34262 ) (websocket_api docs) - Add Translations 2.0 migrate script (@balloob
- #34261 ) - Removed uncaught exceptions from Dyson (@ziv1234
- #34112 ) (dyson docs) - Patch http.client to not do I/O in the event loop (@balloob
- #34194 ) (breaking change) - Add translations check script (@balloob
- #34272 ) (deconz docs) (unifi docs) - Fix Keba request data service call (@dannerph
- #34254 ) (keba docs) - Support DirecTV music channels with extended meta (@ctalkington
- #34228 ) (directv docs) (directv docs) - Add tests for additional nut ups models (@bdraco
- #34240 ) (nut docs) - Set homekit alarm/sensor/switch/cover state as soon as possible (@bdraco
- #34245 ) (homekit docs) - Convert homekit fans to use service callbacks (@bdraco
- #34229 ) (homekit docs) - Prevent a single accessory setup failure from breaking all HomeKit accessories (@bdraco
- #34263 ) (homekit docs) - Fix synology_dsm i/o in event loop (@bdraco
- #34281 ) (synology_dsm docs) - Improve MAX! Cube integration (@leppa
- #28845 ) (maxcube docs) (breaking change) - Add state to RFXtrx covers (@Ernst79
- #30935 ) (rfxtrx docs) - Add config flow to nws and remove yaml configuration (@MatthewFlamm
- #34267 ) (nws docs) (breaking change) - Bump iammeter to 0.1.7 to fix empty SN (@lewei50
- #34279 ) (iammeter docs) - Add device tracking support for the Arris TG2492LG router (@vanbalken
- #30972 ) (arris_tg2492lg docs) (new-integration) - Take integration title from manifest if not translated (@balloob
- #34283 ) (hue docs) - Allow hassfest to validate specific integrations (@balloob
- #34277 ) - Support contemporary entity selectors for LIFX services (@amelchio
- #33062 ) (lifx docs) - Ensure zone in update payload for konnected (@kit-klein
- #34289 ) (konnected docs) - Migrate frontend translations of domains to backend (@balloob
- #34294 ) - Drop title from translations if brand name (@balloob
- #34306 ) - Ensure konnected unsubscribes during entry unloads (@kit-klein
- #34291 ) (konnected docs) - Improve Sonarr Upcoming Time Handling (@ctalkington
- #34224 ) (sonarr docs) - Improve IPP Config Flow (@ctalkington
- #34212 ) (ipp docs) - Add Friends of Hue Switch - Model FOHSWITCH (ZGPSWITCH) (@Cyr-ius
- #34195 ) (hue docs) - Refactor vizio media_player tests to remove conditional statements from helper function (@raman325
- #33615 ) (vizio docs) - UniFi - Support automatic removal of clients (@Kane610
- #34307 ) (unifi docs) - Purge recorder database at night (@amelchio
- #33646 ) (recorder docs) (breaking change) - Resolve homekit not updating motion sensors (@bdraco
- #34282 ) (homekit docs) - Update pyhomematic to 0.1.66 (@danielperna84
- #34314 ) (homematic docs) - Bump to pyIntesisHome 1.7.4 (@jnimmo
- #34319 ) (intesishome docs) - Restore isy light brightness after off (@bdraco
- #34320 ) (isy994 docs) - Improve error message when people have not moved config flow title yet (@balloob
- #34321 ) - UniFi - Allow tracking of clients connected to third party APs (@Kane610
- #34067 ) (unifi docs) - Remove two more titles from strings.json (@balloob
- #34324 ) (axis docs) (homekit_controller docs) - Fix uncaught exceptions in ios (@ziv1234
- #34119 ) (ios docs) - Fix uncaught exception in local_file (@ziv1234
- #34312 ) - Upgrade yamllint to 1.23.0 (@frenck
- #34337 ) - Add rflink binary_sensor allon and alloff commands (@tubalainen
- #32411 ) (rflink docs) - Add a script to clean the frontend translations (@balloob
- #34309 ) - Fix missing events for hue remotes (@azogue
- #34340 ) (hue docs) - Fix emulated_hue brightness off by one (@bdraco
- #34185 ) (emulated_hue docs) - Add trunk and frunk locks to Tesla integration (@hobbe
- #34343 ) (tesla docs) - Bump zeroconf to 0.25.1 (@emontnemery
- #34341 ) (zeroconf docs) - Type hint improvements (@scop
- #33082 ) - Fix HomematicIP smoke detector detection type (@SukramJ
- #34347 ) (homematicip_cloud docs) - Add support for DEXXO SMART io Garage Opener (@dfournie
- #27704 ) (tahoma docs) - Update tesla-powerwall to version 0.2.5 (@jrester
- #34348 ) (powerwall docs) - Add missing services to Homekit services yaml (@bdraco
- #34349 ) (homekit docs) - Disable pylint invalid name for TypeVar T (@MartinHjelmare
- #34355 ) - Add missed CONF_API_VERSION config in flow + Fix missing_data translation (@Quentame
- #34356 ) (synology_dsm docs) - Use serial numbers for unique_id of powerwall devices (@jrester
- #34351 ) (powerwall docs) - deCONZ - Always allow manual input of gateway (@Kane610
- #33951 ) (deconz docs) - Add 2SA authentication to Synology DSM (@Quentame
- #34101 ) (synology_dsm docs) - Extend knx brightness with rgb brightness if brightness addres… (@FredericMa
- #33152 ) (knx docs) - Ignore non-ASCII keys in zeroconf payloads (@jjlawren
- #34344 ) (zeroconf docs) - Use name instead of friendly name in uscis config (@chrisrosset
- #33431 ) (uscis docs) (breaking change) - Add config flow to panasonic_viera component (@joogps
- #33829 ) (panasonic_viera docs) (breaking change) - Google local sdk: Set right port, correct device id and add base url (@bramkragten
- #34358 ) (google_assistant docs) - Use DataUpdateCoordinator in NWS (@MatthewFlamm
- #34372 ) (nws docs) - Pi4ioe5v9xxxx from ToggleEntity to SwitchDevice (@antonverburg
- #34369 ) (pi4ioe5v9xxxx docs) - Allow configuring KNX preset_modes via the operation_modes variable (@FredericMa
- #33068 ) (knx docs) - Switch harmony to async_on_remove (@bdraco
- #34378 ) (harmony docs) - Fix a bug where long sms messages get cut off (@ocalvo
- #34359 ) (sms docs) - Bump androidtv to 0.0.41 (@JeffLIrion
- #34382 ) (androidtv docs) - Add tests for Roku (@ctalkington
- #34380 ) (roku docs) - Add Braava support to iRobot Roomba component (@shenxn
- #33616 ) (roomba docs) - Fix Tado signal collisons (@bdraco
- #34118 ) (tado docs) - Add support to the new Broadlink RM Mini 3 and RM4 Series (@felipediel
- #32523 ) (broadlink docs) - Allow fetching translations by categories (@balloob
- #34329 ) (frontend docs) (onboarding docs) - Bump frontend to 20200418 (@balloob
- #34407 ) (frontend docs) - Bump plexapi to 3.4.0, remove workarounds (@jjlawren
- #34395 ) (plex docs) - Add new languages to Google Cloud TTS (@lufton
- #34334 ) (google_cloud docs) - Access Zoneminder config correctly (@turbokongen
- #34388 ) (zoneminder docs) - Add support for turning on swing mode in tado (@bdraco
- #34404 ) (tado docs) - Code fixes and cleanup for roomba integration (@shenxn
- #34409 ) (roomba docs) - Bump nad_receiver version (@gladhorn
- #34400 ) (nad docs) - Eliminate homekit media_player event storms on startup (@bdraco
- #34399 ) (homekit docs) - Improve Roku media player test coverage (@ctalkington
- #34403 ) (roku docs) - upgrade Tibber lib (@Danielhiversen
- #34429 ) (tibber docs) - Fix hassfest validate invocation in Tox (@scop
- #34428 ) - Store HomeKit generated accessory id against unique_id where possible (@Jc2k
- #33109 ) (homekit docs) - UniFi - refactor entity management (@Kane610
- #34367 ) (unifi docs) - Fix translations merging (@balloob
- #34417 ) - Fix serial integration connection stability (@clau-bucur
- #33067 ) (serial docs) - Resolve delay sending multiple commands to harmony remotes (@bdraco
- #34410 ) (harmony docs) - Fix circular import (@balloob
- #34441 ) - Prevent Synology Camera doing I/O in event loop (@balloob
- #34442 ) (synology docs) - Optimize async_generate_entity_id (@bdraco
- #34440 ) - Ensure existing SimpliSafe notifications trigger event on HASS startup (@bachya
- #34232 ) (simplisafe docs) - Include charging state for powerwall (@bdraco
- #33432 ) (powerwall docs) - Add foundation for state translations (@balloob
- #34443 ) (ebusd docs) (moon docs) (season docs) - Remove deprecated homekit_controller credential storage locations (@Jc2k
- #34333 ) (homekit_controller docs) (breaking change) - Add Islamic Prayer Times config flow (@engrbm87
- #31590 ) (islamic_prayer_times docs) (breaking change) - Add white value in light template platform (@elahd
- #32481 ) (template docs) - Bump brother to version 0.1.13 (@bieniu
- #34456 ) (brother docs) - Add config flow and device registry to fritzbox integration (@escoand
- #31240 ) (fritzbox docs) (breaking change) - Improve the transmission integration (@zhulik
- #34223 ) (transmission docs) - Add support for Lutron Keypad LEDs (@alistairg
- #30452 ) (lutron docs) - Add vacuum support to homekit (@bdraco
- #34386 ) (homekit docs) - Bump openwrt-luci-rpc version: 1.1.2 → 1.1.3 (@fbradyirl
- #34463 ) (luci docs) - Fix relative_time datetime object without timezone (@Nossnevs
- #34273 ) - Switch griddy to async_on_remove (@bdraco
- #34471 ) (griddy docs) - Switch powerwall to async_on_remove (@bdraco
- #34472 ) (powerwall docs) - Switch myq to async_on_remove (@bdraco
- #34473 ) (myq docs) - Switch nexia to async_on_remove (@bdraco
- #34474 ) (nexia docs) - Update bt_smarthub component making it compatible with smarthub 2 (@leroyshirto
- #31292 ) (bt_smarthub docs) - Switch brother to async_on_remove (@bieniu
- #34478 ) (brother docs) - Bump hass-nabucasa 0.34.1 (@pvizeli
- #34480 ) (cloud docs) - Import state strings (@balloob
- #34451 ) - Migrate HomeKit to use describe_event for logbook support (@balloob
- #34485 ) (homekit docs) (logbook docs) - Add transition support to scenes, cleanup blocking parameter (@frenck
- #34434 ) - UniFi - Logs spam with not adding disabled entity (@Kane610
- #34479 ) (unifi docs) - Bump pychromecast (@emontnemery
- #34466 ) (cast docs) - Revert incorrect sync/async conversion in LCN integration (@frenck
- #34493 ) (lcn docs) - upgrade broadlink lib (@Danielhiversen
- #34488 ) (broadlink docs) - Switch airly to async_on_remove (@bieniu
- #34498 ) (airly docs) - Switch gios to async_on_remove (@bieniu
- #34499 ) (gios docs) - Remove Pushetta integration (@frenck
- #34497 ) (breaking change) - Update bravia-tv backend (@dcnielsen90
- #34376 ) (braviatv docs) - Remove Yahoo Weather integration (@frenck
- #34501 ) (breaking change) - Complete device registry update (@MartinHjelmare
- #34500 ) - Drop UNIT_ prefix for constants (@springstan
- #34164 ) - Fix a bug where a single long sms message is sent as multiple… (@ocalvo
- #34508 ) (sms docs) - UniFi - Improve handling of client tracker is connected to better respect configured delay (@Kane610
- #34510 ) (unifi docs) - UniFi - Only match ssid filter if ssid is present, this will only affect recently disconnected clients and clients which have a previously created entry in entity registry (@Kane610
- #34509 ) (unifi docs) - Revert removal of JSON validator in hassfest (@frenck
- #34504 ) - Display Homekit QR code when pairing (@bdraco
- #34449 ) (homekit docs) - Rename translations dir for integrations (@ludeeus
- #34494 ) - Don’t log same MQTT message multiple times (@emontnemery
- #34511 ) (mqtt docs) - Use registry to find linked batteries for homekit (@bdraco
- #33519 ) (homekit docs) - Translation fixes and tweaks (@balloob
- #34489 ) (binary_sensor docs) (group docs) - Resolve delays with tuya devices (@bdraco
- #34512 ) (tuya docs) - UniFi - Simplify config option of block clients to just a multi select drop down (@Kane610
- #34514 ) (unifi docs) - Fix zeroconf interface being ineffective in HomeKit (@bdraco
- #34516 ) (homekit docs) - Bump mychevy library to 2.0.1 (@sdague
- #34496 ) (mychevy docs) - Improve Roku (@ctalkington
- #34431 ) (roku docs) - Improve volvooncall (@fredrike
- #34495 ) (volvooncall docs) - Updated frontend to 20200422.0 (@bramkragten
- #34532 ) (frontend docs) - Bump aioasuswrt to 1.2.5 (@kennedyshead
- #34454 ) (asuswrt docs) - Don’t set step title if it’s integration title (@balloob
- #34524 ) - Validate translations for custom components (@balloob
- #34519 ) - Add Atag One thermostat integration (@MatsNl
- #32361 ) (atag docs) (new-integration) - Deprecate Plex YAML config (@jjlawren
- #34546 ) (plex docs) (breaking change) - Upgrade blinkpy library to 0.14.3 (@fronzbot
- #34542 ) (blink docs) - Fix Bayesian Binary JSON Serialization (@jlmcgehee21
- #34540 ) (bayesian docs) - Add Plex play_media logging and troubleshooting tools (@jjlawren
- #34412 ) (plex docs) (beta fix) - Handle flaky SimpliSafe notification registration (@bachya
- #34475 ) (simplisafe docs) (beta fix) - Bump python-synology to 0.7.0 (@Quentame
- #34534 ) (synology_dsm docs) (beta fix) - Update tesla-powerwall to version 0.2.8 (@jrester
- #34545 ) (powerwall docs) (beta fix) - Add All wrapper to deprecated Plex schema (@jjlawren
- #34552 ) (plex docs) (beta fix) - Fix deleting and readding nws entry (@MatthewFlamm
- #34555 ) (nws docs) (beta fix) - Remove reconnect logic from MQTT client. (@emontnemery
- #34556 ) (mqtt docs) (beta fix) - Only subscribe when MQTT client is connected. (@emontnemery
- #34557 ) (mqtt docs) (beta fix) - Limit clone/view stats to repos with push access (@ludeeus
- #34575 ) (github docs) (beta fix) - Powerwall sensor add is_active, round state attributes and change thresholding for charging status sensor (@jrester
- #34582 ) (powerwall docs) (beta fix) - Remove old style translations from Atag (@frenck
- #34585 ) (atag docs) (beta fix) - Remember homekit aids for entities without a unique id (@bdraco
- #34587 ) (homekit docs) (beta fix) - Fix Garmin Connect i/o in event loop (@frenck
- #34598 ) (garmin_connect docs) (beta fix) - Restore Expected Behavior of Sonarr Upcoming Sensor (@ctalkington
- #34408 ) (sonarr docs) (beta fix) - Fix UVC doing I/O in event loop (@balloob
- #34610 ) (uvc docs) (beta fix) - Restore ability to overwrite homekit max temp bound (@bdraco
- #34612 ) (homekit docs) (beta fix) - Fix BloomSky KeyError: ‘monitored_conditions’ (@frenck
- #34613 ) (bloomsky docs) (beta fix) - Delay sync for Google and limit updates to relevant info (@balloob
- #34622 ) (cloud docs) (beta fix) - Handle synology_dsm discovery broadcasting on multiple ip addresses (@bdraco
- #34623 ) (synology_dsm docs) (beta fix) - Updated frontend to 20200424.0 (@bramkragten
- #34645 ) (frontend docs) (beta fix) - Fix identifying Plex schema when used in packages (@balloob
- #34651 ) (beta fix) - Add Home Assistant Started event (@balloob
- #34657 ) (automation docs) (cloud docs) (beta fix) - Update ZHA dependency (@Adminiuga
- #34661 ) (zha docs) (beta fix) - Log config flow errors (@Quentame
- #34665 ) (synology_dsm docs) (beta fix) - Fix fritzbox integration errors (@escoand
- #34639 ) (fritzbox docs) (beta fix) - Add retry at startup (@ludeeus
- #34656 ) (webostv docs) (beta fix) - Fix zero value state rendering sensor unavailable (@cgtobi
- #34694 ) (netatmo docs) (beta fix) - Fix Synology DSM translation (@Quentame
- #34696 ) (synology_dsm docs) (beta fix) - Add frontend version WS command (@balloob
- #34701 ) (frontend docs) (beta fix) - Fix fritzbox errors again (@escoand
- #34710 ) (fritzbox docs) (beta fix) - Bump python-synology to 0.7.1 (@Quentame
- #34728 ) (synology_dsm docs) (beta fix) - Updated frontend to 20200427.0 (@bramkragten
- #34766 ) (frontend docs) (beta fix) - Fix atag timezone bug (@MatsNl
- #34686 ) (atag docs) (beta fix) - Add unique_id to fritzbox (@escoand
- #34716 ) (fritzbox docs) (beta fix) - Disable upnp SSDP discovery (@balloob
- #34756 ) (upnp docs) (beta fix) - Remove legacy discovery for directv (@ctalkington
- #34793 ) (discovery docs) (beta fix) - Remove legacy discovery for roku (@ctalkington
- #34794 ) (discovery docs) (beta fix) - Handle more fritzbox edge cases (@escoand
- #34802 ) (fritzbox docs) (beta fix) - UniFi - Add a second roaming event (@Kane610
- #34819 ) (unifi docs) (beta fix) - Fix sync call in async context generic_thermostat (@frenck
- #34822 ) (generic_thermostat docs) (beta fix) - Fix async call in sync context in steam_online (@frenck
- #34823 ) (steam_online docs) (beta fix) - Fix meteoalarm exception handling with instance of KeyError (@frenck
- #34828 ) (beta fix) - Bump python-synology to 0.7.2 (@Quentame
- #34830 ) (synology_dsm docs) (beta fix) - Updated frontend to 20200427.1 (@bramkragten
- #34831 ) (frontend docs) (beta fix) - Fix Islamic prayer times naming (@engrbm87
- #34784 ) (islamic_prayer_times docs) (beta fix) - Bump python-synology to 0.7.3 (@Quentame
- #34847 ) (synology_dsm docs) (beta fix)