From 8f6cff22b1ca48a9dd9170dcbf50082aff30ca35 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 21 Apr 2020 19:11:38 +0200 Subject: [PATCH] Remove Yahoo Weather integration (#13114) --- source/_integrations/yweather.markdown | 113 ------------------ ...16-sqlalchemy-knx-join-simplisafe.markdown | 5 +- source/_posts/2017-06-17-release-47.markdown | 3 +- source/_posts/2017-07-16-release-49.markdown | 3 +- source/_posts/2017-07-29-release-50.markdown | 5 +- source/_posts/2017-08-12-release-51.markdown | 3 +- source/_posts/2017-11-18-release-58.markdown | 6 +- source/_posts/2017-12-03-release-59.markdown | 3 +- source/_posts/2018-01-14-release-61.markdown | 5 +- source/_posts/2018-04-27-release-68.markdown | 7 +- source/_posts/2018-05-11-release-69.markdown | 3 +- source/_posts/2018-10-29-release-81.markdown | 3 +- source/_posts/2019-10-30-release-101.markdown | 3 +- source/_redirects | 3 - .../images/supported_brands/yahooweather.png | Bin 3675 -> 0 bytes 15 files changed, 18 insertions(+), 147 deletions(-) delete mode 100644 source/_integrations/yweather.markdown delete mode 100644 source/images/supported_brands/yahooweather.png diff --git a/source/_integrations/yweather.markdown b/source/_integrations/yweather.markdown deleted file mode 100644 index c6aaeee9733..00000000000 --- a/source/_integrations/yweather.markdown +++ /dev/null @@ -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 ---- - -
- -The Yahoo Weather API is being [retired](https://developer.yahoo.com/weather/?guccounter=1). A replacement is the [`OpenWeatherMap` integration](/integrations/openweathermap). - -
- -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. - -
-Use of the Yahoo Weather API should not exceed reasonable request volume. Access is limited to 2000 signed calls per day. -
- -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/). diff --git a/source/_posts/2016-07-16-sqlalchemy-knx-join-simplisafe.markdown b/source/_posts/2016-07-16-sqlalchemy-knx-join-simplisafe.markdown index 39d7a4dd884..5736c1565f2 100644 --- a/source/_posts/2016-07-16-sqlalchemy-knx-join-simplisafe.markdown +++ b/source/_posts/2016-07-16-sqlalchemy-knx-join-simplisafe.markdown @@ -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. - + - 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/ diff --git a/source/_posts/2017-06-17-release-47.markdown b/source/_posts/2017-06-17-release-47.markdown index a1463d5f2e7..49406fc741f 100644 --- a/source/_posts/2017-06-17-release-47.markdown +++ b/source/_posts/2017-06-17-release-47.markdown @@ -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 diff --git a/source/_posts/2017-07-16-release-49.markdown b/source/_posts/2017-07-16-release-49.markdown index 6f8201c8916..00722f59865 100644 --- a/source/_posts/2017-07-16-release-49.markdown +++ b/source/_posts/2017-07-16-release-49.markdown @@ -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 diff --git a/source/_posts/2017-07-29-release-50.markdown b/source/_posts/2017-07-29-release-50.markdown index 3cb91e69300..9ccbfaa6606 100644 --- a/source/_posts/2017-07-29-release-50.markdown +++ b/source/_posts/2017-07-29-release-50.markdown @@ -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/ diff --git a/source/_posts/2017-08-12-release-51.markdown b/source/_posts/2017-08-12-release-51.markdown index 76f8cd2fb65..65f6a8fc38c 100644 --- a/source/_posts/2017-08-12-release-51.markdown +++ b/source/_posts/2017-08-12-release-51.markdown @@ -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/ diff --git a/source/_posts/2017-11-18-release-58.markdown b/source/_posts/2017-11-18-release-58.markdown index c95fc35b056..d15f4405db3 100644 --- a/source/_posts/2017-11-18-release-58.markdown +++ b/source/_posts/2017-11-18-release-58.markdown @@ -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 diff --git a/source/_posts/2017-12-03-release-59.markdown b/source/_posts/2017-12-03-release-59.markdown index 2c941a4e2cd..91fabf41d18 100644 --- a/source/_posts/2017-12-03-release-59.markdown +++ b/source/_posts/2017-12-03-release-59.markdown @@ -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 diff --git a/source/_posts/2018-01-14-release-61.markdown b/source/_posts/2018-01-14-release-61.markdown index ca46f72339d..426ee0dca16 100644 --- a/source/_posts/2018-01-14-release-61.markdown +++ b/source/_posts/2018-01-14-release-61.markdown @@ -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/ diff --git a/source/_posts/2018-04-27-release-68.markdown b/source/_posts/2018-04-27-release-68.markdown index 2a6c06026fc..366593093da 100644 --- a/source/_posts/2018-04-27-release-68.markdown +++ b/source/_posts/2018-04-27-release-68.markdown @@ -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 diff --git a/source/_posts/2018-05-11-release-69.markdown b/source/_posts/2018-05-11-release-69.markdown index 74770657e33..1bc71661a2c 100644 --- a/source/_posts/2018-05-11-release-69.markdown +++ b/source/_posts/2018-05-11-release-69.markdown @@ -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/ diff --git a/source/_posts/2018-10-29-release-81.markdown b/source/_posts/2018-10-29-release-81.markdown index 17466e657ec..24ae84d0e60 100644 --- a/source/_posts/2018-10-29-release-81.markdown +++ b/source/_posts/2018-10-29-release-81.markdown @@ -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/ diff --git a/source/_posts/2019-10-30-release-101.markdown b/source/_posts/2019-10-30-release-101.markdown index 88d569ae846..48122c8acd5 100644 --- a/source/_posts/2019-10-30-release-101.markdown +++ b/source/_posts/2019-10-30-release-101.markdown @@ -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/ diff --git a/source/_redirects b/source/_redirects index 4d09ddbc7f4..0462167d36d 100644 --- a/source/_redirects +++ b/source/_redirects @@ -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 diff --git a/source/images/supported_brands/yahooweather.png b/source/images/supported_brands/yahooweather.png deleted file mode 100644 index 78da70926f0152542719d18151eaf3ab79e5592e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3675 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