Skip to content

Commit

Permalink
Bump intents to 2024.12.20 (#133676)
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam authored Dec 20, 2024
1 parent 2639bdb commit 8607ba8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/conversation/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/conversation",
"integration_type": "system",
"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"]
}
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ hass-nabucasa==0.87.0
hassil==2.0.5
home-assistant-bluetooth==1.13.0
home-assistant-frontend==20241127.8
home-assistant-intents==2024.12.9
home-assistant-intents==2024.12.20
httpx==0.27.2
ifaddr==0.2.0
Jinja2==3.1.4
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ holidays==0.63
home-assistant-frontend==20241127.8

# homeassistant.components.conversation
home-assistant-intents==2024.12.9
home-assistant-intents==2024.12.20

# homeassistant.components.home_connect
homeconnect==0.8.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ holidays==0.63
home-assistant-frontend==20241127.8

# homeassistant.components.conversation
home-assistant-intents==2024.12.9
home-assistant-intents==2024.12.20

# homeassistant.components.home_connect
homeconnect==0.8.0
Expand Down
2 changes: 1 addition & 1 deletion script/hassfest/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
-r /usr/src/homeassistant/requirements.txt \
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 "maintainer"="Home Assistant <hello@home-assistant.io>"
Expand Down
3 changes: 3 additions & 0 deletions tests/components/conversation/snapshots/test_http.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
'fr',
'gl',
'he',
'hi',
'hr',
'hu',
'id',
Expand All @@ -35,6 +36,7 @@
'lt',
'lv',
'ml',
'mn',
'ms',
'nb',
'nl',
Expand All @@ -47,6 +49,7 @@
'sl',
'sr',
'sv',
'sw',
'te',
'th',
'tr',
Expand Down
8 changes: 8 additions & 0 deletions tests/components/conversation/test_default_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -3056,6 +3056,14 @@ async def test_entities_names_are_not_templates(hass: HomeAssistant) -> None:
("language", "light_name", "on_sentence", "off_sentence"),
[
("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-hk", "睡房燈", "打開睡房燈", "關閉睡房燈"),
("zh-tw", "臥室檯燈", "打開臥室檯燈", "關臥室檯燈"),
Expand Down

0 comments on commit 8607ba8

Please sign in to comment.