mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 17:27:52 +00:00
Fix broken link in ESPHome BLE repair (#139639)
ESPHome always uses .0 in the URL for the changelog, and we never had a patch version in the stable BLE version field so we need to switch it to .0 for the URL.
This commit is contained in:
parent
8d6178ffa6
commit
4c8a58f7cc
@ -19,6 +19,8 @@ STABLE_BLE_VERSION = AwesomeVersion(STABLE_BLE_VERSION_STR)
|
||||
PROJECT_URLS = {
|
||||
"esphome.bluetooth-proxy": "https://esphome.github.io/bluetooth-proxies/",
|
||||
}
|
||||
DEFAULT_URL = f"https://esphome.io/changelog/{STABLE_BLE_VERSION_STR}.html"
|
||||
# ESPHome always uses .0 for the changelog URL
|
||||
STABLE_BLE_URL_VERSION = f"{STABLE_BLE_VERSION.major}.{STABLE_BLE_VERSION.minor}.0"
|
||||
DEFAULT_URL = f"https://esphome.io/changelog/{STABLE_BLE_URL_VERSION}.html"
|
||||
|
||||
DATA_FFMPEG_PROXY = f"{DOMAIN}.ffmpeg_proxy"
|
||||
|
@ -29,6 +29,7 @@ from homeassistant.components.esphome.const import (
|
||||
CONF_DEVICE_NAME,
|
||||
CONF_SUBSCRIBE_LOGS,
|
||||
DOMAIN,
|
||||
STABLE_BLE_URL_VERSION,
|
||||
STABLE_BLE_VERSION_STR,
|
||||
)
|
||||
from homeassistant.const import (
|
||||
@ -366,7 +367,7 @@ async def test_esphome_device_with_old_bluetooth(
|
||||
)
|
||||
assert (
|
||||
issue.learn_more_url
|
||||
== f"https://esphome.io/changelog/{STABLE_BLE_VERSION_STR}.html"
|
||||
== f"https://esphome.io/changelog/{STABLE_BLE_URL_VERSION}.html"
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user