From d8bcb9112b867f4bc71c13ec0b96e126f37a3e24 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 27 Jul 2022 15:47:57 +0200 Subject: [PATCH] 2022.8.0: Beta release notes --- _config.yml | 6 +- .../_posts/2022-08-03-release-20228.markdown | 583 +++++++ source/changelogs/core-2022.8.markdown | 1443 +++++++++++++++++ source/images/blog/2022-08/social.png | Bin 0 -> 186724 bytes 4 files changed, 2029 insertions(+), 3 deletions(-) create mode 100644 source/_posts/2022-08-03-release-20228.markdown create mode 100644 source/changelogs/core-2022.8.markdown create mode 100644 source/images/blog/2022-08/social.png diff --git a/_config.yml b/_config.yml index 515c9faa3d8..65da212fac7 100644 --- a/_config.yml +++ b/_config.yml @@ -106,9 +106,9 @@ social: # Home Assistant release details current_major_version: 2022 -current_minor_version: 7 -current_patch_version: 7 -date_released: 2022-07-26 +current_minor_version: 8 +current_patch_version: 0 +date_released: 2022-08-03 # Either # or the anchor link to latest release notes in the blog post. # Must be prefixed with a # and have double quotes around it. diff --git a/source/_posts/2022-08-03-release-20228.markdown b/source/_posts/2022-08-03-release-20228.markdown new file mode 100644 index 00000000000..f0261e2f798 --- /dev/null +++ b/source/_posts/2022-08-03-release-20228.markdown @@ -0,0 +1,583 @@ +--- +layout: post +title: "2022.8: Beta release notes" +description: "Beta release notes for Home Assistant Core 2022.8" +date: 2022-07-27 00:00:00 +date_formatted: "August 3, 2022" +author: Franck Nijhof +author_twitter: frenck +comments: true +categories: +- Release-Notes +- Core +og_image: /images/blog/2022-08/social.png +--- + + + + +These are the beta release notes for Home Assistant Core 2022.8 (and is thus a +work in progress). + +If you encounter any issues with the beta release, please report them on GitHub: + +- Issues with integrations, automations and such (Core related):
+ +- Issues with the frontend/Lovelace:
+ +- Issues with the Supervisor:
+ +- Issues with the documentation:
+ + +Please be sure to include the beta version you are running in the issue +version field (not title), so we can classify your issue correctly. + +Issues introduced in the beta are processed with priority. + +--- + + +Home Assistant Core 2022.8! + +I have nothing to tell yet... this is still all beta! + +Thanks for helping out testing the beta! ❤️ + +Enjoy the (beta) release! + +../Frenck + + + +- [Introducing Repairs: You can fix it!](#introducing-repairs-you-can-fix-it) +- [First class Bluetooth support](#first-class-bluetooth-support) +- [Supported brands](#supported-brands) +- [HomeKit Bluetooth support](#homekit-bluetooth-support) +- [Improving the naming of entities and devices](#improving-the-naming-of-entities-and-devices) +- [Other noteworthy changes](#other-noteworthy-changes) +- [New Integrations](#new-integrations) +- [Integrations now available to set up from the UI](#integrations-now-available-to-set-up-from-the-ui) +- [Need help? Join the community!](#need-help-join-the-community) +- [Breaking Changes](#breaking-changes) +- [Farewell to the following](#farewell-to-the-following) +- [All changes](#all-changes) + +{% comment %} + +Don't forget to [join our release party live stream on YouTube](https://www.youtube.com/watch?v=lorem) today at 12:00 PDT / 21:00 CET! + +
+ +
+ + + +Missed our release party live stream on YouTube? Don't worry! You can watch +the recording of it right here! + + + +{% endcomment %} + +## Introducing Repairs: You can fix it! + +{% details "TODO" %} + +- Improve on story +- Spelling/grammar +- Add screenshots +- Remove note about the resolution center + +{% enddetails %} + +__Note: If you followed along in the discussions and development progress, this +feature was known as the "resolution center" during the early stages.__ + +Introducing a completely new feature we hope you are going to love: Repairs! 👷‍♂️ + +The repairs dashboard can be found in the settings menu and is a place where +Home Assistant can notify you of issues that you can (and should) fix! + +From detected existing issues on your system and future issues, e.g., caused +by the use of a feature that is going to be removed, and anything in between. +These repairable issues can be anything and are specific to your system. + +## First-class Bluetooth support + +{% details "TODO" %} + +- Improve on story +- Spelling/grammar +- Screenshot of Bluetooth devices being discovered + +{% enddetails %} + +Unfortunately, In the last release, we had to disable quite a few Bluetooth +releated integrations because of compatibility reasons. Today, we are proud +to announce Home Assistant now adds **first-class** Bluetooth support! 🥇 + +A brand new [Bluetooth integration] has been added +by [@bdraco], which provides absolutely amazing Bluetooth support to +Home Assistant, including automatic discovery of new devices and the ability +to push device updates to other integrations providing those Bluetooth devices. + +__TODO: Insert a screenshot of the Bluetooth devices being discovered.__ + +The [SwitchBot] integration has been updated to support this, and is thus +now a push-based integration, providing a much more stable experience. + +This release adds five integrations that are built on this: [SensorPush], +[Govee], [INKBIRD], [Moat], and [Xiaomi BLE]. The latter one also provides +support for the Mi Flora plant sensors. + +[Bluetooth integration]: /integrations/bluetooth +[SwitchBot]: /integrations/switchbot +[Govee]: /integrations/govee_ble +[INKBIRD]: /integrations/inkbird +[Moat]: /integrations/moat +[SensorPush]: /integrations/sensorpush +[Xiaomi BLE]: /integrations/xiaomi_ble +[@bdraco]: https://github.com/bdraco + +## Supported brands + +{% details "TODO" %} + +- Improve on story +- Spelling/grammar +- Add image (multi window) of adding a supported brand + +{% enddetails %} + +Some integrations work with multiple different brands. This can happen because, +for example, those devices share a communication protocol, or they are +white-labeled and sold under multiple brand names. + +For example, if you have a Somfy TaHoma, you can actually use it using the +Overkiz integration. The problem is, how do you know you can use Overkiz in +that case? And this is not the only example, we have many more! + +To make setting up things in Home Assistant easier, integrations can now +support multiple brands! So, if you now add an integration in Home Assistant +and search for Somfy, you will actually find one! + +__TODO: Insert image of adding a supported brand__ + +When you add a new integration that is supported by another integration, +Home Assistant will tell you which integration provides the support and +guides you to set up that integration. + +## HomeKit Bluetooth support + +{% details "TODO" %} + +- Extend and improve on story +- Spelling/grammar + +{% enddetails %} + +The HomeKit Controller integration now has support for Bluetooth-based +HomeKit devices. 🎉 + +## Improving the naming of entities and devices + +{% details "TODO" %} + +- Unsure is we need to keep this as major featured item +- Improve (and probably shorten) story +- Spelling/grammar + +{% enddetails %} + +This is one that fits in the category: Streamlining experiences. + +The names of entities are currently not bound by rules or standards in +Home Assistant, and this has caused quite an inconsistent experience in +how entities are displayed or created. + +For example, some integrations put the device names in their entities; others +don't. For example, an device named "Multisensor" with a temperature entity +could be named: + +- "Temperature" +- "Multisensor Temperature" +- "Multisensor - temperature" +- "Multisensor: temperature" + +And variants that use different capitalization formats. + +We have started a project to improve the naming of entities across +Home Assistant. This is a work in progress and will take quite some time +to complete. This release, around 100 integrations have already updated to the +new naming style. + +Entities will now have their own name, without the device name in it +(so, just "Temperature" in the above example). Additionally, they will be +sentence cased. In the future, this will allow us to display an entity +or device name (or both) depending on the UI context needed. + +During this change/migration path, we have added a backward compatible layer +to keep changes minimal. However, it is possible you'll notice a slight +difference in the names shown in the UI for some entities. + +## Other noteworthy changes + +{% details "TODO" %} + +- Proof read/spelling/grammar +- Maybe add/remove one or two.... + +**Note**: Changes processed up to PR 75810 + +{% enddetails %} + +There is much more juice in this release; here are some of the other +noteworthy changes this release: + +- The colors of maps have been adjusted, providing a much better contrast + (especially when using dark mode). Awesome [@bramkragten]! +- You can now change the shown unit of measurement of number entities that + provide a temperature. Thanks [@emontnemery]! +- [@frenck] updated the events developer tools, to use YAML instead of JSON + and added syntax highlighting. +- The [LIFX] integration a big overhaul which should make it much more reliable. + Thanks for the work on this the past releases [@bdraco] and [@Djelibeybi]! +- The [UniFi Network] now has update entities, allowing you to update the + firmware of UniFi devices directly from Home Assistant. Great addition [@J3173]! +- The Material Design Icons have been updated to v7.0.96, giving you + [100](https://pictogrammers.github.io/@mdi/font/7.0.96/) brand new icons + to use 🤩 Thanks, [@goyney]! +- [SwitchBot] now supports Hygrometers (thanks [@murtas]) and door/contact + sensors (thanks [@bdraco])! +- [@Noltari] added update entities to the [QNAP QSW] integration! Nice! +- [@frenck] added multifactor authentication support for [Verisure]. So, you + can add more security to your Verisure alarm system. +- [HomeWizard Energy] added support for Watermeters! Thanks [@DCSBL]! +- [Yolink] now supports garage doors, nice [@matrixd2]! +- [@simeon-simsoft] for bidirectional [Wallbox] chargers, thank you! +- You can now view your current network connection details in the + Network settings screen. Thanks [@zsarnett]! +- [Lutron Caséta] now supports the Lutron RA3 Sunnata Keypads. Thanks [@danaues]! +- [@mkmer] added a battery level sensor to [Aladdin Connect], thank you! +- The [Sensibo] integration now support the AirQ sensor. Thanks [@gjohansson-ST]! + +[@bdraco]: https://github.com/bdraco +[@bramkragten]: https://github.com/bramkragten +[@danaues]: https://github.com/danaues +[@DCSBL]: https://github.com/DCSBL +[@Djelibeybi]: https://github.com/Djelibeybi +[@emontnemery]: https://github.com/emontnemery +[@frenck]: https://github.com/frenck +[@gjohansson-ST]: https://github.com/gjohansson-ST +[@goyney]: https://github.com/goyney +[@J3173]: https://github.com/J3173 +[@matrixd2]: https://github.com/matrixd2 +[@mkmer]: https://github.com/mkmer +[@murtas]: https://github.com/murtas +[@Noltari]: https://github.com/Noltari +[@simeon-simsoft]: https://github.com/simeon-simsoft +[@zsarnett]: https://github.com/zsarnett +[Aladdin Connect]: /integrations/aladdin_connect +[HomeWizard Energy]: /integrations/homewizard +[LIFX]: /integrations/lifx +[Lutron Caséta]: /integrations/lutron_caseta +[QNAP QSW]: /integrations/qnap_qsw +[Sensibo]: /integrations/sensibo +[SwitchBot]: /integrations/switchbot +[UniFi Network]: /integrations/unifi +[Verisure]: /integrations/verisure +[Wallbox]: /integrations/wallbox +[Yolink]: /integrations/yolink + +## New Integrations + +We welcome the following new integrations this release: + +- [Bluetooth], added by [@bdraco] +- [Govee Bluetooth], added by [@bdraco] +- [Home Assistant Alerts], added by [@emontnemery] & [@balloob] +- [INKBIRD], added by [@bdraco] +- [Moat], added by [@bdraco] +- [NextDNS], added by [@bieniu] +- [Repairs], added by [@emontnemery] +- [Rhasspy], added by [@balloob] +- [SensorPush], added by [@bdraco] +- [Xiaomi BLE], added by [@Jc2k] + +[@balloob]: https://github.com/balloob +[@bdraco]: https://github.com/bdraco +[@bieniu]: https://github.com/bieniu +[@emontnemery]: https://github.com/emontnemery +[@Jc2k]: https://github.com/Jc2k +[Bluetooth]: /integrations/bluetooth +[Govee Bluetooth]: /integrations/govee_ble +[Home Assistant Alerts]: /integrations/homeassistant_alerts +[INKBIRD]: /integrations/inkbird +[Moat]: /integrations/moat +[NextDNS]: /integrations/nextdns +[Repairs]: /integrations/repairs +[Rhasspy]: /integrations/rhasspy +[SensorPush]: /integrations/sensorpush +[Xiaomi BLE]: /integrations/xiaomi_ble + +## Integrations now available to set up from the UI + +The following integrations are now available via the Home Assistant UI: + +- [Anthem A/V Receivers], done by [@Hyralex] +- [Bose SoundTouch], done by [@kroimon] + +[@kroimon]: https://github.com/kroimon +[@Hyralex]: https://github.com/Hyralex +[Anthem A/V Receivers]: /integrations/anthemav +[Bose SoundTouch]: /integrations/soundtouch + +## Need help? Join the community! + +Home Assistant has a great community of users who are all more than willing +to help each other out. So, join us! + +Our very active [Discord chat server](/join-chat) is an excellent place to be +at, and don't forget to join our amazing [forums](https://community.home-assistant.io/). + +Found a bug or issue? Please report it in our [issue tracker](https://github.com/home-assistant/core/issues), +to get it fixed! Or, check [our help page](/help) for guidance for more +places you can go. + +Are you more into email? [Sign-up for our Building the Open Home Newsletter](/newsletter) +to get the latest news about features, things happening in our community and +[](https://github.com/home-assistant/core/pull/58768)other news about building an Open Home; straight into your inbox. + +## Breaking Changes + +{% details "TODO" %} + +- Proof read/spelling/grammar + +**Note**: Breaking changes processed up to PR 75160 + +{% enddetails %} + +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. + +{% details "Advantage Air" %} + +Each AC will have its own device, different from the one previously created. +Any automations or scripts that target the device will need to be corrected. + +([@Bre77] - [#75395]) ([documentation](/integrations/advantage_air)) + +[@Bre77]: https://github.com/Bre77 +[#75395]: https://github.com/home-assistant/core/pull/75395 + +--- + +The previsouly deprecated `advantage_air.set_myzone` has been removed. +Use the available MyZone select entity instead. + +([@Bre77] - [#75160]) ([documentation](/integrations/advantage_air)) + +[@Bre77]: https://github.com/Bre77 +[#75160]: https://github.com/home-assistant/core/pull/75160 + +{% enddetails %} + +{% details "Calendar" %} + +Calendar description attributes are no longer written into the recorder database. + +([@allenporter] - [#75375]) ([documentation](/integrations/calendar)) + +[@allenporter]: https://github.com/allenporter +[#75375]: https://github.com/home-assistant/core/pull/75375 + +{% enddetails %} + +{% details "HERE Travel Time" %} + +The single HERE Travel Time sensor with attributes is split up into separate +sensors for Duration, Duration in Traffic, Route, Distance, Origin, Destination. + +If you used the entity attributes in your automation or scripts, you will need +to adapt them to this change. + +([@eifinger] - [#72405]) ([documentation](/integrations/here_travel_time)) + +[@eifinger]: https://github.com/eifinger +[#72405]: https://github.com/home-assistant/core/pull/72405 + +{% enddetails %} + +{% details "HomeKit Controler" %} + +The ecobee Fan mode number entity has been removed as HomeKit Controller +[now implements fan mode](/integrations/climate/#service-climateset_fan_mode) +on the climate entity which replaces this functionality. + +([@bdraco] - [#74440]) ([documentation](/integrations/homekit_controller)) + +[@bdraco]: https://github.com/bdraco +[#74440]: https://github.com/home-assistant/core/pull/74440 + +{% enddetails %} + +{% details "LIFX" %} + +Each LIFX device now has its integration entry. The existing entry will be +migrated to separate entries automatically as each device is discovered, +and will automatically be removed once all devices are found. + +Migrating to a integration entry per device model allows Home Assistant to +take care of discovery IP updates and retries, dramatically improving the +integration's reliability. + +LIFX can now be configured manually by IP address. DHCP, HomeKit, +and native discovery are supported for updating IP addresses to +ensure we never lose track of a device. + +Advanced YAML configuration is deprecated and will be removed +in a future release. Advanced YAML configuration is no longer necessary as the +integration now fully utilizes [Network Configuration](/integrations/network/), +and can also function without working discovery. + +([@bdraco] - [#74316]) ([documentation](/integrations/lifx)) + +[@bdraco]: https://github.com/bdraco +[#74316]: https://github.com/home-assistant/core/pull/74316 + +{% enddetails %} + +{% details "Logger" %} + +Timestamps in the Home Assistant log file now include millisecond-level +resolution. + +Scripts or external log system that rely on this will need to be updated +to handle the extra decimal places. + +([@puddly] - [#74518]) ([documentation](/integrations/logger)) + +[@puddly]: https://github.com/puddly +[#74518]: https://github.com/home-assistant/core/pull/74518 + +{% enddetails %} + +{% details "Material Design Icons" %} + +In the latest Material Design Icons update, +[several icons have been renamed or removed](https://dev.materialdesignicons.com/changelog#version-7.0.96). +Removed and renamed icons will continue to work for the next two releases. + +Please make sure you update any use of the following MDI icons: + +Removed: + +- `mdi:android-messages` - Use `mdi:message-text` instead. +- `mdi:book-variant-multiple` - Use `mdi:bookmark-box-multiple` instead. +- `mdi:desktop-mac` - Use `mdi:monitor` instead. +- `mdi:desktop-mac-dashboard` - Use `mdi:monitor-dashboard` instead. +- `mdi:discord` +- `mdi:google-home` +- `tablet-android` - Use `mdi:tablet` instead. + +Renamed: + +- `mdi:diving-scuba` to `mdi:diving-scuba-mask` +- `mdi:email-send` to `mdi:email-arrow-right` +- `mdi:email-send-outline` to `mdi:email-arrow-right-outline` +- `mdi:email-receive` to `mdi:email-arrow-left` +- `mdi:email-receive-outline` to `mdi:email-arrow-left-outline` +- `mdi:format-textdirection-r-to-l` to `mdi:format-pilcrow-arrow-left` +- `mdi:format-textdirection-l-to-r` to `mdi:format-pilcrow-arrow-right` +- `mdi:globe-light` to `mdi:globe-light-outline` +- `mdi:google-controller` to `mdi:controller` +- `mdi:google-controller-off` to `mdi:controller-off` +- `mdi:lecturn` to `mdi:lectern` +- `mdi:mosque` to `mdi:mosque-outline` +- `mdi:receipt` to `mdi:receipt-text` +- `mdi:receipt-outline` to `mdi:receipt-text-outline` +- `mdi:silo` to `mdi:silo-outline` +- `mdi:text-to-speech` to `mdi:microphone-message` +- `mdi:text-to-speech-off` to `mdi:microphone-message-off` +- `mdi:timeline-help` to `mdi:timeline-question` +- `mdi:timeline-help-outline` to `mdi:timeline-question-outline` +- `mdi:vector-point` to `mdi:vector-point-select` + +([@goyney] - [#13175]) + +[@bdraco]: https://github.com/goyney +[#13175]: https://github.com/home-assistant/frontend/pull/13175 + +{% enddetails %} + +{% details "Sonos" %} + +The previously deprecated `sonos.join` and `sonos.unjoin` services have been +removed in favor of the standard `media_player.join` and `media_player.unjoin` +services. + +([@jjlawren] - [#74476]) ([documentation](/integrations/sonos)) + +[@jjlawren]: https://github.com/jjlawren +[#74476]: https://github.com/home-assistant/core/pull/74476 + +{% enddetails %} + +{% details "SwitchBot" %} + +The [Bluetooth integration](/integrations/bluetooth) must be enabled before +switchbot can be used. Bluetooth is automatically discovered in most cases, +but can be manually added from [the integrations page](/integrations/bluetooth) +if it is not. + +The `Time between updates (seconds)` and `How long to scan for advertisement data` +options have been removed as they are no longer needed since the integration +is now push instead of polling. + +([@bdraco] - [#75645]) ([documentation](/integrations/switchbot)) + +[@bdraco]: https://github.com/bdraco +[#75645]: https://github.com/home-assistant/core/pull/75645 + +{% enddetails %} + +{% details "Z-Wave" %} + +Carbon Monoxide binary sensors have changed their device class from +`gas` to `co`. + +([@EnochPrime] - [#75649]) ([documentation](/integrations/zwave_js)) + +[@EnochPrime]: https://github.com/EnochPrime +[#75649]: https://github.com/home-assistant/core/pull/75649 + +{% enddetails %} + +If you are a custom integration developer and want to learn about breaking +changes and new features available for your integration: Be sure to follow our +[developer blog][devblog]. The following are the most notable for this release: + +[devblog]: https://developers.home-assistant.io/blog/ + +- [Store is now a Generic class](https://developers.home-assistant.io/blog/2022/07/08/generic-store) +- [Waiting for config entry platforms](https://developers.home-assistant.io/blog/2022/07/08/config_entry_forwards) +- [Adopting a new way to name entities](https://developers.home-assistant.io/blog/2022/07/10/entity_naming) + +## Farewell to the following + +The following integrations are also no longer available as of this release: + +- **XBee** +- **SoChain** +- **Google Play Music Desktop Player (GPMDP)** + +All three have previously been disabled due to incompatibities and have now +been removed. + +## All changes + +Of course, there is a lot more in this release. You can find a list of +all changes made here: [Full changelog for Home Assistant Core 2022.8](/changelogs/core-2022.8) \ No newline at end of file diff --git a/source/changelogs/core-2022.8.markdown b/source/changelogs/core-2022.8.markdown new file mode 100644 index 00000000000..11efcf33177 --- /dev/null +++ b/source/changelogs/core-2022.8.markdown @@ -0,0 +1,1443 @@ +--- +title: Full Changelog for Home Assistant Core 2022.8 +description: Detailed changelog for the Home Assistant Core 2022.8 release +--- + +These are all the changes included in the Home Assistant Core 2202.8 release. + +For a summary in a more readable format: +[Release notes blog for this release](/blog/2022/07/27/release-20228/). + +## Full Changelog + +- Intellifire climate Entity ([@jeeftor] - [#70818]) ([intellifire docs]) (new-platform) +- Bump version to 2022.8.0dev0 ([@frenck] - [#74184]) +- Add UniFi Protect views ([@AngellusMortis] - [#74190]) ([unifiprotect docs]) +- Patch out life360 entry setup in tests ([@frenck] - [#74212]) ([life360 docs]) +- Split attributes into sensors for here_travel_time ([@eifinger] - [#72405]) ([here_travel_time docs]) (breaking-change) +- Fix netgear method return type annotation ([@cdce8p] - [#74200]) ([netgear docs]) +- Update pylint to 2.14.4 ([@cdce8p] - [#74192]) ([zha docs]) (dependency) +- Revert "Patch out life360 entry setup in tests" ([@frenck] - [#74223]) +- Update black to 22.6.0 ([@frenck] - [#74209]) (dependency) +- Improve type hints in demo ([@epenet] - [#74236]) ([demo docs]) +- Add config flow to AnthemAV integration ([@Hyralex] - [#53268]) ([anthemav docs]) (config-flow) +- Fix intellifire climate control not needing a default fireplace ([@jeeftor] - [#74253]) ([intellifire docs]) +- Add CalendarEntity checks to pylint plugin ([@epenet] - [#74228]) +- Optimize optionflow tests ([@DeerMaximum] - [#74262]) ([nina docs]) +- Do not pin numpy in wheels ([@frenck] - [#74268]) +- Links to Esphomelib.com is changed to esphome.io ([@rdeveen] - [#72680]) ([esphome docs]) +- Add enforce_type_hints to vscode tasks ([@epenet] - [#74227]) +- Add Matrix.io HTML message format support ([@arychj] - [#69951]) ([matrix docs]) +- Add QNAP QSW Update platform ([@Noltari] - [#71019]) ([qnap_qsw docs]) (noteworthy) +- Migrate `glances` unique_id to new format ([@engrbm87] - [#74033]) ([glances docs]) +- Improve type hints in mqtt ([@epenet] - [#74247]) ([mqtt docs]) +- Add presence detection to devolo_home_network ([@Shutgun] - [#72030]) ([devolo_home_network docs]) (new-platform) +- Add vacation mode to Template Alarm Control Panel ([@mbo18] - [#74261]) ([template docs]) +- Add Camera checks to pylint plugin ([@epenet] - [#74264]) +- Add ability to forget hive device when removing integration ([@KJonline] - [#74144]) ([hive docs]) +- Add ClimateEntity checks to pylint plugin ([@epenet] - [#74275]) +- Elmax/sensor platform ([@albertogeniola] - [#64090]) ([elmax docs]) (new-platform) +- Add device info to fibaro integration ([@rappenze] - [#73352]) ([fibaro docs]) +- Add light tests for devolo_home_control ([@Shutgun] - [#74183]) ([devolo_home_control docs]) +- Add config flow for Bose SoundTouch ([@kroimon] - [#72967]) ([discovery docs]) ([soundtouch docs]) (config-flow) +- Improve typing for device_automation ([@bdraco] - [#74282]) ([device_automation docs]) +- Bump quantum_gateway to v0.0.8. ([@BrianWithAHat] - [#74284]) ([quantum_gateway docs]) (dependency) +- Improve qnap_qsw firmware coordinator failures ([@Noltari] - [#74288]) ([qnap_qsw docs]) +- Lutron caseta ra3keypads ([@danaues] - [#74217]) ([lutron_caseta docs]) (noteworthy) +- Improve type hints in template ([@epenet] - [#74294]) ([template docs]) +- Hive add entity categories to entities ([@KJonline] - [#74324]) ([hive docs]) +- Report error code in log when command fails ([@atlflyer] - [#74319]) ([command_line docs]) +- Address HomeConnect late review ([@BraveChicken1] - [#74308]) ([home_connect docs]) +- Add nightly frontend to nightly builds ([@frenck] - [#74327]) +- Improve type hints in mqtt ([@epenet] - [#74295]) ([mqtt docs]) +- Remove duplicated QNAP QSW format_mac call in config_flow ([@Noltari] - [#74333]) ([qnap_qsw docs]) +- Support climate reproduce state fan_mode ([@barshow] - [#74317]) ([climate docs]) +- Expose temperature and humidity sensors from AC ([@mbo18] - [#74328]) ([smartthings docs]) +- Cleanup Google Calendar unused test fixtures ([@allenporter] - [#74353]) ([google docs]) +- Add NextDNS integration ([@bieniu] - [#74150]) ([nextdns docs]) (new-integration) +- Fix typo in nightly build ([@frenck] - [#74363]) +- Add tomli as nightly build dependency ([@frenck] - [#74364]) +- Append name char value from the service to HomeKit Controller Entities ([@bdraco] - [#74359]) ([homekit_controller docs]) +- Small naming improvements and basic tests for ecobee 501s ([@bdraco] - [#74370]) ([homekit_controller docs]) +- Inline building entity registry dict ([@bdraco] - [#74378]) ([config docs]) +- Allowing for TOON cost sensors to work with Energy ([@drthanwho] - [#74315]) ([toon docs]) +- Update Pillow to 9.2.0 ([@frenck] - [#74371]) (dependency) +- Cleanup known_devices.yaml in device_tracker tests ([@epenet] - [#74404]) ([device_tracker docs]) +- Make dispatcher setup lazy ([@bdraco] - [#74374]) +- Remove explicit use of mock_zeroconf in devolo Home Network ([@Shutgun] - [#74390]) ([devolo_home_network docs]) +- Add instance attributes to GeolocationEvent ([@epenet] - [#74389]) ([geo_location docs]) +- Remove system_health from mypy ignore list ([@epenet] - [#74415]) ([system_health docs]) +- Remove gree from mypy ignore list ([@epenet] - [#74411]) ([gree docs]) +- Typehints and cleanup for metoffice ([@avee87] - [#74338]) ([metoffice docs]) +- Remove harmony from mypy ignore list ([@epenet] - [#74425]) ([harmony docs]) +- Add more type hints to demo ([@epenet] - [#74408]) ([demo docs]) +- Use instance attributes in usgs_earthquakes_feed ([@epenet] - [#74403]) ([usgs_earthquakes_feed docs]) +- Replace pylint-strict-informational with `fail-on=I` ([@scop] - [#74311]) +- Remove melcloud from mypy ignore list ([@epenet] - [#74410]) ([melcloud docs]) +- Add type hints and code cleanup for mikrotik ([@engrbm87] - [#74296]) ([mikrotik docs]) +- Bump home-assistant/builder from 2022.06.2 to 2022.07.0 (@dependabot - [#74446]) (dependency) +- Remove asserts from lutron_caseta async_attach_trigger ([@bdraco] - [#74429]) ([lutron_caseta docs]) +- Add GeolocationEvent checks to pylint plugin ([@epenet] - [#74286]) ([geo_location docs]) +- Improve fans in homekit_controller ([@bdraco] - [#74440]) ([homekit_controller docs]) (breaking-change) +- Bump Sensibo dependency ([@gjohansson-ST] - [#74466]) ([sensibo docs]) (dependency) +- Remove lyric from mypy ignore list ([@epenet] - [#74451]) ([lyric docs]) +- Add NextDNS system health ([@bieniu] - [#74368]) ([nextdns docs]) +- Address late comment for NextDNS ([@bieniu] - [#74365]) ([nextdns docs]) +- Add NextDNS diagnostics platform ([@bieniu] - [#74367]) ([nextdns docs]) +- Offer HKC local push control option when there are multiple zeroconf homekit matches ([@bdraco] - [#74441]) ([zeroconf docs]) +- Cache the response from config/device_registry/list ([@bdraco] - [#74483]) ([config docs]) +- Fix SIGN_QUERY_PARAM in check in auth_middleware ([@bdraco] - [#74479]) ([http docs]) +- Cache the response from config/entity_registry/list ([@bdraco] - [#74443]) ([config docs]) +- Use FlowResultType in deCONZ config flow tests ([@Kane610] - [#74495]) ([deconz docs]) +- Use FlowResultType in Devolo Home Control tests ([@Shutgun] - [#74490]) ([devolo_home_control docs]) +- Use FlowResultType in Axis config flow tests ([@Kane610] - [#74496]) ([axis docs]) +- Remove unifi from mypy ignore list ([@epenet] - [#74456]) ([unifi docs]) +- Remove input_datetime from mypy ignore list ([@epenet] - [#74447]) ([input_datetime docs]) +- Telegram bot map user data for callback query ([@Lerosen] - [#74302]) ([telegram_bot docs]) +- Address NextDNS late review ([@bieniu] - [#74503]) ([nextdns docs]) +- Add NextDNS button platform ([@bieniu] - [#74492]) ([nextdns docs]) +- Resolve and caches paths for CachingStaticResource in the executor ([@bdraco] - [#74474]) ([http docs]) +- Remove home_plus_control from mypy ignore list ([@epenet] - [#74448]) ([home_plus_control docs]) +- Use pydeconz interface controls for cover platform ([@Kane610] - [#74535]) ([deconz docs]) +- Add oui for tplink es20m ([@bdraco] - [#74526]) ([tplink docs]) +- Use generics in NextDNS ([@epenet] - [#74517]) ([nextdns docs]) +- Add three decimal places of sub-second resolution to root logger timestamps ([@puddly] - [#74518]) (breaking-change) +- Switch linear search to a dict lookup for ip bans ([@bdraco] - [#74482]) ([http docs]) +- Update orjson to 3.7.7 ([@frenck] - [#74581]) +- Remove google_assistant from mypy ignore list ([@epenet] - [#74587]) ([google_assistant docs]) +- Add deprecation to PR template ([@frenck] - [#74583]) +- Remove denonavr from mypy ignore list ([@epenet] - [#74580]) ([denonavr docs]) +- Remove legacy Sonos grouping services ([@jjlawren] - [#74476]) ([sonos docs]) (breaking-change) +- Use FlowResultType enum in Tuya tests ([@frenck] - [#74596]) ([tuya docs]) +- Use FlowResultType enum in WLED tests ([@frenck] - [#74594]) ([wled docs]) +- Remove hassio from mypy ignore list ([@epenet] - [#74603]) ([hassio docs]) +- Add SetSystemDateandTime Button ([@dgomes] - [#66419]) ([onvif docs]) +- Use FlowResultType enum in Plugwise tests ([@frenck] - [#74638]) ([plugwise docs]) +- Switch dispatcher to use async_run_hass_job ([@bdraco] - [#74514]) +- Refactor CI ([@frenck] - [#74014]) +- Search/replace RESULT_TYPE_* by FlowResultType enum ([@frenck] - [#74642]) +- Update debugpy to 1.6.1 ([@frenck] - [#74637]) ([debugpy docs]) (dependency) +- Remove meteo_france from mypy ignore list ([@epenet] - [#74613]) ([meteo_france docs]) +- Remove influxdb from mypy ignore list ([@epenet] - [#74612]) ([influxdb docs]) +- Use pydeconz interface controls for button platform ([@Kane610] - [#74654]) ([deconz docs]) +- Add trigger/arm_custom_bypass to Template Alarm Control Panel ([@chatziko] - [#74629]) ([template docs]) +- Bump number of test groups from 6 -> 10 ([@frenck] - [#74648]) +- Search/replace RESULT_TYPE_* by FlowResultType enum ([@frenck] - [#74656]) +- Remove philips_js from mypy ignore list ([@epenet] - [#74659]) ([philips_js docs]) +- Remove last occurrences of RESULT_TYPE_* from codebase ([@frenck] - [#74670]) +- Standardize EntityDescription in DSMR ([@frenck] - [#74671]) ([dsmr docs]) +- Fix climacell/tomorrowio config flow test failure ([@bdraco] - [#74660]) ([climacell docs]) +- Resolution center MVP ([@emontnemery] - [#74243]) ([resolution_center docs]) (new-integration) (noteworthy) +- Add google calendar service proper exception handling ([@allenporter] - [#74686]) ([google docs]) +- Update lxml to 4.9.1 ([@frenck] - [#74663]) ([scrape docs]) (dependency) +- Remove deprecated Spotify YAML configuration ([@frenck] - [#74604]) ([spotify docs]) (breaking-change) +- Bump NextDNS backend library ([@bieniu] - [#74611]) ([nextdns docs]) (dependency) +- Always run pip_check in CI ([@frenck] - [#74706]) +- Update debugpy to 1.6.2 ([@frenck] - [#74692]) ([debugpy docs]) (dependency) +- Cleanup generic in NextDNS ([@epenet] - [#74705]) ([nextdns docs]) +- Migrate google calendar to new entity naming ([@allenporter] - [#74727]) ([google docs]) +- Attempt to fix flaky test by waiting for setup to complete ([@allenporter] - [#74734]) ([system_log docs]) +- Add huawei_lte wifi guest network switch ([@a-p-z] - [#71035]) ([huawei_lte docs]) (dependency) +- Add bluetooth integration ([@bdraco] - [#74653]) ([bluetooth docs]) (new-integration) (noteworthy) +- Add coverage for lutron caseta bridges to hkc ([@bdraco] - [#74765]) ([homekit_controller docs]) +- Migrate Guardian to new entity naming style ([@bachya] - [#74745]) ([guardian docs]) +- Remove deprecated yaml config from Steam ([@tkdrob] - [#74805]) ([steam_online docs]) (breaking-change) +- Bump aiopyarr to 22.7.0 ([@tkdrob] - [#74749]) ([sonarr docs]) (dependency) +- Look for huawei_lte device MACs in a few more device info attributes ([@scop] - [#74795]) ([huawei_lte docs]) +- Sort huawei_lte sensor meta dict, add section separators ([@scop] - [#74782]) ([huawei_lte docs]) +- Convert rfxtrx to entity naming ([@elupus] - [#74720]) ([rfxtrx docs]) +- Wait for config entry platform forwards ([@bdraco] - [#73806]) (breaking-change) +- Add sensors for HomeWizard Watermeter ([@DCSBL] - [#74756]) ([homewizard docs]) (dependency) (noteworthy) +- Migrate devolo Home Network to new entity naming ([@Shutgun] - [#74741]) ([devolo_home_network docs]) +- Migrate Open-Meteo to new entity naming style ([@frenck] - [#74695]) ([open_meteo docs]) +- Migrate CO2 Signal to new entity naming style ([@frenck] - [#74696]) ([co2signal docs]) +- Migrate Renault to new entity naming style ([@epenet] - [#74709]) ([renault docs]) +- Migrate deCONZ Group and Scenes to new entity naming style ([@Kane610] - [#74761]) ([deconz docs]) (new-integration) +- Migrate nest to new entity naming style ([@allenporter] - [#74724]) ([nest docs]) +- Migrate Stookalert to new entity naming style ([@frenck] - [#74693]) ([stookalert docs]) +- Convert philips_js to entity naming ([@elupus] - [#74721]) ([philips_js docs]) +- Convert fjaraskupan to entity naming ([@elupus] - [#74723]) ([fjaraskupan docs]) +- Remove telegram_bot from mypy ignore list ([@epenet] - [#74661]) ([telegram_bot docs]) +- Remove xiaomi_miio from mypy ignore list ([@epenet] - [#74669]) ([xiaomi_miio docs]) +- Migrate SimpliSafe to new entity naming style ([@bachya] - [#74763]) ([simplisafe docs]) +- Update aioairzone to v0.4.6 ([@Noltari] - [#74810]) ([airzone docs]) +- Remove nilu from mypy ignore list ([@epenet] - [#74412]) ([nilu docs]) +- Use instance attributes in ign_sismologia ([@epenet] - [#74399]) ([ign_sismologia docs]) +- Make deCONZ utilise forward_entry_setups ([@Kane610] - [#74823]) ([deconz docs]) +- Add support for bidirectional chargers to Wallbox integration ([@simeon-simsoft] - [#74313]) ([wallbox docs]) (noteworthy) +- Fix mediaplayer join service groupmembers definition ([@mvdwetering] - [#74807]) ([media_player docs]) +- Make Store a generic class ([@epenet] - [#74617]) +- Hide homekit_controller implementation that doesn't apply to BLE ([@Jc2k] - [#74836]) ([homekit_controller docs]) +- Remove xbox from mypy ignore list ([@epenet] - [#74504]) ([xbox docs]) +- Remove omnilogic from mypy ignore list ([@epenet] - [#74452]) ([omnilogic docs]) +- Use instance attributes in geonetnz_quakes ([@epenet] - [#74401]) ([geonetnz_quakes docs]) +- Use instance attributes in geo_json_events ([@epenet] - [#74397]) ([geo_json_events docs]) +- Remove kostal_plenticore from mypy ignore list ([@epenet] - [#74433]) ([kostal_plenticore docs]) +- Use instance attributes in gdacs ([@epenet] - [#74400]) ([gdacs docs]) +- Use instance attributes in qld_bushfire ([@epenet] - [#74402]) ([qld_bushfire docs]) +- Cleanup mikrotik device extra_attributes ([@engrbm87] - [#74491]) ([mikrotik docs]) +- Move add/remove logic of deCONZ clip sensors to gateway class ([@Kane610] - [#74481]) ([deconz docs]) +- Use instance attributes in nsw_rural_fire_service_feed ([@epenet] - [#74398]) ([nsw_rural_fire_service_feed docs]) +- Migrate Twente Milieu to new entity naming style ([@frenck] - [#74593]) ([twentemilieu docs]) +- Migrate Elgato to new entity naming style ([@frenck] - [#74590]) ([elgato docs]) +- Add missing Start Dimmer mapping for bond buttons ([@bdraco] - [#74555]) ([bond docs]) +- Use pydeconz interface controls for number platform ([@Kane610] - [#74666]) ([deconz docs]) +- Fix false-positive in pylint plugin ([@epenet] - [#74244]) +- Update shodan to 1.28.0 ([@frenck] - [#74850]) ([shodan docs]) (dependency) +- Update pyudev to 0.23.2 ([@frenck] - [#74859]) ([usb docs]) (dependency) +- Update respx to 0.19.2 ([@frenck] - [#74878]) (dependency) +- Update flake8-comprehensions to 3.10.0 ([@frenck] - [#74882]) (dependency) +- Improve calendar error handling to match best practices ([@allenporter] - [#74891]) ([google docs]) ([calendar docs]) +- Remove ZHA device storage ([@dmulcahey] - [#74837]) ([zha docs]) +- Migrate GitHub to new entity naming style ([@frenck] - [#74903]) ([github docs]) +- Prepare homekit_controller for _hap._udp.local. ([@Jc2k] - [#74857]) ([homekit_controller docs]) +- Update url-normalize to 1.4.3 ([@frenck] - [#74897]) ([huawei_lte docs]) ([syncthru docs]) ([zwave_me docs]) (dependency) +- Migrate Ambient PWS to new entity naming style ([@bachya] - [#74743]) ([ambient_station docs]) +- Migrate RainMachine to new entity naming style ([@bachya] - [#74754]) ([rainmachine docs]) +- Fix incorrect new entity naming for Guardian ([@bachya] - [#74912]) ([guardian docs]) +- Migrate AirVisual to new entity naming style ([@bachya] - [#74753]) ([airvisual docs]) +- Migrate Flo to new entity naming style ([@bachya] - [#74744]) ([flo docs]) +- Migrate Notion to new entity naming style ([@bachya] - [#74746]) ([notion docs]) +- Remove old RainMachine service descriptions ([@bachya] - [#74920]) ([rainmachine docs]) +- Update feedparser to 6.0.10 ([@frenck] - [#74913]) ([feedreader docs]) +- Migrate Wiz to new entity naming style ([@frenck] - [#74911]) ([wiz docs]) +- Migrate Geocaching to new entity naming style ([@frenck] - [#74899]) ([geocaching docs]) +- Migrate Supervisor integration to new entity naming style ([@frenck] - [#74906]) ([hassio docs]) +- Migrate Ridwell to new entity naming style ([@bachya] - [#74915]) ([ridwell docs]) +- Migrate ReCollect Waste to new entity naming style ([@bachya] - [#74914]) ([recollect_waste docs]) +- Migrate WattTime to new entity naming style ([@bachya] - [#74916]) ([watttime docs]) +- Migrate Cast to new entity naming style ([@frenck] - [#74901]) ([cast docs]) +- Migrate Met.no to new entity naming style ([@frenck] - [#74908]) ([met docs]) +- Migrate IQVIA to new entity naming style ([@bachya] - [#74917]) ([iqvia docs]) +- Migrate ZHA to new entity naming standard ([@dmulcahey] - [#74846]) ([zha docs]) +- Migrate Slimproto to new entity naming style ([@frenck] - [#74910]) ([slimproto docs]) +- Migrate Sonos to new entity naming style ([@frenck] - [#74909]) ([sonos docs]) +- Migrate Flu Near You to new entity naming style ([@bachya] - [#74918]) ([flunearyou docs]) +- Migrate OpenUV to new entity naming style ([@bachya] - [#74919]) ([openuv docs]) +- Add "Home Assistant (skip pip)" to VS Code launch.json ([@mib1185] - [#74887]) +- Add AirQ sensors to Sensibo ([@gjohansson-ST] - [#74868]) ([sensibo docs]) (noteworthy) +- Update flake8-noqa to 1.2.5 ([@frenck] - [#74896]) (dependency) +- Update adb-shell to 0.4.3 ([@frenck] - [#74855]) ([androidtv docs]) (dependency) +- Migrate WLED to new entity naming style ([@frenck] - [#74860]) ([wled docs]) +- Update yamllint to 1.27.1 ([@frenck] - [#74853]) +- Update numpy to 1.23.1 ([@frenck] - [#74851]) ([opencv docs]) ([tensorflow docs]) ([trend docs]) ([iqvia docs]) ([compensation docs]) (dependency) +- Trigger full CI on Bluetooth integration changes ([@frenck] - [#74929]) +- Update pytest-sugar is 0.9.5 ([@frenck] - [#74931]) (dependency) +- Alexa: Fix duplicate proactive reports ([@Tho85] - [#74930]) ([alexa docs]) +- Update lru-dict to 1.1.8 ([@frenck] - [#74932]) (dependency) +- Migrate Advantage Air to new entity naming style ([@Bre77] - [#74940]) ([advantage_air docs]) +- Migrate Aussie Broadband to new entity naming style ([@Bre77] - [#74937]) ([aussie_broadband docs]) +- Migrate Mazda to new entity naming style ([@bdr99] - [#74939]) ([mazda docs]) +- Update wakeonlan to 2.1.0 ([@frenck] - [#74856]) ([wake_on_lan docs]) (dependency) +- Add update coordinator for google calendar ([@allenporter] - [#74690]) ([google docs]) +- Add binary_sensor to ElkM1 integration ([@gwww] - [#74485]) ([elkm1 docs]) (new-platform) +- Migrate Forecast.Solar to new entity naming style ([@frenck] - [#74898]) ([forecast_solar docs]) +- Migrate Ambee to new entity naming style ([@frenck] - [#74877]) ([ambee docs]) +- Update pre-commit to 2.20.0 ([@frenck] - [#74955]) (dependency) +- Don't allow using deprecated features of WeatherEntity ([@emontnemery] - [#74394]) ([weather docs]) +- Update psutil to 5.9.1 ([@frenck] - [#74963]) ([systemmonitor docs]) (dependency) +- Add blebox tvLiftBox support ([@riokuu] - [#74395]) ([blebox docs]) (new-platform) +- Update sentry-sdk to 1.7.0 ([@frenck] - [#74967]) ([sentry docs]) (dependency) +- Update PyTurboJPEG to 1.6.7 ([@frenck] - [#74965]) ([camera docs]) ([stream docs]) (dependency) +- Remove toon from mypy ignore list ([@epenet] - [#74968]) ([toon docs]) +- Fix Withings re-authentication flow ([@epenet] - [#74961]) ([withings docs]) +- Support overriding unit of temperature number entities ([@emontnemery] - [#74977]) ([number docs]) (noteworthy) +- Remove solaredge from mypy ignore list ([@epenet] - [#74983]) ([solaredge docs]) +- Migrate NextDNS to new entity naming style ([@bieniu] - [#74951]) ([nextdns docs]) +- Add NextDNS switch platform ([@bieniu] - [#74512]) ([nextdns docs]) (new-platform) +- Change more properties to attributes for rfxtrx ([@elupus] - [#74880]) ([rfxtrx docs]) +- Remove konnected from mypy ignore list ([@epenet] - [#75003]) ([konnected docs]) +- Remove izone from mypy ignore list ([@epenet] - [#75005]) ([izone docs]) +- Update pyupgrade to v2.37.1 ([@frenck] - [#74989]) (dependency) +- Add temperature number to demo integration ([@emontnemery] - [#74986]) ([demo docs]) +- Add support for subscribing to bluetooth callbacks by address ([@bdraco] - [#74773]) ([bluetooth docs]) +- Use instance attributes in evohome ([@epenet] - [#74996]) ([evohome docs]) +- Migrate Nettigo Air Monitor to new entity naming style ([@bieniu] - [#74993]) ([nam docs]) +- Migrate Airly to new entity naming style ([@bieniu] - [#74995]) ([airly docs]) +- Remove icloud from mypy ignore list ([@epenet] - [#75007]) ([icloud docs]) +- Add basic Rhasspy integration ([@balloob] - [#74942]) ([rhasspy docs]) (new-integration) +- Shorten Entity Name in Aussie Broadband ([@Bre77] - [#74946]) ([aussie_broadband docs]) +- Log warning if number entities set _attr_unit_of_measurement ([@emontnemery] - [#74987]) ([number docs]) +- Remove blueprint from mypy ignore list ([@epenet] - [#74990]) ([blueprint docs]) +- Remove conversation from mypy ignore list ([@epenet] - [#74991]) ([conversation docs]) +- Migrate Spotify to new entity naming style ([@frenck] - [#74992]) ([spotify docs]) +- Migrate Speedtest.net to new entity naming style ([@frenck] - [#75004]) ([speedtestdotnet docs]) +- Migrate Verisure to new entity naming style ([@frenck] - [#74997]) ([verisure docs]) +- Migrate Fronius to new entity naming style ([@farmio] - [#74974]) ([fronius docs]) +- Migrate Tuya to new entity naming style ([@frenck] - [#74975]) ([tuya docs]) +- Remove profiler from mypy ignore list ([@epenet] - [#74453]) ([profiler docs]) +- Migrate AdGuard Home to new entity naming style ([@frenck] - [#74999]) ([adguard docs]) +- Remove withings from mypy ignore list ([@epenet] - [#74966]) ([withings docs]) +- Remove plex from mypy ignore list ([@epenet] - [#74984]) ([plex docs]) +- Identify the active ZHA coordinator device in API responses ([@puddly] - [#74739]) ([zha docs]) +- Use forward_entry_setups in ZHA ([@dmulcahey] - [#74834]) ([zha docs]) +- Cache Canary camera image ([@0bmay] - [#73923]) ([canary docs]) +- Update tqdm to 4.64.0 ([@frenck] - [#75010]) (dependency) +- Tweak handling of entities with `has_entity_name` set ([@emontnemery] - [#74948]) ([config docs]) +- Bump actions/setup-python from 4.0.0 to 4.1.0 (@dependabot - [#75040]) (dependency) +- Remove incorrect device class from blebox button ([@riokuu] - [#75042]) ([blebox docs]) +- Mqtt support config_entry unload ([@jbouwh] - [#70149]) ([mqtt docs]) +- Migrate Brother to new entity naming style ([@bieniu] - [#75000]) ([brother docs]) +- Migrate HomeWizard to new entity naming style ([@DCSBL] - [#74958]) ([homewizard docs]) +- Migrate Vallox to new entity naming style ([@slovdahl] - [#75025]) ([vallox docs]) +- Teach resolution center about fixing issues ([@emontnemery] - [#74694]) ([resolution_center docs]) +- Migrate DSMR to use keys for entity unique ID ([@frenck] - [#74895]) ([dsmr docs]) +- Migrate Environment Canada to new entity naming style ([@gwww] - [#75024]) ([environment_canada docs]) +- Update coverage to 6.4.2 ([@frenck] - [#75072]) (dependency) +- Replace Guardian `reboot` and `reset_valve_diagnostics` services with buttons ([@bachya] - [#75028]) ([guardian docs]) (deprecation) +- Expose supported brands via API ([@balloob] - [#75074]) ([websocket_api docs]) (noteworthy) +- Bump actions/cache from 3.0.4 to 3.0.5 (@dependabot - [#75104]) (dependency) +- Add Plugwise number platform ([@bouwew] - [#74655]) ([plugwise docs]) +- Remove service descriptions for deprecated Guardian services ([@bachya] - [#75084]) ([guardian docs]) +- Add Aqara E1 curtain motor direction select entity to ZHA ([@EverythingSmartHome] - [#75132]) ([zha docs]) +- Migrate Whois to new entity naming style ([@frenck] - [#75019]) ([whois docs]) +- Migrate RDW to new entity naming style ([@frenck] - [#75017]) ([rdw docs]) +- Fix flapping system log test ([@bdraco] - [#75111]) ([system_log docs]) +- Add Aladdin Connect wifi_rssi and battery_level sensors ([@mkmer] - [#74258]) ([aladdin_connect docs]) (new-platform) (noteworthy) +- Verisure config flow cleanups ([@frenck] - [#75144]) ([verisure docs]) +- Remove nzbget from mypy ignore list ([@epenet] - [#75158]) ([nzbget docs]) +- Bump pip_check ([@frenck] - [#75164]) +- Remove onvif from mypy ignore list ([@epenet] - [#75162]) ([onvif docs]) +- Update sentry-sdk to 1.7.1 ([@frenck] - [#75154]) ([sentry docs]) (dependency) +- Remove lovelace from mypy ignore list ([@epenet] - [#75167]) ([lovelace docs]) +- Remove evohome climate from mypy ignore list ([@epenet] - [#75169]) ([evohome docs]) +- Migrate roku to new entity naming ([@ctalkington] - [#74819]) ([roku docs]) +- Add mock_bluetooth fixture ([@bdraco] - [#75075]) ([bluetooth docs]) +- Await startup in homekit controller ([@bdraco] - [#75021]) ([homekit_controller docs]) +- Avoid loading platforms in HKC if we are going to raise ConfigEntryNotReady ([@bdraco] - [#75177]) ([homekit_controller docs]) +- Use instance attributes in minecraft_server ([@epenet] - [#75157]) ([minecraft_server docs]) +- Avoid importing MQTT into core for ServiceInfo dataclass ([@bdraco] - [#74418]) ([mqtt docs]) ([tasmota docs]) +- Bump unifi-discovery to 1.1.5 ([@bdraco] - [#75189]) ([unifiprotect docs]) (dependency) +- Allow Mjpeg camera name to be None ([@frenck] - [#75002]) ([mjpeg docs]) +- Relocate BluetoothServiceInfo to helpers.service_info ([@bdraco] - [#75195]) ([bluetooth docs]) +- Move lutron_caseta migration to happen after successful setup ([@bdraco] - [#75204]) ([lutron_caseta docs]) +- Migrate Axis to new entity naming style ([@Kane610] - [#74735]) ([axis docs]) (new-integration) +- Bump nexia to 2.0.2 ([@bdraco] - [#75209]) ([nexia docs]) (dependency) +- Migrate Filesize to new entity naming style ([@gjohansson-ST] - [#75199]) ([filesize docs]) +- Add total state_class for esphome ([@peterg79] - [#75015]) ([esphome docs]) +- Remove template from mypy ignore list ([@epenet] - [#74426]) ([template docs]) ([number docs]) +- Bump pyunifiprotect to 4.0.11 ([@bdraco] - [#75215]) ([unifiprotect docs]) +- Remove evohome from mypy ignore list ([@epenet] - [#75175]) ([evohome docs]) +- Extend failed login message with the request URL ([@frenck] - [#75218]) ([http docs]) +- Migrate SQL to new entity naming style ([@gjohansson-ST] - [#75203]) ([sql docs]) +- Migrate UPB to new entity naming style ([@gwww] - [#75096]) ([upb docs]) +- Add entity descriptions in AdGuard Home sensors ([@frenck] - [#75179]) ([adguard docs]) +- Update wled to 0.14.1 ([@frenck] - [#75174]) ([wled docs]) (dependency) +- Consolidate executor jobs when loading integration manifests ([@bdraco] - [#75176]) ([websocket_api docs]) +- Use json_loads by default for the aiohttp helper ([@bdraco] - [#75214]) +- Bump aiohomekit to 1.0.0 ([@Jc2k] - [#75198]) ([homekit_controller docs]) (dependency) (noteworthy) +- Use pydeconz interface controls for fans ([@Kane610] - [#75156]) +- Add entity descriptions in AdGuard Home switches ([@frenck] - [#75229]) ([adguard docs]) +- Migrate Trafikverket Ferry to new entity naming style ([@gjohansson-ST] - [#75206]) ([trafikverket_ferry docs]) +- Remove cloud from mypy ignore list ([@epenet] - [#74449]) ([cloud docs]) ([webhook docs]) +- Migrate Sensibo to new entity naming style ([@gjohansson-ST] - [#75212]) ([sensibo docs]) +- Migrate Yale Smart Alarm to new entity naming style ([@gjohansson-ST] - [#75202]) ([yale_smart_alarm docs]) +- Add multi-factor authentication support to Verisure ([@frenck] - [#75113]) ([verisure docs]) (noteworthy) +- Migrate DNSIP to new entity naming style ([@gjohansson-ST] - [#75197]) ([dnsip docs]) +- Various cleanups in AdGuard Home ([@frenck] - [#75250]) ([adguard docs]) +- HomeKit Controller BLE Fixes ([@bdraco] - [#75271]) ([homekit_controller docs]) +- Fix delay adding entities in HKC ([@bdraco] - [#75273]) ([homekit_controller docs]) +- Fix Sensibo new entity naming style ([@gjohansson-ST] - [#75307]) ([sensibo docs]) +- Migrate Tailscale to new entity naming style ([@frenck] - [#75018]) ([tailscale docs]) +- Migrate GIOS to new entity naming style ([@bieniu] - [#75051]) ([gios docs]) +- Migrate Uptime to new entity naming style ([@frenck] - [#75090]) ([uptime docs]) +- Migrate Season to new entity naming style ([@frenck] - [#75088]) ([season docs]) +- Migrate Trafikverket Weatherstation to new entity naming style ([@gjohansson-ST] - [#75211]) ([trafikverket_weatherstation docs]) +- Migrate BraviaTV to new entity naming style ([@bieniu] - [#75253]) ([braviatv docs]) +- Include the source in the bluetooth service info ([@bdraco] - [#75112]) ([bluetooth docs]) +- Restore accessory state into pairing using new HKC methods ([@bdraco] - [#75276]) ([homekit_controller docs]) +- Add install UniFi device update feature ([@J3173] - [#75302]) ([unifi docs]) (noteworthy) +- Use pydeconz interface controls for lights ([@Kane610] - [#75261]) ([deconz docs]) +- Update sentry-sdk to 1.7.2 ([@frenck] - [#75331]) ([sentry docs]) (dependency) +- Use shared bluetooth models for BluetoothServiceInfo ([@bdraco] - [#75322]) +- Correct docstrings in Advantage Air ([@Bre77] - [#75344]) ([advantage_air docs]) +- Bump homematicip 1.0.5 ([@hahn-th] - [#75334]) ([homematicip_cloud docs]) (dependency) +- Migrate Tractive to new entity naming style ([@bieniu] - [#75184]) ([tractive docs]) +- Migrate Xiaomi Miio to new entity naming style - part 1 ([@bieniu] - [#75350]) ([xiaomi_miio docs]) +- Add bluetooth discovery to HomeKit Controller ([@bdraco] - [#75333]) ([homekit_controller docs]) +- Migrate Deluge to new entity naming style ([@tkdrob] - [#75359]) ([deluge docs]) +- Migrate Skybell to new entity naming style ([@tkdrob] - [#75341]) ([skybell docs]) +- Migrate PVOutput to new entity naming style ([@frenck] - [#75016]) ([pvoutput docs]) +- Exclude calendar description from recorder ([@allenporter] - [#75375]) ([calendar docs]) (breaking-change) +- Avoid throwing on unsupported bleak client filter ([@bdraco] - [#75378]) ([bluetooth docs]) +- Change manufacturer_data_first_byte to manufacturer_data_start ([@bdraco] - [#75379]) ([homekit_controller docs]) ([bluetooth docs]) +- Fix availability in HKC for sleeping bluetooth devices ([@bdraco] - [#75357]) ([homekit_controller docs]) +- Bump aiohomekit to 1.1.7 ([@bdraco] - [#75384]) ([homekit_controller docs]) (dependency) +- Yolink feature garage door ([@matrixd2] - [#75120]) ([yolink docs]) (new-platform) (noteworthy) +- Improve google calendar config flow timeout error messages ([@allenporter] - [#75364]) ([google docs]) +- Migrate Goalzero to new entity naming style ([@tkdrob] - [#75358]) ([goalzero docs]) +- Update Home Assistant base image to 2022.07.0 ([@frenck] - [#75396]) (dependency) +- Migrate Sensor.Community to new entity naming style ([@frenck] - [#75014]) ([luftdaten docs]) +- Simplify Guardian entity inheritance hierarchy ([@bachya] - [#75274]) ([guardian docs]) +- Make UniFi utilise forward_entry_setups ([@Kane610] - [#74835]) ([unifi docs]) +- Custom component -> Custom integration ([@frenck] - [#75404]) ([weather docs]) ([sensor docs]) ([number docs]) +- Significantly improve BLE reliablity with linux/dbus for HKC ([@bdraco] - [#75410]) ([homekit_controller docs]) (dependency) +- Correct devices in Advantage Air ([@Bre77] - [#75395]) ([advantage_air docs]) (breaking-change) +- Address late review of kostal plenticore ([@stegm] - [#75297]) ([kostal_plenticore docs]) +- Migrate Tautulli to new entity naming style ([@tkdrob] - [#75382]) ([tautulli docs]) +- Update google-cloud-texttospeech to 2.12.0 ([@frenck] - [#75401]) +- Migrate LIFX to config entry per device ([@bdraco] - [#74316]) ([lifx docs]) (breaking-change) (noteworthy) +- Add device and advertisement to BluetoothServiceInfoBleak ([@bdraco] - [#75381]) ([bluetooth docs]) +- Update bluetooth_le_tracker to use Bleak ([@bdraco] - [#75013]) ([bluetooth_le_tracker docs]) +- Pass context to shopping list events ([@R0nd] - [#75377]) ([shopping_list docs]) +- Remove deprecated Lyric YAML configuration ([@frenck] - [#75418]) ([lyric docs]) (breaking-change) +- Clean up deprecated connection class remainders ([@frenck] - [#75421]) (breaking-change) +- Remove deprecated Senz YAML configuration ([@frenck] - [#75419]) ([senz docs]) (breaking-change) +- Remove unused ignore file ([@frenck] - [#75416]) +- Store creation timestamps for resolution center issues ([@emontnemery] - [#75430]) ([resolution_center docs]) +- Rename resolution_center dismiss to ignore ([@emontnemery] - [#75432]) ([resolution_center docs]) +- Fix yolink leak sensor battery expose ([@matrixd2] - [#75423]) ([yolink docs]) +- Improve tradfri decorator typing ([@cdce8p] - [#75439]) ([tradfri docs]) +- Don't use executor in send_big_result ([@uvjustin] - [#75427]) ([camera docs]) ([media_player docs]) ([websocket_api docs]) ([lovelace docs]) +- Add typing to pilight Throttle decorator ([@cdce8p] - [#75443]) ([pilight docs]) +- Improve debouncer typing ([@cdce8p] - [#75436]) ([sonos docs]) ([flux_led docs]) ([plex docs]) ([samsungtv docs]) ([shelly docs]) ([usb docs]) +- Avoid converting discovery_info dataclasses to dict that will be thrown away in config flows ([@bdraco] - [#75451]) +- Update mypy to 0.971 ([@cdce8p] - [#75450]) (dependency) +- Bump python-miio to 0.5.12 ([@rytilahti] - [#75415]) ([xiaomi_miio docs]) (dependency) +- Update pyupgrade to 2.37.2 ([@cdce8p] - [#75456]) (dependency) +- Remove old type casting in esphome ([@cdce8p] - [#75475]) ([esphome docs]) +- Improve deprecation helper typing ([@cdce8p] - [#75453]) +- Rename existing TypeVars referencing Self type ([@cdce8p] - [#75473]) ([zha docs]) ([esphome docs]) +- Disable Aladdin Connect battery_level by default ([@mkmer] - [#75441]) ([aladdin_connect docs]) +- Fix type narrowing in energy integration ([@cdce8p] - [#75462]) ([energy docs]) +- Allow for subclass typing with StatisticsBase ([@cdce8p] - [#75476]) ([recorder docs]) +- Improve dispatcher helper typing ([@cdce8p] - [#75455]) +- Drop RSSI update workaround from bluetooth on linux ([@bdraco] - [#75467]) ([bluetooth docs]) +- Improve entity_platform helper typing ([@cdce8p] - [#75464]) +- Fix bluetooth service_info typing ([@cdce8p] - [#75477]) ([bluetooth docs]) +- Remove websocket_api send_big_result ([@uvjustin] - [#75452]) ([camera docs]) ([media_player docs]) ([websocket_api docs]) ([lovelace docs]) (breaking-change) +- Modify Tile to store a single dataclass in `hass.data` ([@bachya] - [#75459]) ([tile docs]) +- Modify Ridwell to store a single dataclass in `hass.data` ([@bachya] - [#75457]) ([ridwell docs]) +- Migrate Moon to new entity naming style ([@frenck] - [#75085]) ([moon docs]) +- Migrate DSMR to new entity naming style ([@frenck] - [#75077]) ([dsmr docs]) +- Migrate CPUSpeed to new entity naming style ([@frenck] - [#75080]) ([cpuspeed docs]) +- Migrate Plugwise to new entity naming style ([@frenck] - [#75109]) ([plugwise docs]) +- Update orjson to 3.7.8 ([@frenck] - [#75484]) +- Map % RH unit in Tuya sensors ([@frenck] - [#75483]) ([tuya docs]) +- Allow account linking to phase out services ([@frenck] - [#75447]) ([cloud docs]) +- Plugwise prefer use of Adam instead of Anna ([@frenck] - [#75161]) ([plugwise docs]) +- Fix MQTT race awaiting an ACK when disconnecting ([@jbouwh] - [#75117]) ([mqtt docs]) +- Add zha typing [classmethods] ([@cdce8p] - [#75472]) ([zha docs]) +- Rename Resolution Center -> Repairs ([@frenck] - [#75486]) ([resolution_center docs]) ([repairs docs]) +- Update awair SensorDeviceClass to specify icon ([@zachberger] - [#75385]) ([awair docs]) +- Add repairs integration to core files ([@frenck] - [#75489]) +- Adjust repairs re-exports ([@frenck] - [#75492]) ([repairs docs]) +- Create issues in demo integration ([@emontnemery] - [#75081]) ([demo docs]) +- Add repairs as frontend dependency ([@frenck] - [#75501]) ([frontend docs]) +- Remove XBee integration ([@frenck] - [#75502]) (breaking-change) +- Remove SoChain integration ([@frenck] - [#75505]) ([sochain docs]) (breaking-change) +- Remove Google Play Music Desktop Player (GPMDP) integration ([@frenck] - [#75508]) ([gpmdp docs]) (breaking-change) +- Migrate Huawei LTE to new entity naming style ([@scop] - [#75303]) ([huawei_lte docs]) +- Use `DeviceInfo.hw_version` in DenonAVR integration ([@bieniu] - [#75300]) ([denonavr docs]) +- Add coordinator and entity for passive bluetooth devices ([@bdraco] - [#75468]) ([bluetooth docs]) +- Improve singleton helper typing ([@cdce8p] - [#75461]) +- Fix spelling in recorder integration ([@cdce8p] - [#75539]) ([recorder docs]) +- Bump pymazda to 0.3.7 ([@bdr99] - [#75546]) ([mazda docs]) (dependency) +- Hide inactive repairs issues ([@emontnemery] - [#75556]) ([repairs docs]) +- Add sync methods for create/deleting issues in repairs ([@frenck] - [#75557]) ([repairs docs]) +- Update icons for breaking changes in MDI 7.0.96 ([@bramkragten] - [#75560]) ([huawei_lte docs]) ([icloud docs]) ([netgear docs]) (breaking-change) (noteworthy) +- Add websocket command recorder/import_statistics ([@titilambert] - [#73937]) ([recorder docs]) (noteworthy) +- Improve http decorator typing ([@cdce8p] - [#75541]) ([http docs]) ([auth docs]) ([repairs docs]) +- Deprecate U.S. Citizenship and Immigration Services (USCIS) integration ([@frenck] - [#75562]) ([uscis docs]) (deprecation) +- Raise on bad update data instead of log in PassiveBluetoothDataUpdateCoordinator ([@bdraco] - [#75536]) ([bluetooth docs]) +- Migrate AccuWeather to new entity naming style ([@bieniu] - [#75127]) ([accuweather docs]) +- Bump aiohomekit to 1.1.9 ([@bdraco] - [#75591]) ([homekit_controller docs]) (dependency) +- ZHA light entity cleanup ([@dmulcahey] - [#75573]) ([zha docs]) +- Add ZHA config option for "enhanced light transition from an off-state" ([@TheJulianJES] - [#75151]) ([zha docs]) +- Improve availability tracking and coordinator setup in bluetooth ([@bdraco] - [#75582]) ([bluetooth docs]) +- Add SensorPush BLE integration ([@bdraco] - [#75531]) ([sensorpush docs]) (new-integration) +- Modify Guardian to store a single dataclass in `hass.data` ([@bachya] - [#75454]) ([guardian docs]) +- Add inkbird (BLE) integration ([@bdraco] - [#75594]) ([bluetooth docs]) ([inkbird docs]) (new-integration) +- Bump afsapi to 0.2.7 ([@wlcrs] - [#75579]) ([frontier_silicon docs]) (dependency) +- Address some MQTT review comments ([@emontnemery] - [#75482]) ([mqtt docs]) +- Fix incorrect battery unit on paired Guardian sensors ([@bachya] - [#75402]) ([guardian docs]) +- Migrate SMHI to new entity naming style ([@gjohansson-ST] - [#75213]) +- Use recorder get_instance function to improve typing ([@emontnemery] - [#75567]) ([recorder docs]) ([sensor docs]) +- Improve handling of MQTT config entry data ([@emontnemery] - [#72691]) ([mqtt docs]) +- Support non-live database migration ([@emontnemery] - [#72433]) ([recorder docs]) +- Fix small homekit type error ([@cdce8p] - [#75617]) ([homekit docs]) +- Add Switchbot hygrometers ([@murtas] - [#75325]) ([switchbot docs]) (noteworthy) +- Remove callback decorator from coroutine functions ([@MartinHjelmare] - [#75626]) ([logbook docs]) ([zwave_js docs]) ([network docs]) +- Fix recorder hanging at start ([@bdraco] - [#75627]) ([recorder docs]) +- Add support for setting up and removing bluetooth in the UI ([@bdraco] - [#75600]) ([default_config docs]) ([bluetooth docs]) (config-flow) +- Add missing inkbird config flow tests ([@bdraco] - [#75630]) ([inkbird docs]) +- Add new NextDNS sensors ([@bieniu] - [#74789]) ([nextdns docs]) +- Fix inkbird config flow tests to correctly test discovery and user flow ([@bdraco] - [#75638]) ([inkbird docs]) +- Add missing config flow tests for sensorpush ([@bdraco] - [#75629]) ([sensorpush docs]) +- Initial xiaomi_ble integration ([@Jc2k] - [#75618]) ([xiaomi_ble docs]) (new-integration) +- Address NextDNS late review ([@bieniu] - [#75635]) ([nextdns docs]) +- Fix async_get_scanner to return the correct bluetooth scanner ([@bdraco] - [#75637]) ([bluetooth docs]) +- Pass in the bleak scanner instance to HKC ([@bdraco] - [#75636]) ([homekit_controller docs]) +- Add support for rest of sensors for HHCCJCY01 ([@Jc2k] - [#75646]) ([xiaomi_ble docs]) +- Do not access hass.data in unifi test ([@J3173] - [#75348]) ([unifi docs]) +- Use CO Device Class Instead of Gas in zwave_js ([@EnochPrime] - [#75649]) ([zwave_js docs]) (breaking-change) +- Add error message for duplicate stream recordings ([@uvjustin] - [#75654]) ([stream docs]) +- Automatically set up Bluetooth during onboarding ([@frenck] - [#75658]) ([bluetooth docs]) +- Add state class to HKC sensors ([@bdraco] - [#75662]) ([homekit_controller docs]) +- Import correct scan interval in traccar ([@ludeeus] - [#75660]) ([traccar docs]) +- Retry later if bluetooth fails to start ([@bdraco] - [#75647]) ([bluetooth docs]) +- Add bluetooth connection constant to the device registry ([@bdraco] - [#75666]) +- Refactor PassiveBluetoothDataUpdateCoordinator to support multiple platforms ([@bdraco] - [#75642]) ([bluetooth docs]) +- Upgrade pyrisco to 0.5.0 ([@OnFreund] - [#75648]) ([risco docs]) (dependency) +- Split bluetooth coordinator into two classes ([@bdraco] - [#75675]) ([bluetooth docs]) ([sensorpush docs]) ([inkbird docs]) ([xiaomi_ble docs]) +- Add Moat (BLE) integration ([@bdraco] - [#75643]) ([moat docs]) (new-integration) +- Fix diagnostics export for generic camera ([@davet2001] - [#75665]) ([generic docs]) +- Add Govee BLE integration ([@bdraco] - [#75631]) ([govee_ble docs]) (new-integration) +- Update switchbot to be local push ([@bdraco] - [#75645]) ([switchbot docs]) (breaking-change) (noteworthy) +- Bump aiohomekit to 1.2.0 ([@bdraco] - [#75686]) ([homekit_controller docs]) (dependency) +- Migrate ElkM1 to new entity naming style ([@gwww] - [#75023]) ([elkm1 docs]) ([upb docs]) +- Bump motionblinds to 0.6.11 ([@starkillerOG] - [#75581]) ([motion_blinds docs]) (dependency) +- Support for encrypted BLE MiBeacon devices ([@Jc2k] - [#75677]) ([xiaomi_ble docs]) +- Update pip version range to 22.3 ([@cdce8p] - [#75572]) (dependency) +- Update sentry-sdk to 1.8.0 ([@frenck] - [#75691]) ([sentry docs]) (dependency) +- Update PySwitchbot to improve connection reliability ([@bdraco] - [#75692]) ([switchbot docs]) (dependency) +- Fix bluetooth integration matching with service_data_uuids and service_uuids ([@bdraco] - [#75687]) ([bluetooth docs]) +- Update switchbot bluetooth matchers for sensor devices ([@bdraco] - [#75690]) ([switchbot docs]) +- Ensure bluetooth can be reloaded when hot plugging a bluetooth adapter ([@bdraco] - [#75699]) ([bluetooth docs]) +- Use DataUpdateCoordinator in london_underground ([@pedrolamas] - [#75304]) ([london_underground docs]) +- Refactor Advantage Air classes for expansion ([@Bre77] - [#75422]) ([advantage_air docs]) +- Raise YAML deprecation issue for Radio Therm ([@frenck] - [#75513]) ([radiotherm docs]) +- Set min transition time for Sengled lights in ZHA groups ([@TheJulianJES] - [#75644]) ([zha docs]) +- Add bluetooth options flow to pick the adapter ([@bdraco] - [#75701]) ([bluetooth docs]) (dependency) +- Bump AIOAladdinConnect to 0.1.31 ([@mkmer] - [#75721]) ([aladdin_connect docs]) (dependency) +- Add device HmIP-STE2-PCB to homematicip_cloud ([@hahn-th] - [#75369]) ([homematicip_cloud docs]) +- Make lifx async_migrate_legacy_entries a callback ([@bdraco] - [#75719]) ([lifx docs]) +- Don't use executor for lutron subscription ([@uvjustin] - [#75726]) ([lutron docs]) +- Add strict typing for litterrobot ([@cdce8p] - [#75540]) ([litterrobot docs]) +- Update name of Z-WaveJS to Z-Wave ([@zsarnett] - [#75136]) ([zwave_js docs]) +- Remove deprecated MyZone service in Advantage Air ([@Bre77] - [#75160]) ([advantage_air docs]) (breaking-change) +- Bump pytraccar to 1.0.0 ([@ludeeus] - [#75671]) ([traccar docs]) (dependency) +- Add issue to repairs for removed Spotify YAML configuration ([@frenck] - [#75736]) ([spotify docs]) +- Add issue to repairs for removed Steam YAML configuration ([@frenck] - [#75737]) ([steam_online docs]) +- Bump goodwe to 0.2.18 ([@starkillerOG] - [#75615]) ([goodwe docs]) (dependency) +- Improve mqtt MessageCallback typing ([@cdce8p] - [#75614]) ([mqtt docs]) +- Bump Switchmate dependency to 0.5.1 ([@qiz-li] - [#75163]) ([switchmate docs]) (dependency) +- Automatically set up Xiaomi BLE during onboarding ([@frenck] - [#75748]) ([xiaomi_ble docs]) +- Raise issue for Google Calendar YAML deprecations ([@allenporter] - [#75743]) ([google docs]) +- Update xknx to 0.22.0 ([@farmio] - [#75749]) ([knx docs]) (dependency) +- Fix small type issue [synology_dsm] ([@cdce8p] - [#75762]) ([synology_dsm docs]) +- Fix min and max mireds with HKC ([@bdraco] - [#75744]) ([homekit_controller docs]) (dependency) +- Fix entity typo ([@uvjustin] - [#75767]) ([mqtt docs]) ([radio_browser docs]) +- Fix small type issues [core] ([@cdce8p] - [#75760]) ([http docs]) +- Fix small type issue [fritz] ([@cdce8p] - [#75761]) ([fritz docs]) +- Bump vallox-websocket-api to 2.12.0 ([@yozik04] - [#75734]) ([vallox docs]) (dependency) +- Add support for switchbot contact/door sensor ([@bdraco] - [#75730]) ([switchbot docs]) +- Raise repair issue for Mi Flora ([@frenck] - [#75752]) ([miflora docs]) (deprecation) +- Raise repair issue for Xiaomi Mijia BLE Temperature and Humidity Sensor ([@frenck] - [#75754]) ([mitemp_bt docs]) (deprecation) +- Bump sensorpush-ble to 1.5.1 ([@bdraco] - [#75771]) ([sensorpush docs]) +- Raise YAML removal issue for nVent RAYCHEM SENZ ([@frenck] - [#75757]) ([senz docs]) +- Raise YAML removal issue for Lyric ([@frenck] - [#75756]) ([lyric docs]) (deprecation) +- Fix startup race in BLE integrations ([@bdraco] - [#75780]) ([bluetooth docs]) ([govee_ble docs]) ([sensorpush docs]) ([inkbird docs]) ([xiaomi_ble docs]) ([moat docs]) +- Adjust wording in raised mitemp_bt issue ([@frenck] - [#75779]) ([mitemp_bt docs]) +- Bump python-eq3bt requirement ([@rytilahti] - [#75145]) ([eq3btsmart docs]) (dependency) +- Add tests for the Plugwise Select platform ([@bouwew] - [#75774]) ([plugwise docs]) +- Bump ZHA dependencies ([@puddly] - [#75785]) ([zha docs]) (dependency) +- Add guards to ZHA light groups when using hs color mode ([@dmulcahey] - [#75599]) ([zha docs]) +- Add events to repairs issue registry changes ([@frenck] - [#75784]) ([repairs docs]) +- Cleanup unused camera constants ([@uvjustin] - [#75772]) ([camera docs]) +- Add en-GB locale for AlexaMotionSensor and AlexaContactSensor ([@jfhenriques] - [#75705]) ([alexa docs]) +- Add 1.5 second sleep to motion blinds update ([@starkillerOG] - [#75494]) ([motion_blinds docs]) +- Fix ZHA light brightness jumping around during transitions ([@TheJulianJES] - [#74849]) ([zha docs]) +- Add occupancy sensor to the BAF integration ([@jfroy] - [#75793]) ([baf docs]) (new-platform) (dependency) +- Use executor to finish stream recording ([@uvjustin] - [#75776]) ([stream docs]) +- Add state to CheckControlMessages in bmw_connected_drive ([@rikroe] - [#75802]) ([bmw_connected_drive docs]) +- Fix error on shutdown when no Sonos devices available ([@jjlawren] - [#75798]) ([sonos docs]) +- Create Repairs based on Alerts ([@emontnemery] - [#75397]) ([resolution_center docs]) +- Add new vallox temperature and fan sensors ([@yozik04] - [#75783]) ([vallox docs]) +- Deprecate the Ambee integration ([@frenck] - [#75805]) ([ambee docs]) ([repairs docs]) (deprecation) +- Add xiaomi_ble voltage, consumable and formaldehyde sensors ([@Jc2k] - [#75807]) ([xiaomi_ble docs]) +- Deprecate the OpenALPR Local integration ([@frenck] - [#75810]) ([openalpr_local docs]) (deprecation) +- Update frontend to 20220727.0 ([@bramkragten] - [#75813]) ([frontend docs]) +- Fix ZHA on with timed off cluster command ([@dmulcahey] - [#75815]) ([zha docs]) +- Raise YAML removal issue for Anthem A/V Receivers ([@frenck] - [#75816]) ([anthemav docs]) +- Netatmo entity renaming and clean up ([@cgtobi] - [#75337]) ([netatmo docs]) +- Raise YAML removal issue for Bose SoundTouch ([@frenck] - [#75817]) ([soundtouch docs]) + +[#53268]: https://github.com/home-assistant/core/pull/53268 +[#64090]: https://github.com/home-assistant/core/pull/64090 +[#66419]: https://github.com/home-assistant/core/pull/66419 +[#69951]: https://github.com/home-assistant/core/pull/69951 +[#70149]: https://github.com/home-assistant/core/pull/70149 +[#70818]: https://github.com/home-assistant/core/pull/70818 +[#71019]: https://github.com/home-assistant/core/pull/71019 +[#71035]: https://github.com/home-assistant/core/pull/71035 +[#72030]: https://github.com/home-assistant/core/pull/72030 +[#72405]: https://github.com/home-assistant/core/pull/72405 +[#72433]: https://github.com/home-assistant/core/pull/72433 +[#72680]: https://github.com/home-assistant/core/pull/72680 +[#72691]: https://github.com/home-assistant/core/pull/72691 +[#72967]: https://github.com/home-assistant/core/pull/72967 +[#73352]: https://github.com/home-assistant/core/pull/73352 +[#73806]: https://github.com/home-assistant/core/pull/73806 +[#73923]: https://github.com/home-assistant/core/pull/73923 +[#73937]: https://github.com/home-assistant/core/pull/73937 +[#74014]: https://github.com/home-assistant/core/pull/74014 +[#74033]: https://github.com/home-assistant/core/pull/74033 +[#74144]: https://github.com/home-assistant/core/pull/74144 +[#74150]: https://github.com/home-assistant/core/pull/74150 +[#74183]: https://github.com/home-assistant/core/pull/74183 +[#74184]: https://github.com/home-assistant/core/pull/74184 +[#74190]: https://github.com/home-assistant/core/pull/74190 +[#74192]: https://github.com/home-assistant/core/pull/74192 +[#74200]: https://github.com/home-assistant/core/pull/74200 +[#74209]: https://github.com/home-assistant/core/pull/74209 +[#74212]: https://github.com/home-assistant/core/pull/74212 +[#74217]: https://github.com/home-assistant/core/pull/74217 +[#74223]: https://github.com/home-assistant/core/pull/74223 +[#74227]: https://github.com/home-assistant/core/pull/74227 +[#74228]: https://github.com/home-assistant/core/pull/74228 +[#74236]: https://github.com/home-assistant/core/pull/74236 +[#74243]: https://github.com/home-assistant/core/pull/74243 +[#74244]: https://github.com/home-assistant/core/pull/74244 +[#74247]: https://github.com/home-assistant/core/pull/74247 +[#74253]: https://github.com/home-assistant/core/pull/74253 +[#74258]: https://github.com/home-assistant/core/pull/74258 +[#74261]: https://github.com/home-assistant/core/pull/74261 +[#74262]: https://github.com/home-assistant/core/pull/74262 +[#74264]: https://github.com/home-assistant/core/pull/74264 +[#74268]: https://github.com/home-assistant/core/pull/74268 +[#74275]: https://github.com/home-assistant/core/pull/74275 +[#74282]: https://github.com/home-assistant/core/pull/74282 +[#74284]: https://github.com/home-assistant/core/pull/74284 +[#74286]: https://github.com/home-assistant/core/pull/74286 +[#74288]: https://github.com/home-assistant/core/pull/74288 +[#74294]: https://github.com/home-assistant/core/pull/74294 +[#74295]: https://github.com/home-assistant/core/pull/74295 +[#74296]: https://github.com/home-assistant/core/pull/74296 +[#74302]: https://github.com/home-assistant/core/pull/74302 +[#74308]: https://github.com/home-assistant/core/pull/74308 +[#74311]: https://github.com/home-assistant/core/pull/74311 +[#74313]: https://github.com/home-assistant/core/pull/74313 +[#74315]: https://github.com/home-assistant/core/pull/74315 +[#74316]: https://github.com/home-assistant/core/pull/74316 +[#74317]: https://github.com/home-assistant/core/pull/74317 +[#74319]: https://github.com/home-assistant/core/pull/74319 +[#74324]: https://github.com/home-assistant/core/pull/74324 +[#74327]: https://github.com/home-assistant/core/pull/74327 +[#74328]: https://github.com/home-assistant/core/pull/74328 +[#74333]: https://github.com/home-assistant/core/pull/74333 +[#74338]: https://github.com/home-assistant/core/pull/74338 +[#74353]: https://github.com/home-assistant/core/pull/74353 +[#74359]: https://github.com/home-assistant/core/pull/74359 +[#74363]: https://github.com/home-assistant/core/pull/74363 +[#74364]: https://github.com/home-assistant/core/pull/74364 +[#74365]: https://github.com/home-assistant/core/pull/74365 +[#74367]: https://github.com/home-assistant/core/pull/74367 +[#74368]: https://github.com/home-assistant/core/pull/74368 +[#74370]: https://github.com/home-assistant/core/pull/74370 +[#74371]: https://github.com/home-assistant/core/pull/74371 +[#74374]: https://github.com/home-assistant/core/pull/74374 +[#74378]: https://github.com/home-assistant/core/pull/74378 +[#74389]: https://github.com/home-assistant/core/pull/74389 +[#74390]: https://github.com/home-assistant/core/pull/74390 +[#74394]: https://github.com/home-assistant/core/pull/74394 +[#74395]: https://github.com/home-assistant/core/pull/74395 +[#74397]: https://github.com/home-assistant/core/pull/74397 +[#74398]: https://github.com/home-assistant/core/pull/74398 +[#74399]: https://github.com/home-assistant/core/pull/74399 +[#74400]: https://github.com/home-assistant/core/pull/74400 +[#74401]: https://github.com/home-assistant/core/pull/74401 +[#74402]: https://github.com/home-assistant/core/pull/74402 +[#74403]: https://github.com/home-assistant/core/pull/74403 +[#74404]: https://github.com/home-assistant/core/pull/74404 +[#74408]: https://github.com/home-assistant/core/pull/74408 +[#74410]: https://github.com/home-assistant/core/pull/74410 +[#74411]: https://github.com/home-assistant/core/pull/74411 +[#74412]: https://github.com/home-assistant/core/pull/74412 +[#74415]: https://github.com/home-assistant/core/pull/74415 +[#74418]: https://github.com/home-assistant/core/pull/74418 +[#74425]: https://github.com/home-assistant/core/pull/74425 +[#74426]: https://github.com/home-assistant/core/pull/74426 +[#74429]: https://github.com/home-assistant/core/pull/74429 +[#74433]: https://github.com/home-assistant/core/pull/74433 +[#74440]: https://github.com/home-assistant/core/pull/74440 +[#74441]: https://github.com/home-assistant/core/pull/74441 +[#74443]: https://github.com/home-assistant/core/pull/74443 +[#74446]: https://github.com/home-assistant/core/pull/74446 +[#74447]: https://github.com/home-assistant/core/pull/74447 +[#74448]: https://github.com/home-assistant/core/pull/74448 +[#74449]: https://github.com/home-assistant/core/pull/74449 +[#74451]: https://github.com/home-assistant/core/pull/74451 +[#74452]: https://github.com/home-assistant/core/pull/74452 +[#74453]: https://github.com/home-assistant/core/pull/74453 +[#74456]: https://github.com/home-assistant/core/pull/74456 +[#74466]: https://github.com/home-assistant/core/pull/74466 +[#74474]: https://github.com/home-assistant/core/pull/74474 +[#74476]: https://github.com/home-assistant/core/pull/74476 +[#74479]: https://github.com/home-assistant/core/pull/74479 +[#74481]: https://github.com/home-assistant/core/pull/74481 +[#74482]: https://github.com/home-assistant/core/pull/74482 +[#74483]: https://github.com/home-assistant/core/pull/74483 +[#74485]: https://github.com/home-assistant/core/pull/74485 +[#74490]: https://github.com/home-assistant/core/pull/74490 +[#74491]: https://github.com/home-assistant/core/pull/74491 +[#74492]: https://github.com/home-assistant/core/pull/74492 +[#74495]: https://github.com/home-assistant/core/pull/74495 +[#74496]: https://github.com/home-assistant/core/pull/74496 +[#74503]: https://github.com/home-assistant/core/pull/74503 +[#74504]: https://github.com/home-assistant/core/pull/74504 +[#74512]: https://github.com/home-assistant/core/pull/74512 +[#74514]: https://github.com/home-assistant/core/pull/74514 +[#74517]: https://github.com/home-assistant/core/pull/74517 +[#74518]: https://github.com/home-assistant/core/pull/74518 +[#74526]: https://github.com/home-assistant/core/pull/74526 +[#74535]: https://github.com/home-assistant/core/pull/74535 +[#74555]: https://github.com/home-assistant/core/pull/74555 +[#74580]: https://github.com/home-assistant/core/pull/74580 +[#74581]: https://github.com/home-assistant/core/pull/74581 +[#74583]: https://github.com/home-assistant/core/pull/74583 +[#74587]: https://github.com/home-assistant/core/pull/74587 +[#74590]: https://github.com/home-assistant/core/pull/74590 +[#74593]: https://github.com/home-assistant/core/pull/74593 +[#74594]: https://github.com/home-assistant/core/pull/74594 +[#74596]: https://github.com/home-assistant/core/pull/74596 +[#74603]: https://github.com/home-assistant/core/pull/74603 +[#74604]: https://github.com/home-assistant/core/pull/74604 +[#74611]: https://github.com/home-assistant/core/pull/74611 +[#74612]: https://github.com/home-assistant/core/pull/74612 +[#74613]: https://github.com/home-assistant/core/pull/74613 +[#74617]: https://github.com/home-assistant/core/pull/74617 +[#74629]: https://github.com/home-assistant/core/pull/74629 +[#74637]: https://github.com/home-assistant/core/pull/74637 +[#74638]: https://github.com/home-assistant/core/pull/74638 +[#74642]: https://github.com/home-assistant/core/pull/74642 +[#74648]: https://github.com/home-assistant/core/pull/74648 +[#74653]: https://github.com/home-assistant/core/pull/74653 +[#74654]: https://github.com/home-assistant/core/pull/74654 +[#74655]: https://github.com/home-assistant/core/pull/74655 +[#74656]: https://github.com/home-assistant/core/pull/74656 +[#74659]: https://github.com/home-assistant/core/pull/74659 +[#74660]: https://github.com/home-assistant/core/pull/74660 +[#74661]: https://github.com/home-assistant/core/pull/74661 +[#74663]: https://github.com/home-assistant/core/pull/74663 +[#74666]: https://github.com/home-assistant/core/pull/74666 +[#74669]: https://github.com/home-assistant/core/pull/74669 +[#74670]: https://github.com/home-assistant/core/pull/74670 +[#74671]: https://github.com/home-assistant/core/pull/74671 +[#74686]: https://github.com/home-assistant/core/pull/74686 +[#74690]: https://github.com/home-assistant/core/pull/74690 +[#74692]: https://github.com/home-assistant/core/pull/74692 +[#74693]: https://github.com/home-assistant/core/pull/74693 +[#74694]: https://github.com/home-assistant/core/pull/74694 +[#74695]: https://github.com/home-assistant/core/pull/74695 +[#74696]: https://github.com/home-assistant/core/pull/74696 +[#74705]: https://github.com/home-assistant/core/pull/74705 +[#74706]: https://github.com/home-assistant/core/pull/74706 +[#74709]: https://github.com/home-assistant/core/pull/74709 +[#74720]: https://github.com/home-assistant/core/pull/74720 +[#74721]: https://github.com/home-assistant/core/pull/74721 +[#74723]: https://github.com/home-assistant/core/pull/74723 +[#74724]: https://github.com/home-assistant/core/pull/74724 +[#74727]: https://github.com/home-assistant/core/pull/74727 +[#74734]: https://github.com/home-assistant/core/pull/74734 +[#74735]: https://github.com/home-assistant/core/pull/74735 +[#74739]: https://github.com/home-assistant/core/pull/74739 +[#74741]: https://github.com/home-assistant/core/pull/74741 +[#74743]: https://github.com/home-assistant/core/pull/74743 +[#74744]: https://github.com/home-assistant/core/pull/74744 +[#74745]: https://github.com/home-assistant/core/pull/74745 +[#74746]: https://github.com/home-assistant/core/pull/74746 +[#74749]: https://github.com/home-assistant/core/pull/74749 +[#74753]: https://github.com/home-assistant/core/pull/74753 +[#74754]: https://github.com/home-assistant/core/pull/74754 +[#74756]: https://github.com/home-assistant/core/pull/74756 +[#74761]: https://github.com/home-assistant/core/pull/74761 +[#74763]: https://github.com/home-assistant/core/pull/74763 +[#74765]: https://github.com/home-assistant/core/pull/74765 +[#74773]: https://github.com/home-assistant/core/pull/74773 +[#74782]: https://github.com/home-assistant/core/pull/74782 +[#74789]: https://github.com/home-assistant/core/pull/74789 +[#74795]: https://github.com/home-assistant/core/pull/74795 +[#74805]: https://github.com/home-assistant/core/pull/74805 +[#74807]: https://github.com/home-assistant/core/pull/74807 +[#74810]: https://github.com/home-assistant/core/pull/74810 +[#74819]: https://github.com/home-assistant/core/pull/74819 +[#74823]: https://github.com/home-assistant/core/pull/74823 +[#74834]: https://github.com/home-assistant/core/pull/74834 +[#74835]: https://github.com/home-assistant/core/pull/74835 +[#74836]: https://github.com/home-assistant/core/pull/74836 +[#74837]: https://github.com/home-assistant/core/pull/74837 +[#74846]: https://github.com/home-assistant/core/pull/74846 +[#74849]: https://github.com/home-assistant/core/pull/74849 +[#74850]: https://github.com/home-assistant/core/pull/74850 +[#74851]: https://github.com/home-assistant/core/pull/74851 +[#74853]: https://github.com/home-assistant/core/pull/74853 +[#74855]: https://github.com/home-assistant/core/pull/74855 +[#74856]: https://github.com/home-assistant/core/pull/74856 +[#74857]: https://github.com/home-assistant/core/pull/74857 +[#74859]: https://github.com/home-assistant/core/pull/74859 +[#74860]: https://github.com/home-assistant/core/pull/74860 +[#74868]: https://github.com/home-assistant/core/pull/74868 +[#74877]: https://github.com/home-assistant/core/pull/74877 +[#74878]: https://github.com/home-assistant/core/pull/74878 +[#74880]: https://github.com/home-assistant/core/pull/74880 +[#74882]: https://github.com/home-assistant/core/pull/74882 +[#74887]: https://github.com/home-assistant/core/pull/74887 +[#74891]: https://github.com/home-assistant/core/pull/74891 +[#74895]: https://github.com/home-assistant/core/pull/74895 +[#74896]: https://github.com/home-assistant/core/pull/74896 +[#74897]: https://github.com/home-assistant/core/pull/74897 +[#74898]: https://github.com/home-assistant/core/pull/74898 +[#74899]: https://github.com/home-assistant/core/pull/74899 +[#74901]: https://github.com/home-assistant/core/pull/74901 +[#74903]: https://github.com/home-assistant/core/pull/74903 +[#74906]: https://github.com/home-assistant/core/pull/74906 +[#74908]: https://github.com/home-assistant/core/pull/74908 +[#74909]: https://github.com/home-assistant/core/pull/74909 +[#74910]: https://github.com/home-assistant/core/pull/74910 +[#74911]: https://github.com/home-assistant/core/pull/74911 +[#74912]: https://github.com/home-assistant/core/pull/74912 +[#74913]: https://github.com/home-assistant/core/pull/74913 +[#74914]: https://github.com/home-assistant/core/pull/74914 +[#74915]: https://github.com/home-assistant/core/pull/74915 +[#74916]: https://github.com/home-assistant/core/pull/74916 +[#74917]: https://github.com/home-assistant/core/pull/74917 +[#74918]: https://github.com/home-assistant/core/pull/74918 +[#74919]: https://github.com/home-assistant/core/pull/74919 +[#74920]: https://github.com/home-assistant/core/pull/74920 +[#74929]: https://github.com/home-assistant/core/pull/74929 +[#74930]: https://github.com/home-assistant/core/pull/74930 +[#74931]: https://github.com/home-assistant/core/pull/74931 +[#74932]: https://github.com/home-assistant/core/pull/74932 +[#74937]: https://github.com/home-assistant/core/pull/74937 +[#74939]: https://github.com/home-assistant/core/pull/74939 +[#74940]: https://github.com/home-assistant/core/pull/74940 +[#74942]: https://github.com/home-assistant/core/pull/74942 +[#74946]: https://github.com/home-assistant/core/pull/74946 +[#74948]: https://github.com/home-assistant/core/pull/74948 +[#74951]: https://github.com/home-assistant/core/pull/74951 +[#74955]: https://github.com/home-assistant/core/pull/74955 +[#74958]: https://github.com/home-assistant/core/pull/74958 +[#74961]: https://github.com/home-assistant/core/pull/74961 +[#74963]: https://github.com/home-assistant/core/pull/74963 +[#74965]: https://github.com/home-assistant/core/pull/74965 +[#74966]: https://github.com/home-assistant/core/pull/74966 +[#74967]: https://github.com/home-assistant/core/pull/74967 +[#74968]: https://github.com/home-assistant/core/pull/74968 +[#74974]: https://github.com/home-assistant/core/pull/74974 +[#74975]: https://github.com/home-assistant/core/pull/74975 +[#74977]: https://github.com/home-assistant/core/pull/74977 +[#74983]: https://github.com/home-assistant/core/pull/74983 +[#74984]: https://github.com/home-assistant/core/pull/74984 +[#74986]: https://github.com/home-assistant/core/pull/74986 +[#74987]: https://github.com/home-assistant/core/pull/74987 +[#74989]: https://github.com/home-assistant/core/pull/74989 +[#74990]: https://github.com/home-assistant/core/pull/74990 +[#74991]: https://github.com/home-assistant/core/pull/74991 +[#74992]: https://github.com/home-assistant/core/pull/74992 +[#74993]: https://github.com/home-assistant/core/pull/74993 +[#74995]: https://github.com/home-assistant/core/pull/74995 +[#74996]: https://github.com/home-assistant/core/pull/74996 +[#74997]: https://github.com/home-assistant/core/pull/74997 +[#74999]: https://github.com/home-assistant/core/pull/74999 +[#75000]: https://github.com/home-assistant/core/pull/75000 +[#75002]: https://github.com/home-assistant/core/pull/75002 +[#75003]: https://github.com/home-assistant/core/pull/75003 +[#75004]: https://github.com/home-assistant/core/pull/75004 +[#75005]: https://github.com/home-assistant/core/pull/75005 +[#75007]: https://github.com/home-assistant/core/pull/75007 +[#75010]: https://github.com/home-assistant/core/pull/75010 +[#75013]: https://github.com/home-assistant/core/pull/75013 +[#75014]: https://github.com/home-assistant/core/pull/75014 +[#75015]: https://github.com/home-assistant/core/pull/75015 +[#75016]: https://github.com/home-assistant/core/pull/75016 +[#75017]: https://github.com/home-assistant/core/pull/75017 +[#75018]: https://github.com/home-assistant/core/pull/75018 +[#75019]: https://github.com/home-assistant/core/pull/75019 +[#75021]: https://github.com/home-assistant/core/pull/75021 +[#75023]: https://github.com/home-assistant/core/pull/75023 +[#75024]: https://github.com/home-assistant/core/pull/75024 +[#75025]: https://github.com/home-assistant/core/pull/75025 +[#75028]: https://github.com/home-assistant/core/pull/75028 +[#75040]: https://github.com/home-assistant/core/pull/75040 +[#75042]: https://github.com/home-assistant/core/pull/75042 +[#75051]: https://github.com/home-assistant/core/pull/75051 +[#75072]: https://github.com/home-assistant/core/pull/75072 +[#75074]: https://github.com/home-assistant/core/pull/75074 +[#75075]: https://github.com/home-assistant/core/pull/75075 +[#75077]: https://github.com/home-assistant/core/pull/75077 +[#75080]: https://github.com/home-assistant/core/pull/75080 +[#75081]: https://github.com/home-assistant/core/pull/75081 +[#75084]: https://github.com/home-assistant/core/pull/75084 +[#75085]: https://github.com/home-assistant/core/pull/75085 +[#75088]: https://github.com/home-assistant/core/pull/75088 +[#75090]: https://github.com/home-assistant/core/pull/75090 +[#75096]: https://github.com/home-assistant/core/pull/75096 +[#75104]: https://github.com/home-assistant/core/pull/75104 +[#75109]: https://github.com/home-assistant/core/pull/75109 +[#75111]: https://github.com/home-assistant/core/pull/75111 +[#75112]: https://github.com/home-assistant/core/pull/75112 +[#75113]: https://github.com/home-assistant/core/pull/75113 +[#75117]: https://github.com/home-assistant/core/pull/75117 +[#75120]: https://github.com/home-assistant/core/pull/75120 +[#75127]: https://github.com/home-assistant/core/pull/75127 +[#75132]: https://github.com/home-assistant/core/pull/75132 +[#75136]: https://github.com/home-assistant/core/pull/75136 +[#75144]: https://github.com/home-assistant/core/pull/75144 +[#75145]: https://github.com/home-assistant/core/pull/75145 +[#75151]: https://github.com/home-assistant/core/pull/75151 +[#75154]: https://github.com/home-assistant/core/pull/75154 +[#75156]: https://github.com/home-assistant/core/pull/75156 +[#75157]: https://github.com/home-assistant/core/pull/75157 +[#75158]: https://github.com/home-assistant/core/pull/75158 +[#75160]: https://github.com/home-assistant/core/pull/75160 +[#75161]: https://github.com/home-assistant/core/pull/75161 +[#75162]: https://github.com/home-assistant/core/pull/75162 +[#75163]: https://github.com/home-assistant/core/pull/75163 +[#75164]: https://github.com/home-assistant/core/pull/75164 +[#75167]: https://github.com/home-assistant/core/pull/75167 +[#75169]: https://github.com/home-assistant/core/pull/75169 +[#75174]: https://github.com/home-assistant/core/pull/75174 +[#75175]: https://github.com/home-assistant/core/pull/75175 +[#75176]: https://github.com/home-assistant/core/pull/75176 +[#75177]: https://github.com/home-assistant/core/pull/75177 +[#75179]: https://github.com/home-assistant/core/pull/75179 +[#75184]: https://github.com/home-assistant/core/pull/75184 +[#75189]: https://github.com/home-assistant/core/pull/75189 +[#75195]: https://github.com/home-assistant/core/pull/75195 +[#75197]: https://github.com/home-assistant/core/pull/75197 +[#75198]: https://github.com/home-assistant/core/pull/75198 +[#75199]: https://github.com/home-assistant/core/pull/75199 +[#75202]: https://github.com/home-assistant/core/pull/75202 +[#75203]: https://github.com/home-assistant/core/pull/75203 +[#75204]: https://github.com/home-assistant/core/pull/75204 +[#75206]: https://github.com/home-assistant/core/pull/75206 +[#75209]: https://github.com/home-assistant/core/pull/75209 +[#75211]: https://github.com/home-assistant/core/pull/75211 +[#75212]: https://github.com/home-assistant/core/pull/75212 +[#75213]: https://github.com/home-assistant/core/pull/75213 +[#75214]: https://github.com/home-assistant/core/pull/75214 +[#75215]: https://github.com/home-assistant/core/pull/75215 +[#75218]: https://github.com/home-assistant/core/pull/75218 +[#75229]: https://github.com/home-assistant/core/pull/75229 +[#75250]: https://github.com/home-assistant/core/pull/75250 +[#75253]: https://github.com/home-assistant/core/pull/75253 +[#75261]: https://github.com/home-assistant/core/pull/75261 +[#75271]: https://github.com/home-assistant/core/pull/75271 +[#75273]: https://github.com/home-assistant/core/pull/75273 +[#75274]: https://github.com/home-assistant/core/pull/75274 +[#75276]: https://github.com/home-assistant/core/pull/75276 +[#75297]: https://github.com/home-assistant/core/pull/75297 +[#75300]: https://github.com/home-assistant/core/pull/75300 +[#75302]: https://github.com/home-assistant/core/pull/75302 +[#75303]: https://github.com/home-assistant/core/pull/75303 +[#75304]: https://github.com/home-assistant/core/pull/75304 +[#75307]: https://github.com/home-assistant/core/pull/75307 +[#75322]: https://github.com/home-assistant/core/pull/75322 +[#75325]: https://github.com/home-assistant/core/pull/75325 +[#75331]: https://github.com/home-assistant/core/pull/75331 +[#75333]: https://github.com/home-assistant/core/pull/75333 +[#75334]: https://github.com/home-assistant/core/pull/75334 +[#75337]: https://github.com/home-assistant/core/pull/75337 +[#75341]: https://github.com/home-assistant/core/pull/75341 +[#75344]: https://github.com/home-assistant/core/pull/75344 +[#75348]: https://github.com/home-assistant/core/pull/75348 +[#75350]: https://github.com/home-assistant/core/pull/75350 +[#75357]: https://github.com/home-assistant/core/pull/75357 +[#75358]: https://github.com/home-assistant/core/pull/75358 +[#75359]: https://github.com/home-assistant/core/pull/75359 +[#75364]: https://github.com/home-assistant/core/pull/75364 +[#75369]: https://github.com/home-assistant/core/pull/75369 +[#75375]: https://github.com/home-assistant/core/pull/75375 +[#75377]: https://github.com/home-assistant/core/pull/75377 +[#75378]: https://github.com/home-assistant/core/pull/75378 +[#75379]: https://github.com/home-assistant/core/pull/75379 +[#75381]: https://github.com/home-assistant/core/pull/75381 +[#75382]: https://github.com/home-assistant/core/pull/75382 +[#75384]: https://github.com/home-assistant/core/pull/75384 +[#75385]: https://github.com/home-assistant/core/pull/75385 +[#75395]: https://github.com/home-assistant/core/pull/75395 +[#75396]: https://github.com/home-assistant/core/pull/75396 +[#75397]: https://github.com/home-assistant/core/pull/75397 +[#75401]: https://github.com/home-assistant/core/pull/75401 +[#75402]: https://github.com/home-assistant/core/pull/75402 +[#75404]: https://github.com/home-assistant/core/pull/75404 +[#75410]: https://github.com/home-assistant/core/pull/75410 +[#75415]: https://github.com/home-assistant/core/pull/75415 +[#75416]: https://github.com/home-assistant/core/pull/75416 +[#75418]: https://github.com/home-assistant/core/pull/75418 +[#75419]: https://github.com/home-assistant/core/pull/75419 +[#75421]: https://github.com/home-assistant/core/pull/75421 +[#75422]: https://github.com/home-assistant/core/pull/75422 +[#75423]: https://github.com/home-assistant/core/pull/75423 +[#75427]: https://github.com/home-assistant/core/pull/75427 +[#75430]: https://github.com/home-assistant/core/pull/75430 +[#75432]: https://github.com/home-assistant/core/pull/75432 +[#75436]: https://github.com/home-assistant/core/pull/75436 +[#75439]: https://github.com/home-assistant/core/pull/75439 +[#75441]: https://github.com/home-assistant/core/pull/75441 +[#75443]: https://github.com/home-assistant/core/pull/75443 +[#75447]: https://github.com/home-assistant/core/pull/75447 +[#75450]: https://github.com/home-assistant/core/pull/75450 +[#75451]: https://github.com/home-assistant/core/pull/75451 +[#75452]: https://github.com/home-assistant/core/pull/75452 +[#75453]: https://github.com/home-assistant/core/pull/75453 +[#75454]: https://github.com/home-assistant/core/pull/75454 +[#75455]: https://github.com/home-assistant/core/pull/75455 +[#75456]: https://github.com/home-assistant/core/pull/75456 +[#75457]: https://github.com/home-assistant/core/pull/75457 +[#75459]: https://github.com/home-assistant/core/pull/75459 +[#75461]: https://github.com/home-assistant/core/pull/75461 +[#75462]: https://github.com/home-assistant/core/pull/75462 +[#75464]: https://github.com/home-assistant/core/pull/75464 +[#75467]: https://github.com/home-assistant/core/pull/75467 +[#75468]: https://github.com/home-assistant/core/pull/75468 +[#75472]: https://github.com/home-assistant/core/pull/75472 +[#75473]: https://github.com/home-assistant/core/pull/75473 +[#75475]: https://github.com/home-assistant/core/pull/75475 +[#75476]: https://github.com/home-assistant/core/pull/75476 +[#75477]: https://github.com/home-assistant/core/pull/75477 +[#75482]: https://github.com/home-assistant/core/pull/75482 +[#75483]: https://github.com/home-assistant/core/pull/75483 +[#75484]: https://github.com/home-assistant/core/pull/75484 +[#75486]: https://github.com/home-assistant/core/pull/75486 +[#75489]: https://github.com/home-assistant/core/pull/75489 +[#75492]: https://github.com/home-assistant/core/pull/75492 +[#75494]: https://github.com/home-assistant/core/pull/75494 +[#75501]: https://github.com/home-assistant/core/pull/75501 +[#75502]: https://github.com/home-assistant/core/pull/75502 +[#75505]: https://github.com/home-assistant/core/pull/75505 +[#75508]: https://github.com/home-assistant/core/pull/75508 +[#75513]: https://github.com/home-assistant/core/pull/75513 +[#75531]: https://github.com/home-assistant/core/pull/75531 +[#75536]: https://github.com/home-assistant/core/pull/75536 +[#75539]: https://github.com/home-assistant/core/pull/75539 +[#75540]: https://github.com/home-assistant/core/pull/75540 +[#75541]: https://github.com/home-assistant/core/pull/75541 +[#75546]: https://github.com/home-assistant/core/pull/75546 +[#75556]: https://github.com/home-assistant/core/pull/75556 +[#75557]: https://github.com/home-assistant/core/pull/75557 +[#75560]: https://github.com/home-assistant/core/pull/75560 +[#75562]: https://github.com/home-assistant/core/pull/75562 +[#75567]: https://github.com/home-assistant/core/pull/75567 +[#75572]: https://github.com/home-assistant/core/pull/75572 +[#75573]: https://github.com/home-assistant/core/pull/75573 +[#75579]: https://github.com/home-assistant/core/pull/75579 +[#75581]: https://github.com/home-assistant/core/pull/75581 +[#75582]: https://github.com/home-assistant/core/pull/75582 +[#75591]: https://github.com/home-assistant/core/pull/75591 +[#75594]: https://github.com/home-assistant/core/pull/75594 +[#75599]: https://github.com/home-assistant/core/pull/75599 +[#75600]: https://github.com/home-assistant/core/pull/75600 +[#75614]: https://github.com/home-assistant/core/pull/75614 +[#75615]: https://github.com/home-assistant/core/pull/75615 +[#75617]: https://github.com/home-assistant/core/pull/75617 +[#75618]: https://github.com/home-assistant/core/pull/75618 +[#75626]: https://github.com/home-assistant/core/pull/75626 +[#75627]: https://github.com/home-assistant/core/pull/75627 +[#75629]: https://github.com/home-assistant/core/pull/75629 +[#75630]: https://github.com/home-assistant/core/pull/75630 +[#75631]: https://github.com/home-assistant/core/pull/75631 +[#75635]: https://github.com/home-assistant/core/pull/75635 +[#75636]: https://github.com/home-assistant/core/pull/75636 +[#75637]: https://github.com/home-assistant/core/pull/75637 +[#75638]: https://github.com/home-assistant/core/pull/75638 +[#75642]: https://github.com/home-assistant/core/pull/75642 +[#75643]: https://github.com/home-assistant/core/pull/75643 +[#75644]: https://github.com/home-assistant/core/pull/75644 +[#75645]: https://github.com/home-assistant/core/pull/75645 +[#75646]: https://github.com/home-assistant/core/pull/75646 +[#75647]: https://github.com/home-assistant/core/pull/75647 +[#75648]: https://github.com/home-assistant/core/pull/75648 +[#75649]: https://github.com/home-assistant/core/pull/75649 +[#75654]: https://github.com/home-assistant/core/pull/75654 +[#75658]: https://github.com/home-assistant/core/pull/75658 +[#75660]: https://github.com/home-assistant/core/pull/75660 +[#75662]: https://github.com/home-assistant/core/pull/75662 +[#75665]: https://github.com/home-assistant/core/pull/75665 +[#75666]: https://github.com/home-assistant/core/pull/75666 +[#75671]: https://github.com/home-assistant/core/pull/75671 +[#75675]: https://github.com/home-assistant/core/pull/75675 +[#75677]: https://github.com/home-assistant/core/pull/75677 +[#75686]: https://github.com/home-assistant/core/pull/75686 +[#75687]: https://github.com/home-assistant/core/pull/75687 +[#75690]: https://github.com/home-assistant/core/pull/75690 +[#75691]: https://github.com/home-assistant/core/pull/75691 +[#75692]: https://github.com/home-assistant/core/pull/75692 +[#75699]: https://github.com/home-assistant/core/pull/75699 +[#75701]: https://github.com/home-assistant/core/pull/75701 +[#75705]: https://github.com/home-assistant/core/pull/75705 +[#75719]: https://github.com/home-assistant/core/pull/75719 +[#75721]: https://github.com/home-assistant/core/pull/75721 +[#75726]: https://github.com/home-assistant/core/pull/75726 +[#75730]: https://github.com/home-assistant/core/pull/75730 +[#75734]: https://github.com/home-assistant/core/pull/75734 +[#75736]: https://github.com/home-assistant/core/pull/75736 +[#75737]: https://github.com/home-assistant/core/pull/75737 +[#75743]: https://github.com/home-assistant/core/pull/75743 +[#75744]: https://github.com/home-assistant/core/pull/75744 +[#75748]: https://github.com/home-assistant/core/pull/75748 +[#75749]: https://github.com/home-assistant/core/pull/75749 +[#75752]: https://github.com/home-assistant/core/pull/75752 +[#75754]: https://github.com/home-assistant/core/pull/75754 +[#75756]: https://github.com/home-assistant/core/pull/75756 +[#75757]: https://github.com/home-assistant/core/pull/75757 +[#75760]: https://github.com/home-assistant/core/pull/75760 +[#75761]: https://github.com/home-assistant/core/pull/75761 +[#75762]: https://github.com/home-assistant/core/pull/75762 +[#75767]: https://github.com/home-assistant/core/pull/75767 +[#75771]: https://github.com/home-assistant/core/pull/75771 +[#75772]: https://github.com/home-assistant/core/pull/75772 +[#75774]: https://github.com/home-assistant/core/pull/75774 +[#75776]: https://github.com/home-assistant/core/pull/75776 +[#75779]: https://github.com/home-assistant/core/pull/75779 +[#75780]: https://github.com/home-assistant/core/pull/75780 +[#75783]: https://github.com/home-assistant/core/pull/75783 +[#75784]: https://github.com/home-assistant/core/pull/75784 +[#75785]: https://github.com/home-assistant/core/pull/75785 +[#75793]: https://github.com/home-assistant/core/pull/75793 +[#75798]: https://github.com/home-assistant/core/pull/75798 +[#75802]: https://github.com/home-assistant/core/pull/75802 +[#75805]: https://github.com/home-assistant/core/pull/75805 +[#75807]: https://github.com/home-assistant/core/pull/75807 +[#75810]: https://github.com/home-assistant/core/pull/75810 +[#75813]: https://github.com/home-assistant/core/pull/75813 +[#75815]: https://github.com/home-assistant/core/pull/75815 +[#75816]: https://github.com/home-assistant/core/pull/75816 +[#75817]: https://github.com/home-assistant/core/pull/75817 +[@0bmay]: https://github.com/0bmay +[@AngellusMortis]: https://github.com/AngellusMortis +[@BraveChicken1]: https://github.com/BraveChicken1 +[@Bre77]: https://github.com/Bre77 +[@BrianWithAHat]: https://github.com/BrianWithAHat +[@DCSBL]: https://github.com/DCSBL +[@DeerMaximum]: https://github.com/DeerMaximum +[@EnochPrime]: https://github.com/EnochPrime +[@EverythingSmartHome]: https://github.com/EverythingSmartHome +[@Hyralex]: https://github.com/Hyralex +[@J3173]: https://github.com/J3173 +[@Jc2k]: https://github.com/Jc2k +[@KJonline]: https://github.com/KJonline +[@Kane610]: https://github.com/Kane610 +[@Lerosen]: https://github.com/Lerosen +[@MartinHjelmare]: https://github.com/MartinHjelmare +[@Noltari]: https://github.com/Noltari +[@OnFreund]: https://github.com/OnFreund +[@R0nd]: https://github.com/R0nd +[@Shutgun]: https://github.com/Shutgun +[@TheJulianJES]: https://github.com/TheJulianJES +[@Tho85]: https://github.com/Tho85 +[@a-p-z]: https://github.com/a-p-z +[@albertogeniola]: https://github.com/albertogeniola +[@allenporter]: https://github.com/allenporter +[@arychj]: https://github.com/arychj +[@atlflyer]: https://github.com/atlflyer +[@avee87]: https://github.com/avee87 +[@bachya]: https://github.com/bachya +[@balloob]: https://github.com/balloob +[@barshow]: https://github.com/barshow +[@bdr99]: https://github.com/bdr99 +[@bdraco]: https://github.com/bdraco +[@bieniu]: https://github.com/bieniu +[@bouwew]: https://github.com/bouwew +[@bramkragten]: https://github.com/bramkragten +[@cdce8p]: https://github.com/cdce8p +[@cgtobi]: https://github.com/cgtobi +[@chatziko]: https://github.com/chatziko +[@ctalkington]: https://github.com/ctalkington +[@danaues]: https://github.com/danaues +[@davet2001]: https://github.com/davet2001 +[@dgomes]: https://github.com/dgomes +[@dmulcahey]: https://github.com/dmulcahey +[@drthanwho]: https://github.com/drthanwho +[@eifinger]: https://github.com/eifinger +[@elupus]: https://github.com/elupus +[@emontnemery]: https://github.com/emontnemery +[@engrbm87]: https://github.com/engrbm87 +[@epenet]: https://github.com/epenet +[@farmio]: https://github.com/farmio +[@frenck]: https://github.com/frenck +[@gjohansson-ST]: https://github.com/gjohansson-ST +[@gwww]: https://github.com/gwww +[@hahn-th]: https://github.com/hahn-th +[@jbouwh]: https://github.com/jbouwh +[@jeeftor]: https://github.com/jeeftor +[@jfhenriques]: https://github.com/jfhenriques +[@jfroy]: https://github.com/jfroy +[@jjlawren]: https://github.com/jjlawren +[@kroimon]: https://github.com/kroimon +[@ludeeus]: https://github.com/ludeeus +[@matrixd2]: https://github.com/matrixd2 +[@mbo18]: https://github.com/mbo18 +[@mib1185]: https://github.com/mib1185 +[@mkmer]: https://github.com/mkmer +[@murtas]: https://github.com/murtas +[@mvdwetering]: https://github.com/mvdwetering +[@pedrolamas]: https://github.com/pedrolamas +[@peterg79]: https://github.com/peterg79 +[@puddly]: https://github.com/puddly +[@qiz-li]: https://github.com/qiz-li +[@rappenze]: https://github.com/rappenze +[@rdeveen]: https://github.com/rdeveen +[@rikroe]: https://github.com/rikroe +[@riokuu]: https://github.com/riokuu +[@rytilahti]: https://github.com/rytilahti +[@scop]: https://github.com/scop +[@simeon-simsoft]: https://github.com/simeon-simsoft +[@slovdahl]: https://github.com/slovdahl +[@starkillerOG]: https://github.com/starkillerOG +[@stegm]: https://github.com/stegm +[@titilambert]: https://github.com/titilambert +[@tkdrob]: https://github.com/tkdrob +[@uvjustin]: https://github.com/uvjustin +[@wlcrs]: https://github.com/wlcrs +[@yozik04]: https://github.com/yozik04 +[@zachberger]: https://github.com/zachberger +[@zsarnett]: https://github.com/zsarnett +[accuweather docs]: https://www.home-assistant.io/integrations/accuweather/ +[adguard docs]: https://www.home-assistant.io/integrations/adguard/ +[advantage_air docs]: https://www.home-assistant.io/integrations/advantage_air/ +[airly docs]: https://www.home-assistant.io/integrations/airly/ +[airvisual docs]: https://www.home-assistant.io/integrations/airvisual/ +[airzone docs]: https://www.home-assistant.io/integrations/airzone/ +[aladdin_connect docs]: https://www.home-assistant.io/integrations/aladdin_connect/ +[alexa docs]: https://www.home-assistant.io/integrations/alexa/ +[ambee docs]: https://www.home-assistant.io/integrations/ambee/ +[ambient_station docs]: https://www.home-assistant.io/integrations/ambient_station/ +[androidtv docs]: https://www.home-assistant.io/integrations/androidtv/ +[anthemav docs]: https://www.home-assistant.io/integrations/anthemav/ +[aussie_broadband docs]: https://www.home-assistant.io/integrations/aussie_broadband/ +[auth docs]: https://www.home-assistant.io/integrations/auth/ +[awair docs]: https://www.home-assistant.io/integrations/awair/ +[axis docs]: https://www.home-assistant.io/integrations/axis/ +[baf docs]: https://www.home-assistant.io/integrations/baf/ +[blebox docs]: https://www.home-assistant.io/integrations/blebox/ +[blueprint docs]: https://www.home-assistant.io/integrations/blueprint/ +[bluetooth docs]: https://www.home-assistant.io/integrations/bluetooth/ +[bluetooth_le_tracker docs]: https://www.home-assistant.io/integrations/bluetooth_le_tracker/ +[bmw_connected_drive docs]: https://www.home-assistant.io/integrations/bmw_connected_drive/ +[bond docs]: https://www.home-assistant.io/integrations/bond/ +[braviatv docs]: https://www.home-assistant.io/integrations/braviatv/ +[brother docs]: https://www.home-assistant.io/integrations/brother/ +[calendar docs]: https://www.home-assistant.io/integrations/calendar/ +[camera docs]: https://www.home-assistant.io/integrations/camera/ +[canary docs]: https://www.home-assistant.io/integrations/canary/ +[cast docs]: https://www.home-assistant.io/integrations/cast/ +[climacell docs]: https://www.home-assistant.io/integrations/climacell/ +[climate docs]: https://www.home-assistant.io/integrations/climate/ +[cloud docs]: https://www.home-assistant.io/integrations/cloud/ +[co2signal docs]: https://www.home-assistant.io/integrations/co2signal/ +[command_line docs]: https://www.home-assistant.io/integrations/command_line/ +[compensation docs]: https://www.home-assistant.io/integrations/compensation/ +[config docs]: https://www.home-assistant.io/integrations/config/ +[conversation docs]: https://www.home-assistant.io/integrations/conversation/ +[cpuspeed docs]: https://www.home-assistant.io/integrations/cpuspeed/ +[debugpy docs]: https://www.home-assistant.io/integrations/debugpy/ +[deconz docs]: https://www.home-assistant.io/integrations/deconz/ +[default_config docs]: https://www.home-assistant.io/integrations/default_config/ +[deluge docs]: https://www.home-assistant.io/integrations/deluge/ +[demo docs]: https://www.home-assistant.io/integrations/demo/ +[denonavr docs]: https://www.home-assistant.io/integrations/denonavr/ +[device_automation docs]: https://www.home-assistant.io/integrations/device_automation/ +[device_tracker docs]: https://www.home-assistant.io/integrations/device_tracker/ +[devolo_home_control docs]: https://www.home-assistant.io/integrations/devolo_home_control/ +[devolo_home_network docs]: https://www.home-assistant.io/integrations/devolo_home_network/ +[discovery docs]: https://www.home-assistant.io/integrations/discovery/ +[dnsip docs]: https://www.home-assistant.io/integrations/dnsip/ +[dsmr docs]: https://www.home-assistant.io/integrations/dsmr/ +[elgato docs]: https://www.home-assistant.io/integrations/elgato/ +[elkm1 docs]: https://www.home-assistant.io/integrations/elkm1/ +[elmax docs]: https://www.home-assistant.io/integrations/elmax/ +[energy docs]: https://www.home-assistant.io/integrations/energy/ +[environment_canada docs]: https://www.home-assistant.io/integrations/environment_canada/ +[eq3btsmart docs]: https://www.home-assistant.io/integrations/eq3btsmart/ +[esphome docs]: https://www.home-assistant.io/integrations/esphome/ +[evohome docs]: https://www.home-assistant.io/integrations/evohome/ +[feedreader docs]: https://www.home-assistant.io/integrations/feedreader/ +[fibaro docs]: https://www.home-assistant.io/integrations/fibaro/ +[filesize docs]: https://www.home-assistant.io/integrations/filesize/ +[fjaraskupan docs]: https://www.home-assistant.io/integrations/fjaraskupan/ +[flo docs]: https://www.home-assistant.io/integrations/flo/ +[flunearyou docs]: https://www.home-assistant.io/integrations/flunearyou/ +[flux_led docs]: https://www.home-assistant.io/integrations/flux_led/ +[forecast_solar docs]: https://www.home-assistant.io/integrations/forecast_solar/ +[fritz docs]: https://www.home-assistant.io/integrations/fritz/ +[fronius docs]: https://www.home-assistant.io/integrations/fronius/ +[frontend docs]: https://www.home-assistant.io/integrations/frontend/ +[frontier_silicon docs]: https://www.home-assistant.io/integrations/frontier_silicon/ +[gdacs docs]: https://www.home-assistant.io/integrations/gdacs/ +[generic docs]: https://www.home-assistant.io/integrations/generic/ +[geo_json_events docs]: https://www.home-assistant.io/integrations/geo_json_events/ +[geo_location docs]: https://www.home-assistant.io/integrations/geo_location/ +[geocaching docs]: https://www.home-assistant.io/integrations/geocaching/ +[geonetnz_quakes docs]: https://www.home-assistant.io/integrations/geonetnz_quakes/ +[gios docs]: https://www.home-assistant.io/integrations/gios/ +[github docs]: https://www.home-assistant.io/integrations/github/ +[glances docs]: https://www.home-assistant.io/integrations/glances/ +[goalzero docs]: https://www.home-assistant.io/integrations/goalzero/ +[goodwe docs]: https://www.home-assistant.io/integrations/goodwe/ +[google docs]: https://www.home-assistant.io/integrations/google/ +[google_assistant docs]: https://www.home-assistant.io/integrations/google_assistant/ +[govee_ble docs]: https://www.home-assistant.io/integrations/govee_ble/ +[gpmdp docs]: https://www.home-assistant.io/integrations/gpmdp/ +[gree docs]: https://www.home-assistant.io/integrations/gree/ +[guardian docs]: https://www.home-assistant.io/integrations/guardian/ +[harmony docs]: https://www.home-assistant.io/integrations/harmony/ +[hassio docs]: https://www.home-assistant.io/integrations/hassio/ +[here_travel_time docs]: https://www.home-assistant.io/integrations/here_travel_time/ +[hive docs]: https://www.home-assistant.io/integrations/hive/ +[home_connect docs]: https://www.home-assistant.io/integrations/home_connect/ +[home_plus_control docs]: https://www.home-assistant.io/integrations/home_plus_control/ +[homekit docs]: https://www.home-assistant.io/integrations/homekit/ +[homekit_controller docs]: https://www.home-assistant.io/integrations/homekit_controller/ +[homematicip_cloud docs]: https://www.home-assistant.io/integrations/homematicip_cloud/ +[homewizard docs]: https://www.home-assistant.io/integrations/homewizard/ +[http docs]: https://www.home-assistant.io/integrations/http/ +[huawei_lte docs]: https://www.home-assistant.io/integrations/huawei_lte/ +[icloud docs]: https://www.home-assistant.io/integrations/icloud/ +[ign_sismologia docs]: https://www.home-assistant.io/integrations/ign_sismologia/ +[influxdb docs]: https://www.home-assistant.io/integrations/influxdb/ +[inkbird docs]: https://www.home-assistant.io/integrations/inkbird/ +[input_datetime docs]: https://www.home-assistant.io/integrations/input_datetime/ +[intellifire docs]: https://www.home-assistant.io/integrations/intellifire/ +[iqvia docs]: https://www.home-assistant.io/integrations/iqvia/ +[izone docs]: https://www.home-assistant.io/integrations/izone/ +[knx docs]: https://www.home-assistant.io/integrations/knx/ +[konnected docs]: https://www.home-assistant.io/integrations/konnected/ +[kostal_plenticore docs]: https://www.home-assistant.io/integrations/kostal_plenticore/ +[life360 docs]: https://www.home-assistant.io/integrations/life360/ +[lifx docs]: https://www.home-assistant.io/integrations/lifx/ +[litterrobot docs]: https://www.home-assistant.io/integrations/litterrobot/ +[logbook docs]: https://www.home-assistant.io/integrations/logbook/ +[london_underground docs]: https://www.home-assistant.io/integrations/london_underground/ +[lovelace docs]: https://www.home-assistant.io/integrations/lovelace/ +[luftdaten docs]: https://www.home-assistant.io/integrations/luftdaten/ +[lutron docs]: https://www.home-assistant.io/integrations/lutron/ +[lutron_caseta docs]: https://www.home-assistant.io/integrations/lutron_caseta/ +[lyric docs]: https://www.home-assistant.io/integrations/lyric/ +[matrix docs]: https://www.home-assistant.io/integrations/matrix/ +[mazda docs]: https://www.home-assistant.io/integrations/mazda/ +[media_player docs]: https://www.home-assistant.io/integrations/media_player/ +[melcloud docs]: https://www.home-assistant.io/integrations/melcloud/ +[met docs]: https://www.home-assistant.io/integrations/met/ +[meteo_france docs]: https://www.home-assistant.io/integrations/meteo_france/ +[metoffice docs]: https://www.home-assistant.io/integrations/metoffice/ +[miflora docs]: https://www.home-assistant.io/integrations/miflora/ +[mikrotik docs]: https://www.home-assistant.io/integrations/mikrotik/ +[minecraft_server docs]: https://www.home-assistant.io/integrations/minecraft_server/ +[mitemp_bt docs]: https://www.home-assistant.io/integrations/mitemp_bt/ +[mjpeg docs]: https://www.home-assistant.io/integrations/mjpeg/ +[moat docs]: https://www.home-assistant.io/integrations/moat/ +[moon docs]: https://www.home-assistant.io/integrations/moon/ +[motion_blinds docs]: https://www.home-assistant.io/integrations/motion_blinds/ +[mqtt docs]: https://www.home-assistant.io/integrations/mqtt/ +[nam docs]: https://www.home-assistant.io/integrations/nam/ +[nest docs]: https://www.home-assistant.io/integrations/nest/ +[netatmo docs]: https://www.home-assistant.io/integrations/netatmo/ +[netgear docs]: https://www.home-assistant.io/integrations/netgear/ +[network docs]: https://www.home-assistant.io/integrations/network/ +[nexia docs]: https://www.home-assistant.io/integrations/nexia/ +[nextdns docs]: https://www.home-assistant.io/integrations/nextdns/ +[nilu docs]: https://www.home-assistant.io/integrations/nilu/ +[nina docs]: https://www.home-assistant.io/integrations/nina/ +[notion docs]: https://www.home-assistant.io/integrations/notion/ +[nsw_rural_fire_service_feed docs]: https://www.home-assistant.io/integrations/nsw_rural_fire_service_feed/ +[number docs]: https://www.home-assistant.io/integrations/number/ +[nzbget docs]: https://www.home-assistant.io/integrations/nzbget/ +[omnilogic docs]: https://www.home-assistant.io/integrations/omnilogic/ +[onvif docs]: https://www.home-assistant.io/integrations/onvif/ +[open_meteo docs]: https://www.home-assistant.io/integrations/open_meteo/ +[openalpr_local docs]: https://www.home-assistant.io/integrations/openalpr_local/ +[opencv docs]: https://www.home-assistant.io/integrations/opencv/ +[openuv docs]: https://www.home-assistant.io/integrations/openuv/ +[philips_js docs]: https://www.home-assistant.io/integrations/philips_js/ +[pilight docs]: https://www.home-assistant.io/integrations/pilight/ +[plex docs]: https://www.home-assistant.io/integrations/plex/ +[plugwise docs]: https://www.home-assistant.io/integrations/plugwise/ +[profiler docs]: https://www.home-assistant.io/integrations/profiler/ +[pvoutput docs]: https://www.home-assistant.io/integrations/pvoutput/ +[qld_bushfire docs]: https://www.home-assistant.io/integrations/qld_bushfire/ +[qnap_qsw docs]: https://www.home-assistant.io/integrations/qnap_qsw/ +[quantum_gateway docs]: https://www.home-assistant.io/integrations/quantum_gateway/ +[radio_browser docs]: https://www.home-assistant.io/integrations/radio_browser/ +[radiotherm docs]: https://www.home-assistant.io/integrations/radiotherm/ +[rainmachine docs]: https://www.home-assistant.io/integrations/rainmachine/ +[rdw docs]: https://www.home-assistant.io/integrations/rdw/ +[recollect_waste docs]: https://www.home-assistant.io/integrations/recollect_waste/ +[recorder docs]: https://www.home-assistant.io/integrations/recorder/ +[renault docs]: https://www.home-assistant.io/integrations/renault/ +[repairs docs]: https://www.home-assistant.io/integrations/repairs/ +[resolution_center docs]: https://www.home-assistant.io/integrations/resolution_center/ +[rfxtrx docs]: https://www.home-assistant.io/integrations/rfxtrx/ +[rhasspy docs]: https://www.home-assistant.io/integrations/rhasspy/ +[ridwell docs]: https://www.home-assistant.io/integrations/ridwell/ +[risco docs]: https://www.home-assistant.io/integrations/risco/ +[roku docs]: https://www.home-assistant.io/integrations/roku/ +[samsungtv docs]: https://www.home-assistant.io/integrations/samsungtv/ +[scrape docs]: https://www.home-assistant.io/integrations/scrape/ +[season docs]: https://www.home-assistant.io/integrations/season/ +[sensibo docs]: https://www.home-assistant.io/integrations/sensibo/ +[sensor docs]: https://www.home-assistant.io/integrations/sensor/ +[sensorpush docs]: https://www.home-assistant.io/integrations/sensorpush/ +[sentry docs]: https://www.home-assistant.io/integrations/sentry/ +[senz docs]: https://www.home-assistant.io/integrations/senz/ +[shelly docs]: https://www.home-assistant.io/integrations/shelly/ +[shodan docs]: https://www.home-assistant.io/integrations/shodan/ +[shopping_list docs]: https://www.home-assistant.io/integrations/shopping_list/ +[simplisafe docs]: https://www.home-assistant.io/integrations/simplisafe/ +[skybell docs]: https://www.home-assistant.io/integrations/skybell/ +[slimproto docs]: https://www.home-assistant.io/integrations/slimproto/ +[smartthings docs]: https://www.home-assistant.io/integrations/smartthings/ +[sochain docs]: https://www.home-assistant.io/integrations/sochain/ +[solaredge docs]: https://www.home-assistant.io/integrations/solaredge/ +[sonarr docs]: https://www.home-assistant.io/integrations/sonarr/ +[sonos docs]: https://www.home-assistant.io/integrations/sonos/ +[soundtouch docs]: https://www.home-assistant.io/integrations/soundtouch/ +[speedtestdotnet docs]: https://www.home-assistant.io/integrations/speedtestdotnet/ +[spotify docs]: https://www.home-assistant.io/integrations/spotify/ +[sql docs]: https://www.home-assistant.io/integrations/sql/ +[steam_online docs]: https://www.home-assistant.io/integrations/steam_online/ +[stookalert docs]: https://www.home-assistant.io/integrations/stookalert/ +[stream docs]: https://www.home-assistant.io/integrations/stream/ +[switchbot docs]: https://www.home-assistant.io/integrations/switchbot/ +[switchmate docs]: https://www.home-assistant.io/integrations/switchmate/ +[syncthru docs]: https://www.home-assistant.io/integrations/syncthru/ +[synology_dsm docs]: https://www.home-assistant.io/integrations/synology_dsm/ +[system_health docs]: https://www.home-assistant.io/integrations/system_health/ +[system_log docs]: https://www.home-assistant.io/integrations/system_log/ +[systemmonitor docs]: https://www.home-assistant.io/integrations/systemmonitor/ +[tailscale docs]: https://www.home-assistant.io/integrations/tailscale/ +[tasmota docs]: https://www.home-assistant.io/integrations/tasmota/ +[tautulli docs]: https://www.home-assistant.io/integrations/tautulli/ +[telegram_bot docs]: https://www.home-assistant.io/integrations/telegram_bot/ +[template docs]: https://www.home-assistant.io/integrations/template/ +[tensorflow docs]: https://www.home-assistant.io/integrations/tensorflow/ +[tile docs]: https://www.home-assistant.io/integrations/tile/ +[toon docs]: https://www.home-assistant.io/integrations/toon/ +[tplink docs]: https://www.home-assistant.io/integrations/tplink/ +[traccar docs]: https://www.home-assistant.io/integrations/traccar/ +[tractive docs]: https://www.home-assistant.io/integrations/tractive/ +[tradfri docs]: https://www.home-assistant.io/integrations/tradfri/ +[trafikverket_ferry docs]: https://www.home-assistant.io/integrations/trafikverket_ferry/ +[trafikverket_weatherstation docs]: https://www.home-assistant.io/integrations/trafikverket_weatherstation/ +[trend docs]: https://www.home-assistant.io/integrations/trend/ +[tuya docs]: https://www.home-assistant.io/integrations/tuya/ +[twentemilieu docs]: https://www.home-assistant.io/integrations/twentemilieu/ +[unifi docs]: https://www.home-assistant.io/integrations/unifi/ +[unifiprotect docs]: https://www.home-assistant.io/integrations/unifiprotect/ +[upb docs]: https://www.home-assistant.io/integrations/upb/ +[uptime docs]: https://www.home-assistant.io/integrations/uptime/ +[usb docs]: https://www.home-assistant.io/integrations/usb/ +[uscis docs]: https://www.home-assistant.io/integrations/uscis/ +[usgs_earthquakes_feed docs]: https://www.home-assistant.io/integrations/usgs_earthquakes_feed/ +[vallox docs]: https://www.home-assistant.io/integrations/vallox/ +[verisure docs]: https://www.home-assistant.io/integrations/verisure/ +[wake_on_lan docs]: https://www.home-assistant.io/integrations/wake_on_lan/ +[wallbox docs]: https://www.home-assistant.io/integrations/wallbox/ +[watttime docs]: https://www.home-assistant.io/integrations/watttime/ +[weather docs]: https://www.home-assistant.io/integrations/weather/ +[webhook docs]: https://www.home-assistant.io/integrations/webhook/ +[websocket_api docs]: https://www.home-assistant.io/integrations/websocket_api/ +[whois docs]: https://www.home-assistant.io/integrations/whois/ +[withings docs]: https://www.home-assistant.io/integrations/withings/ +[wiz docs]: https://www.home-assistant.io/integrations/wiz/ +[wled docs]: https://www.home-assistant.io/integrations/wled/ +[xbox docs]: https://www.home-assistant.io/integrations/xbox/ +[xiaomi_ble docs]: https://www.home-assistant.io/integrations/xiaomi_ble/ +[xiaomi_miio docs]: https://www.home-assistant.io/integrations/xiaomi_miio/ +[yale_smart_alarm docs]: https://www.home-assistant.io/integrations/yale_smart_alarm/ +[yolink docs]: https://www.home-assistant.io/integrations/yolink/ +[zeroconf docs]: https://www.home-assistant.io/integrations/zeroconf/ +[zha docs]: https://www.home-assistant.io/integrations/zha/ +[zwave_js docs]: https://www.home-assistant.io/integrations/zwave_js/ +[zwave_me docs]: https://www.home-assistant.io/integrations/zwave_me/ diff --git a/source/images/blog/2022-08/social.png b/source/images/blog/2022-08/social.png new file mode 100644 index 0000000000000000000000000000000000000000..09fe86e356f6dfdcd38949f90f092c8208299de6 GIT binary patch literal 186724 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ౘmKCsUgI&r#H;-PGjR)Zn-^K#?txq=l{S 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 YQm_$qan8T#ybSb^54s+>O$