Bump intents to 2024.12.20 (#133676)

This commit is contained in:
Michael Hansen 2024-12-20 13:23:12 -06:00 committed by GitHub
parent 2639bdbefd
commit 8607ba884c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 16 additions and 5 deletions

View File

@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/conversation", "documentation": "https://www.home-assistant.io/integrations/conversation",
"integration_type": "system", "integration_type": "system",
"quality_scale": "internal", "quality_scale": "internal",
"requirements": ["hassil==2.0.5", "home-assistant-intents==2024.12.9"] "requirements": ["hassil==2.0.5", "home-assistant-intents==2024.12.20"]
} }

View File

@ -35,7 +35,7 @@ hass-nabucasa==0.87.0
hassil==2.0.5 hassil==2.0.5
home-assistant-bluetooth==1.13.0 home-assistant-bluetooth==1.13.0
home-assistant-frontend==20241127.8 home-assistant-frontend==20241127.8
home-assistant-intents==2024.12.9 home-assistant-intents==2024.12.20
httpx==0.27.2 httpx==0.27.2
ifaddr==0.2.0 ifaddr==0.2.0
Jinja2==3.1.4 Jinja2==3.1.4

View File

@ -1137,7 +1137,7 @@ holidays==0.63
home-assistant-frontend==20241127.8 home-assistant-frontend==20241127.8
# homeassistant.components.conversation # homeassistant.components.conversation
home-assistant-intents==2024.12.9 home-assistant-intents==2024.12.20
# homeassistant.components.home_connect # homeassistant.components.home_connect
homeconnect==0.8.0 homeconnect==0.8.0

View File

@ -966,7 +966,7 @@ holidays==0.63
home-assistant-frontend==20241127.8 home-assistant-frontend==20241127.8
# homeassistant.components.conversation # homeassistant.components.conversation
home-assistant-intents==2024.12.9 home-assistant-intents==2024.12.20
# homeassistant.components.home_connect # homeassistant.components.home_connect
homeconnect==0.8.0 homeconnect==0.8.0

View File

@ -23,7 +23,7 @@ RUN --mount=from=ghcr.io/astral-sh/uv:0.5.8,source=/uv,target=/bin/uv \
-c /usr/src/homeassistant/homeassistant/package_constraints.txt \ -c /usr/src/homeassistant/homeassistant/package_constraints.txt \
-r /usr/src/homeassistant/requirements.txt \ -r /usr/src/homeassistant/requirements.txt \
stdlib-list==0.10.0 pipdeptree==2.23.4 tqdm==4.66.5 ruff==0.8.3 \ stdlib-list==0.10.0 pipdeptree==2.23.4 tqdm==4.66.5 ruff==0.8.3 \
PyTurboJPEG==1.7.5 go2rtc-client==0.1.2 ha-ffmpeg==3.2.2 hassil==2.0.5 home-assistant-intents==2024.12.9 mutagen==1.47.0 pymicro-vad==1.0.1 pyspeex-noise==1.0.2 PyTurboJPEG==1.7.5 go2rtc-client==0.1.2 ha-ffmpeg==3.2.2 hassil==2.0.5 home-assistant-intents==2024.12.20 mutagen==1.47.0 pymicro-vad==1.0.1 pyspeex-noise==1.0.2
LABEL "name"="hassfest" LABEL "name"="hassfest"
LABEL "maintainer"="Home Assistant <hello@home-assistant.io>" LABEL "maintainer"="Home Assistant <hello@home-assistant.io>"

View File

@ -24,6 +24,7 @@
'fr', 'fr',
'gl', 'gl',
'he', 'he',
'hi',
'hr', 'hr',
'hu', 'hu',
'id', 'id',
@ -35,6 +36,7 @@
'lt', 'lt',
'lv', 'lv',
'ml', 'ml',
'mn',
'ms', 'ms',
'nb', 'nb',
'nl', 'nl',
@ -47,6 +49,7 @@
'sl', 'sl',
'sr', 'sr',
'sv', 'sv',
'sw',
'te', 'te',
'th', 'th',
'tr', 'tr',

View File

@ -3056,6 +3056,14 @@ async def test_entities_names_are_not_templates(hass: HomeAssistant) -> None:
("language", "light_name", "on_sentence", "off_sentence"), ("language", "light_name", "on_sentence", "off_sentence"),
[ [
("en", "test light", "turn on test light", "turn off test light"), ("en", "test light", "turn on test light", "turn off test light"),
("de", "Testlicht", "Schalte Testlicht ein", "Schalte Testlicht aus"),
(
"fr",
"lumière de test",
"Allumer la lumière de test",
"Éteindre la lumière de test",
),
("nl", "testlicht", "Zet testlicht aan", "Zet testlicht uit"),
("zh-cn", "卧室灯", "打开卧室灯", "关闭卧室灯"), ("zh-cn", "卧室灯", "打开卧室灯", "关闭卧室灯"),
("zh-hk", "睡房燈", "打開睡房燈", "關閉睡房燈"), ("zh-hk", "睡房燈", "打開睡房燈", "關閉睡房燈"),
("zh-tw", "臥室檯燈", "打開臥室檯燈", "關臥室檯燈"), ("zh-tw", "臥室檯燈", "打開臥室檯燈", "關臥室檯燈"),