Remove Yahoo Weather integration (#13114)

This commit is contained in:
Franck Nijhof 2020-04-21 19:11:38 +02:00 committed by GitHub
parent a2f5019791
commit 8f6cff22b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 18 additions and 147 deletions

View File

@ -1,113 +0,0 @@
---
title: Yahoo Weather
description: Instructions on how to integrate Yahoo Weather within Home Assistant.
ha_category:
- Weather
- Sensor
ha_release: 0.24
ha_iot_class: Cloud Polling
ha_domain: yweather
---
<div class='note warning'>
The Yahoo Weather API is being [retired](https://developer.yahoo.com/weather/?guccounter=1). A replacement is the [`OpenWeatherMap` integration](/integrations/openweathermap).
</div>
The `yweather` platform uses [Yahoo Weather](https://www.yahoo.com/news/weather/) as a source for current meteorological data. The `forecast` will show you the condition for 5 days, 0 is the current day. You can use only `weather`, `temp_min`, and `temp_max` with forecast. It's important to note that a yweather sensor will only show ONE days forecast at a time so to show multiple days forecasts, you will need to use the 'name:' option and give each sensor a unique name.
<div class='note warning'>
Use of the Yahoo Weather API should not exceed reasonable request volume. Access is limited to 2000 signed calls per day.
</div>
The `woeid` (Where On Earth ID) for your location, as shown in the example below. You can find your WOEID by copying the numeric digits at the end of the URL for your location at [Yahoo Weather](https://www.yahoo.com/news/weather/). If you don't add a WOEID it is generated from Home Assistant's latitude and longitude.
To add Yahoo Weather to your installation, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
sensor:
- platform: yweather
monitored_conditions:
- weather
- weather_current
- temp_min
- temp_max
- wind_speed
- pressure
- visibility
- humidity
- temperature
```
{% configuration %}
woeid:
required: false
description: See above.
type: string
default: "Defaults to a WOEID generated from coordinates defined in your `configuration.yaml` file."
forecast:
required: false
description: Day of forecast. The default is the current day to display conditions.
type: integer
default: 0
name:
required: false
description: "The name of the sensor. To easily recognize each sensor when adding more than one Yahoo weather sensor, it is recommended to use the name option."
type: string
default: "`Yweather`"
monitored_conditions:
required: true
description: Conditions to display in the frontend.
type: list
keys:
weather:
description: A human-readable text summary with picture from yahoo.
weather_current:
description: A human-readable text summary with picture from yahoo from current condition.
temperature:
description: The current temperature.
temp_min:
description: The minimal temperature of this day.
temp_max:
description: The maximum temperature of this day.
wind_speed:
description: The wind speed.
humidity:
description: The relative humidity.
pressure:
description: The sea-level air pressure in millibars.
visibility:
description: The average visibility.
{% endconfiguration %}
Example of forecast using multiple days. In example, first sensor shows tomorrow's forecast, second sensor shows the next day and so on:
```yaml
# Example configuration.yaml entry
sensor:
- platform: yweather
forecast: 1
name: yw_day1
monitored_conditions:
- weather
- temp_min
- temp_max
- platform: yweather
forecast: 2
name: yw_day2
monitored_conditions:
- weather
- temp_min
- temp_max
- platform: yweather
forecast: 3
name: yw_day3
monitored_conditions:
- weather
- temp_min
- temp_max
```
Details about the API are available in the [Yahoo! Developer Network](https://developer.yahoo.com/weather/).

View File

@ -21,10 +21,10 @@ hass --script db_migrator --config /path/to/config
You can omit the `--config` option if you use the default configuration directory. Run the script with `--help` to get more options.
<img src='/images/supported_brands/yahooweather.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/joaoapps_join.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='https://brands.home-assistant.io/knx/logo.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/tp-link.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' />
<img src='/images/supported_brands/joaoapps_join.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='https://brands.home-assistant.io/knx/logo.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/tp-link.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' />
- Config: Improved support for storing [secrets][secrets] ([@kellerza])
- Sensor: Support for [Yahoo! Weather][yahoo-weather] ([@pvizeli])
- Sensor: Support for Yahoo! Weather ([@pvizeli])
- Add scripts to command line to expose advanced options ([@balloob])
- Alarm: [SimpliSafe][simplisafe] is now supported ([@w1ll1am23])
- Core: Switch to SQLAlchemy for the Recorder component ([@rhooper])
@ -92,6 +92,5 @@ Quick hot fix after we found a bug in the migrator where it wouldn't work with a
[Telegram]: /integrations/telegram
[TPLink]: /integrations/tplink
[Verisure]: /integrations/verisure
[yahoo-weather]: /integrations/yweather
[Z-Wave]: /integrations/zwave/
[RFXtrx]: /integrations/rfxtrx/

View File

@ -197,7 +197,7 @@ automation:
- update to pywebpush 1.0.4 which allows install on system with openssl-1.1.0 (cryptography dep) ([@perosb] - [#7915]) ([notify.html5 docs])
- Do not call update() in constructor ([@fabaff] - [#7917]) ([sensor.dte_energy_bridge docs]) ([sensor.dublin_bus_transport docs]) ([sensor.dweet docs]) ([sensor.ebox docs]) ([sensor.ecobee docs]) ([sensor.hddtemp docs]) ([sensor.mold_indicator docs]) ([sensor.pi_hole docs]) (sensor.yahoo_finance docs)
- Fix changes introduced with #7917 ([@fabaff] - [#7930]) ([sensor.waqi docs])
- Do not call update() in constructor ([@fabaff] - [#7931]) ([sensor.yweather docs])
- Do not call update() in constructor ([@fabaff] - [#7931])
- Add service_url config option to volvooncall ([@palp] - [#7919]) ([volvooncall docs])
- Added 'change' field to statistics sensor ([@jminn] - [#7820]) ([sensor.statistics docs])
- add ripple sensor ([@nkgilley] - [#7935]) ([sensor.ripple docs]) (new-platform)
@ -540,7 +540,6 @@ automation:
[sensor.template docs]: /integrations/template
[sensor.waqi docs]: /integrations/waqi
[sensor.wunderground docs]: /integrations/wunderground
[sensor.yweather docs]: /integrations/yweather
[spc docs]: /integrations/spc/
[splunk docs]: /integrations/splunk/
[switch.homematic docs]: /integrations/homematic

View File

@ -127,7 +127,7 @@ amcrest:
- Fix pylint issue ([@fabaff] - [#8325]) ([snips docs])
- vsure 1.3.7 ([@persandstrom] - [#8321]) ([verisure docs])
- Update pyEmby to fix media images ([@mezz64] - [#8331]) ([media_player.emby docs])
- Partially revert #7931 ([@fabaff] - [#8326]) ([sensor.yweather docs])
- Partially revert #7931 ([@fabaff] - [#8326])
- Only allow 'tls_insecure_set()' if cert is present (fixes #8329) ([@fabaff] - [#8337]) ([mqtt docs])
- Fix issue #8285 ([@Sabesto] - [#8340]) ([modbus docs]) ([binary_sensor.modbus docs]) ([climate.flexit docs]) ([sensor.modbus docs]) ([switch.modbus docs])
- Bump dlib face_recognition to 0.2.0 ([@pvizeli] - [#8345]) ([image_processing.dlib_face_detect docs]) ([image_processing.dlib_face_identify docs])
@ -449,7 +449,6 @@ amcrest:
[sensor.otp docs]: /integrations/otp
[sensor.rflink docs]: /integrations/sensor.rflink/
[sensor.waqi docs]: /integrations/waqi
[sensor.yweather docs]: /integrations/yweather
[sensor.zha docs]: /integrations/zha
[snips docs]: /integrations/snips/
[switch.broadlink docs]: /integrations/broadlink#switch

View File

@ -120,7 +120,7 @@ conversation:
```
- Switch fritzdect: attributes have been renamed to use underscores and no capital letters ([@thomasklingbeil] - [#8436]) (breaking change)
- Yahoo Weather: no longer allow configuring forecasts but include all instead. ([@fanthos] - [#8626]) ([weather.yweather docs]) (breaking change)
- Yahoo Weather: no longer allow configuring forecasts but include all instead. ([@fanthos] - [#8626]) (breaking change)
- The Home Assistant Z-Wave Cover implementation has been updated to support the latest development version of OpenZWave. If you are currently applying a workaround to your OpenZWave installation to support the barrier command class, you'll need to make sure you update your workaround to the latest development version of OpenZWave. ([@firstof9] - [#8574]) ([cover docs]) ([cover.zwave docs]) (breaking change)
## All changes
@ -188,7 +188,7 @@ conversation:
- Fixes Fitbit sensor to report battery level with the expected device ([@tchellomello] - [#8647]) ([sensor.fitbit docs])
- Upgrade aiolifx ([@amelchio] - [#8648]) ([light.lifx docs])
- Velbus ([@thomasdelaet] - [#8076]) ([velbus docs]) ([binary_sensor.velbus docs]) ([light.velbus docs]) (new-platform)
- Yahoo Weather update, supports forecast for more days ([@fanthos] - [#8626]) ([weather.yweather docs]) (breaking change)
- Yahoo Weather update, supports forecast for more days ([@fanthos] - [#8626]) (breaking change)
- History performance improvements for single-entity requests ([@OverloadUT] - [#8632]) ([history docs])
- Add transition support to light.zha ([@jawilson] - [#8548]) ([light.zha docs])
- Add uk_transport component. ([@robmarkcole] - [#8600]) ([sensor.uk_transport docs]) (new-platform)
@ -396,7 +396,6 @@ conversation:
[switch.xiaomi docs]: /integrations/switch.xiaomi_aqara/
[switch.xiaomi_vacuum docs]: /integrations/vacuum.xiaomi_miio/
[velbus docs]: /integrations/velbus/
[weather.yweather docs]: /integrations/yweather
[wink docs]: /integrations/wink/
[xiaomi docs]: /integrations/xiaomi_aqara
[forum]: https://community.home-assistant.io/

View File

@ -136,7 +136,7 @@ vacuum:
- Polymer 2 ([@balloob] - [#8815]) ([group docs])
- geizhals sensor component ([@JulianKahnert] - [#8458]) ([sensor.geizhals docs]) (new-platform)
- Xiaomi vacuum as platform of new `vacuum` component derived from ToggleEntity, and services ([@azogue] - [#8623]) (breaking change) (new-platform)
- Update yweather.py ([@fanthos] - [#8820]) ([weather.yweather docs])
- Update yweather.py ([@fanthos] - [#8820])
- Make HA discover sabnzbd and add it to the Configurator ([@Hellowlol] - [#8634]) ([sensor.sabnzbd docs])
- Fix Dyson sensors if devices are configured without standby monitoring. Fixes #8569 ([@CharlesBlonde] - [#8826]) ([dyson docs]) ([fan.dyson docs]) ([sensor.dyson docs])
- Block dependencies that depend on enum34 ([@balloob] - [#8698])
@ -450,7 +450,6 @@ vacuum:
[vacuum.roomba docs]: /integrations/roomba
[vacuum.xiaomi docs]: /integrations/vacuum.xiaomi_miio/
[weather.buienradar docs]: /integrations/buienradar
[weather.yweather docs]: /integrations/yweather
[weather.zamg docs]: /integrations/zamg#weather
[wink docs]: /integrations/wink/
[zwave docs]: /integrations/zwave/

View File

@ -62,7 +62,7 @@ Our about screen that shows the error logs has gained a nice upgrade by [@postlu
## Release 0.58.1 - November 21
- Fix yweather ([@tinloaf] - [#10661]) ([weather.yweather docs])
- Fix yweather ([@tinloaf] - [#10661])
- Properly initialize Harmony remote ([@amelchio] - [#10665]) ([remote.harmony docs])
- Handle the new version of HydroQuebec website ([@titilambert] - [#10682])
- Fix for time_date sensor ([@etsinko] - [#10694]) ([sensor.time_date docs])
@ -168,7 +168,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Add panel build type ([@balloob] - [#10589])
- Cloud updates ([@balloob] - [#10567])
- Upgrade youtube_dl to 2017.11.15 ([@fabaff] - [#10592]) ([media_extractor docs])
- Fix Yahoo Weather icons over SSL ([@OnFreund] - [#10602]) ([sensor.yweather docs])
- Fix Yahoo Weather icons over SSL ([@OnFreund] - [#10602])
- Arlo - Fixes for updated library ([@jwillaz] - [#9892]) ([arlo docs]) ([camera.arlo docs]) ([sensor.arlo docs])
- Do not add panel from system_log ([@postlund] - [#10600]) ([system_log docs])
- Fix ValueError exception ([@ziotibia81] - [#10596]) ([sensor.modbus docs])
@ -459,7 +459,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[sensor.viaggiatreno docs]: /integrations/viaggiatreno
[sensor.vultr docs]: /integrations/vultr#sensor
[sensor.wunderground docs]: /integrations/wunderground
[sensor.yweather docs]: /integrations/yweather
[sensor.zamg docs]: /integrations/zamg#sensor
[spc docs]: /integrations/spc/
[switch.broadlink docs]: /integrations/broadlink#switch
@ -493,4 +492,3 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@titilambert]: https://github.com/titilambert
[remote.harmony docs]: /integrations/harmony
[sensor.time_date docs]: /integrations/time_date
[weather.yweather docs]: /integrations/yweather

View File

@ -119,7 +119,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Use new DoorBirdPy (v0.1.0) ([@Klikini] - [#10734]) ([doorbird docs])
- Add fan and reduce I/O calls in radiotherm ([@TD22057] - [#10437]) ([climate.radiotherm docs])
- New Hive Component / Platforms ([@Rendili] - [#9804]) ([hive docs]) ([climate.hive docs]) ([light.hive docs]) ([sensor.hive docs]) ([switch.hive docs]) (new-platform)
- Temporarily fix yahoo weather API issue and add unit test. ([@cgtobi] - [#10737]) ([sensor.yweather docs])
- Temporarily fix yahoo weather API issue and add unit test. ([@cgtobi] - [#10737])
- Google assistant climate mode fix ([@braddparker] - [#10726]) ([google_assistant.smart_home docs])
- Protect sensitive information for Amcrest cameras ([@tchellomello] - [#10569]) ([amcrest docs]) ([camera.amcrest docs]) ([sensor.amcrest docs])
- InfluxDB send retry after IOError ([@janLo] - [#10263]) ([influxdb docs])
@ -384,7 +384,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[sensor.tellstick docs]: /integrations/tellstick#sensor
[sensor.whois docs]: /integrations/whois
[sensor.wunderground docs]: /integrations/wunderground
[sensor.yweather docs]: /integrations/yweather
[shell_command docs]: /integrations/shell_command/
[shopping_list docs]: /integrations/shopping_list/
[switch.hive docs]: /integrations/hive#switch

View File

@ -196,7 +196,7 @@ Note however, that this feature was replaced by a new ignore_string config optio
- Upgrade aiohttp_cors to 0.6.0 ([@fabaff] - [#11310]) ([http docs])
- Upgrade pysnmp to 4.4.3 ([@fabaff] - [#11317]) ([device_tracker.snmp docs]) ([sensor.snmp docs]) ([switch.snmp docs])
- Upgrade luftdaten to 0.1.3 ([@fabaff] - [#11316]) ([sensor.luftdaten docs])
- Upgrade yahooweather to 0.10 ([@fabaff] - [#11309]) ([weather.yweather docs])
- Upgrade yahooweather to 0.10 ([@fabaff] - [#11309])
- Upgrade distro to 1.2.0 ([@fabaff] - [#11312]) ([updater docs])
- Upgrade python-digitalocean to 1.13.2 ([@fabaff] - [#11311]) ([digital_ocean docs])
- Upgrade youtube_dl to 2017.12.23 ([@fabaff] - [#11308]) ([media_extractor docs])
@ -325,7 +325,7 @@ Note however, that this feature was replaced by a new ignore_string config optio
- Changed device type of media player and cover to switch ([@Laqoore] - [#11483]) ([google_assistant.smart_home docs])
- Control ordering of display in history component ([@rwa] - [#11340]) ([history docs])
- Pr/11430 ([@balloob] - [#11587])
- Cast return values and add unit tests for the yahoo weather component. ([@cgtobi] - [#10699]) ([weather.yweather docs])
- Cast return values and add unit tests for the yahoo weather component. ([@cgtobi] - [#10699])
- add velux roller shutter to tahoma ([@thijsdejong] - [#11586]) ([tahoma docs])
- Added support for enable/disable motion detection ([@abjorshammar] - [#11583]) ([camera.uvc docs])
- Avoid returning empty media_image_url string ([@JackWindows] - [#11557]) ([media_player.cast docs])
@ -768,7 +768,6 @@ Note however, that this feature was replaced by a new ignore_string config optio
[vacuum.xiaomi_miio docs]: /integrations/vacuum.xiaomi_miio/
[weather.darksky docs]: /integrations/weather.darksky/
[weather.openweathermap docs]: /integrations/openweathermap#weather
[weather.yweather docs]: /integrations/yweather
[websocket_api docs]: /integrations/websocket_api/
[wemo docs]: /integrations/wemo/
[zigbee docs]: /integrations/zigbee/

View File

@ -114,7 +114,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Fix bad metrics format for short metrics. ([@michaelkuty] - [#13778]) ([prometheus docs])
- Update bellows to 0.5.2 ([@rcloran] - [#13800]) ([zha docs])
- device_tracker.ubus: Handle devices not running DHCP ([@tobygray] - [#13579]) ([device_tracker docs])
- Update yweather.py ([@wiuwiu] - [#13802]) ([weather.yweather docs])
- Update yweather.py ([@wiuwiu] - [#13802])
- Tibber lib update ([@Danielhiversen] - [#13811]) ([sensor.tibber docs])
- Update pyhomematic to 0.1.41 ([@danielperna84] - [#13814]) ([homematic docs])
- Add support for Eufy bulbs and switches ([@mjg59] - [#13773]) ([eufy docs]) ([light.eufy docs]) ([switch.eufy docs]) (new-platform)
@ -135,14 +135,14 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Adding USCIS component ([@meauxt] - [#13764]) ([sensor.uscis docs]) (new-platform)
- Avoid unnecessary cast state updates ([@dersger] - [#13770]) ([media_player.cast docs])
- Prevent vesync doing I/O in event loop ([@balloob] - [#13862]) ([switch.vesync docs]) (beta fix)
- Update yweather.py ([@TheCellMC] - [#13851]) ([weather.yweather docs])
- Update yweather.py ([@TheCellMC] - [#13851])
- add support for Kodi discovery ([@escoand] - [#13790]) ([media_player.kodi docs])
- Further untangle data entry flow ([@balloob] - [#13855])
- Missing property decorator added ([@syssi] - [#13889]) ([fan.xiaomi_miio docs]) (beta fix)
- Fix race condition for component loaded before listening ([@balloob] - [#13887]) ([config docs]) (beta fix)
- Added snips service descriptions ([@tschmidty69] - [#13883])
- Add unique_id for BMW ConnectedDrive ([@gerard33] - [#13888]) ([binary_sensor.bmw_connected_drive docs]) ([lock.bmw_connected_drive docs]) ([sensor.bmw_connected_drive docs])
- Revert "Update yweather.py" ([@pvizeli] - [#13900]) ([weather.yweather docs])
- Revert "Update yweather.py" ([@pvizeli] - [#13900])
- Eufy colour bulb updates ([@mjg59] - [#13895]) ([eufy docs]) ([light.eufy docs])
- Fix #13846 Double underscore in bluetooth address ([@aav7fl] - [#13884]) ([device_tracker docs]) (beta fix)
- Import operation modes from air humidifier ([@syssi] - [#13908]) ([fan.xiaomi_miio docs]) (beta fix)
@ -506,7 +506,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[vacuum.neato docs]: /integrations/neato#vacuum
[vacuum.roomba docs]: /integrations/roomba
[vacuum.xiaomi_miio docs]: /integrations/vacuum.xiaomi_miio/
[weather.yweather docs]: /integrations/yweather
[zha docs]: /integrations/zha/
[#14108]: https://github.com/home-assistant/home-assistant/pull/14108
[#14113]: https://github.com/home-assistant/home-assistant/pull/14113

View File

@ -69,7 +69,7 @@ rainmachine:
## All changes
- Pollen.com: Added attributes on top 3 allergens ([@bachya] - [#14018]) ([sensor.pollen docs]) (breaking change)
- Expose the condition code on condition sensors ([@maddox] - [#14011]) ([sensor.yweather docs])
- Expose the condition code on condition sensors ([@maddox] - [#14011])
- upgrade rfxtrx lib, dimming support for Lighting3 ([@Danielhiversen] - [#14026]) ([rfxtrx docs])
- Add Accuracy to Google Location Sharing ([@rdbahm] - [#14039]) ([device_tracker docs])
- bump gogogate2 version ([@dlbroadfoot] - [#14044]) ([cover.gogogate2 docs])
@ -461,7 +461,6 @@ rainmachine:
[sensor.uscis docs]: /integrations/uscis
[sensor.wunderground docs]: /integrations/wunderground
[sensor.xiaomi_aqara docs]: /integrations/sensor.xiaomi_aqara/
[sensor.yweather docs]: /integrations/yweather
[switch.deluge docs]: /integrations/deluge#switch
[switch.fritzbox docs]: /integrations/fritzbox
[switch.insteon_plm docs]: /integrations/insteon/

View File

@ -295,7 +295,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Fire an event when timer gets out of sync ([@amelchio] - [#17398])
- Add context to scripts run by template entities ([@balloob] - [#17329]) ([cover.template docs]) ([fan.template docs]) ([light.template docs]) ([lock.template docs]) ([switch.template docs])
- State is set to UNKNOWN rather than ON in order to make UI have an play/pause button ([@kennedyshead] - [#17357]) ([media_player.samsungtv docs])
- Re-assign conditions ([@SilvrrGIT] - [#17364]) ([weather.yweather docs])
- Re-assign conditions ([@SilvrrGIT] - [#17364])
- Switched to async_fire ([@Julius2342] - [#17472]) ([knx docs])
- Fix rangefilter ([@nielstron] - [#17473]) ([sensor.filter docs])
- Cleanup HM Notify platform ([@pvizeli] - [#17355]) ([notify docs])
@ -857,7 +857,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[weather.demo docs]: /integrations/weather.demo/
[weather.met docs]: /integrations/met
[weather.smhi docs]: /integrations/smhi
[weather.yweather docs]: /integrations/yweather
[websocket_api docs]: /integrations/websocket_api/
[wink docs]: /integrations/wink/
[xiaomi_aqara docs]: /integrations/xiaomi_aqara/

View File

@ -614,7 +614,7 @@ The **holiday name** sensor has been renamed to **holiday**. ([@tsvi] - [#27654]
- Add service description for route53 integration ([@tefinger] - [#27774])
- Move imports in openweathermap component ([@Quentame] - [#27779]) ([openweathermap docs])
- Move imports in apns component ([@Bouni] - [#27804]) ([apns docs])
- Move imports in yweather ([@Misiu] - [#27842]) ([yweather docs])
- Move imports in yweather ([@Misiu] - [#27842])
- Move imports in brunt component ([@Bouni] - [#27856]) ([brunt docs])
- Move imports in blockchain component ([@Bouni] - [#27852]) ([blockchain docs])
- Move blackbird imports ([@Bouni] - [#27849]) ([blackbird docs])
@ -1901,7 +1901,6 @@ The **holiday name** sensor has been renamed to **holiday**. ([@tsvi] - [#27654]
[yeelight docs]: /integrations/yeelight/
[yeelightsunflower docs]: /integrations/yeelightsunflower/
[yr docs]: /integrations/yr/
[yweather docs]: /integrations/yweather/
[zengge docs]: /integrations/zengge/
[zeroconf docs]: /integrations/zeroconf/
[zestimate docs]: /integrations/zestimate/

View File

@ -927,7 +927,6 @@
/components/sensor.xbox_live /integrations/xbox_live
/components/sensor.xs1 /integrations/xs1#sensors
/components/sensor.yr /integrations/yr
/components/sensor.yweather /integrations/yweather
/components/sensor.zabbix /integrations/zabbix#sensor
/components/sensor.zamg /integrations/zamg#sensor
/components/sensor.zestimate /integrations/zestimate
@ -1077,7 +1076,6 @@
/components/weather.metoffice /integrations/metoffice
/components/weather.openweathermap /integrations/openweathermap#weather
/components/weather.smhi /integrations/smhi
/components/weather.yweather /integrations/yweather
/components/weather.zamg /integrations/zamg#weather
/components/xiaomi /integrations/xiaomi_aqara
@ -2012,7 +2010,6 @@
/components/yessssms /integrations/yessssms
/components/yi /integrations/yi
/components/yr /integrations/yr
/components/yweather /integrations/yweather
/components/zabbix /integrations/zabbix
/components/zamg /integrations/zamg
/components/zengge /integrations/zengge

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB