Skip to content

Commit b9e7f1c

Browse files
authored
Bump intents and fix for api change (#155374)
1 parent 079d65a commit b9e7f1c

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

homeassistant/components/conversation/default_agent.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1242,10 +1242,14 @@ def _load_intents(self, language: str) -> LanguageIntents | None:
12421242
intent_name: {
12431243
combo_key: [
12441244
SlotCombinationInfo(
1245-
name_domains=(set(name_domains) if name_domains else None)
1245+
name_domains=(
1246+
set(combo_info.name_domains)
1247+
if combo_info.name_domains
1248+
else None
1249+
)
12461250
)
12471251
]
1248-
for combo_key, name_domains in intent_combos.items()
1252+
for combo_key, combo_info in intent_combos.items()
12491253
}
12501254
for intent_name, intent_combos in self._fuzzy_config.slot_combinations.items()
12511255
},

homeassistant/components/conversation/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"documentation": "https://www.home-assistant.io/integrations/conversation",
77
"integration_type": "entity",
88
"quality_scale": "internal",
9-
"requirements": ["hassil==3.3.0", "home-assistant-intents==2025.10.1"]
9+
"requirements": ["hassil==3.3.0", "home-assistant-intents==2025.10.28"]
1010
}

homeassistant/package_constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ hass-nabucasa==1.4.0
4040
hassil==3.3.0
4141
home-assistant-bluetooth==1.13.1
4242
home-assistant-frontend==20251001.4
43-
home-assistant-intents==2025.10.1
43+
home-assistant-intents==2025.10.28
4444
httpx==0.28.1
4545
ifaddr==0.2.0
4646
Jinja2==3.1.6

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

script/hassfest/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)