Skip to content

Commit

Permalink
Merge branch 'edenhaus-hassfest-docker-fix' into edenhaus-test
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus authored Aug 28, 2024
2 parents 2cd7210 + faa489c commit 3c0000c
Show file tree
Hide file tree
Showing 476 changed files with 9,981 additions and 2,711 deletions.
1 change: 1 addition & 0 deletions .core_files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ components: &components
- homeassistant/components/auth/**
- homeassistant/components/automation/**
- homeassistant/components/backup/**
- homeassistant/components/blueprint/**
- homeassistant/components/bluetooth/**
- homeassistant/components/cloud/**
- homeassistant/components/config/**
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ jobs:
needs: ["init", "build_base"]
if: github.repository_owner == 'home-assistant'
env:
HASSFEST_IMAGE_NAME: ghcr.io/homeassistant/hassfest
HASSFEST_IMAGE_TAG: ghcr.io/homeassistant/hassfest:${{ needs.init.outputs.version }}
HASSFEST_IMAGE_NAME: ghcr.io/home-assistant/hassfest
HASSFEST_IMAGE_TAG: ghcr.io/home-assistant/hassfest:${{ needs.init.outputs.version }}
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down
12 changes: 9 additions & 3 deletions homeassistant/components/abode/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@
}
},
"services": {
"capture_image": "mdi:camera",
"change_setting": "mdi:cog",
"trigger_automation": "mdi:play"
"capture_image": {
"service": "mdi:camera"
},
"change_setting": {
"service": "mdi:cog"
},
"trigger_automation": {
"service": "mdi:play"
}
}
}
20 changes: 15 additions & 5 deletions homeassistant/components/adguard/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,20 @@
}
},
"services": {
"add_url": "mdi:link-plus",
"remove_url": "mdi:link-off",
"enable_url": "mdi:link-variant",
"disable_url": "mdi:link-variant-off",
"refresh": "mdi:refresh"
"add_url": {
"service": "mdi:link-plus"
},
"remove_url": {
"service": "mdi:link-off"
},
"enable_url": {
"service": "mdi:link-variant"
},
"disable_url": {
"service": "mdi:link-variant-off"
},
"refresh": {
"service": "mdi:refresh"
}
}
}
4 changes: 3 additions & 1 deletion homeassistant/components/ads/icons.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"services": {
"write_data_by_name": "mdi:pencil"
"write_data_by_name": {
"service": "mdi:pencil"
}
}
}
4 changes: 3 additions & 1 deletion homeassistant/components/advantage_air/icons.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"services": {
"set_time_to": "mdi:timer-cog"
"set_time_to": {
"service": "mdi:timer-cog"
}
}
}
8 changes: 6 additions & 2 deletions homeassistant/components/aftership/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
}
},
"services": {
"add_tracking": "mdi:package-variant-plus",
"remove_tracking": "mdi:package-variant-minus"
"add_tracking": {
"service": "mdi:package-variant-plus"
},
"remove_tracking": {
"service": "mdi:package-variant-minus"
}
}
}
20 changes: 15 additions & 5 deletions homeassistant/components/agent_dvr/icons.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
{
"services": {
"start_recording": "mdi:record-rec",
"stop_recording": "mdi:stop",
"enable_alerts": "mdi:bell-alert",
"disable_alerts": "mdi:bell-off",
"snapshot": "mdi:camera"
"start_recording": {
"service": "mdi:record-rec"
},
"stop_recording": {
"service": "mdi:stop"
},
"enable_alerts": {
"service": "mdi:bell-alert"
},
"disable_alerts": {
"service": "mdi:bell-off"
},
"snapshot": {
"service": "mdi:camera"
}
}
}
2 changes: 1 addition & 1 deletion homeassistant/components/airvisual_pro/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(self) -> None:
self._reauth_entry: ConfigEntry | None = None

async def async_step_import(self, import_data: dict[str, Any]) -> ConfigFlowResult:
"""Import a config entry from configuration.yaml."""
"""Import a config entry from `airvisual` integration (see #83882)."""
return await self.async_step_user(import_data)

async def async_step_reauth(
Expand Down
28 changes: 21 additions & 7 deletions homeassistant/components/alarm_control_panel/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,26 @@
}
},
"services": {
"alarm_arm_away": "mdi:shield-lock",
"alarm_arm_home": "mdi:shield-home",
"alarm_arm_night": "mdi:shield-moon",
"alarm_arm_custom_bypass": "mdi:security",
"alarm_disarm": "mdi:shield-off",
"alarm_trigger": "mdi:bell-ring",
"alarm_arm_vacation": "mdi:shield-airplane"
"alarm_arm_away": {
"service": "mdi:shield-lock"
},
"alarm_arm_home": {
"service": "mdi:shield-home"
},
"alarm_arm_night": {
"service": "mdi:shield-moon"
},
"alarm_arm_custom_bypass": {
"service": "mdi:security"
},
"alarm_disarm": {
"service": "mdi:shield-off"
},
"alarm_trigger": {
"service": "mdi:bell-ring"
},
"alarm_arm_vacation": {
"service": "mdi:shield-airplane"
}
}
}
8 changes: 6 additions & 2 deletions homeassistant/components/alarmdecoder/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
}
},
"services": {
"alarm_keypress": "mdi:dialpad",
"alarm_toggle_chime": "mdi:abc"
"alarm_keypress": {
"service": "mdi:dialpad"
},
"alarm_toggle_chime": {
"service": "mdi:abc"
}
}
}
12 changes: 9 additions & 3 deletions homeassistant/components/alert/icons.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"services": {
"toggle": "mdi:bell-ring",
"turn_off": "mdi:bell-off",
"turn_on": "mdi:bell-alert"
"toggle": {
"service": "mdi:bell-ring"
},
"turn_off": {
"service": "mdi:bell-off"
},
"turn_on": {
"service": "mdi:bell-alert"
}
}
}
2 changes: 1 addition & 1 deletion homeassistant/components/ambient_network/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "service",
"iot_class": "cloud_polling",
"loggers": ["aioambient"],
"requirements": ["aioambient==2024.01.0"]
"requirements": ["aioambient==2024.08.0"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/ambient_station/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "hub",
"iot_class": "cloud_push",
"loggers": ["aioambient"],
"requirements": ["aioambient==2024.01.0"]
"requirements": ["aioambient==2024.08.0"]
}
44 changes: 33 additions & 11 deletions homeassistant/components/amcrest/icons.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,37 @@
{
"services": {
"enable_recording": "mdi:record-rec",
"disable_recording": "mdi:stop",
"enable_audio": "mdi:volume-high",
"disable_audio": "mdi:volume-off",
"enable_motion_recording": "mdi:motion-sensor",
"disable_motion_recording": "mdi:motion-sensor-off",
"goto_preset": "mdi:pan",
"set_color_bw": "mdi:palette",
"start_tour": "mdi:panorama",
"stop_tour": "mdi:panorama-outline",
"ptz_control": "mdi:pan"
"enable_recording": {
"service": "mdi:record-rec"
},
"disable_recording": {
"service": "mdi:stop"
},
"enable_audio": {
"service": "mdi:volume-high"
},
"disable_audio": {
"service": "mdi:volume-off"
},
"enable_motion_recording": {
"service": "mdi:motion-sensor"
},
"disable_motion_recording": {
"service": "mdi:motion-sensor-off"
},
"goto_preset": {
"service": "mdi:pan"
},
"set_color_bw": {
"service": "mdi:palette"
},
"start_tour": {
"service": "mdi:panorama"
},
"stop_tour": {
"service": "mdi:panorama-outline"
},
"ptz_control": {
"service": "mdi:pan"
}
}
}
16 changes: 12 additions & 4 deletions homeassistant/components/androidtv/icons.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
{
"services": {
"adb_command": "mdi:console",
"download": "mdi:download",
"upload": "mdi:upload",
"learn_sendevent": "mdi:remote"
"adb_command": {
"service": "mdi:console"
},
"download": {
"service": "mdi:download"
},
"upload": {
"service": "mdi:upload"
},
"learn_sendevent": {
"service": "mdi:remote"
}
}
}
6 changes: 3 additions & 3 deletions homeassistant/components/aseko_pool_live/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,18 @@ async def async_store_credentials(self, info: dict[str, Any]) -> ConfigFlowResul
)

async def async_step_reauth(
self, user_input: Mapping[str, Any]
self, entry_data: Mapping[str, Any]
) -> ConfigFlowResult:
"""Perform reauth upon an API authentication error."""

self.reauth_entry = self.hass.config_entries.async_get_entry(
self.context["entry_id"]
)

return await self.async_step_reauth_confirm(user_input)
return await self.async_step_reauth_confirm()

async def async_step_reauth_confirm(
self, user_input: Mapping | None = None
self, user_input: dict[str, Any] | None = None
) -> ConfigFlowResult:
"""Dialog that informs the user that reauth is required."""

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/assist_pipeline/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "system",
"iot_class": "local_push",
"quality_scale": "internal",
"requirements": ["pymicro-vad==1.0.1", "pyspeex-noise==1.0.0"]
"requirements": ["pymicro-vad==1.0.1", "pyspeex-noise==1.0.2"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/august/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
"documentation": "https://www.home-assistant.io/integrations/august",
"iot_class": "cloud_push",
"loggers": ["pubnub", "yalexs"],
"requirements": ["yalexs==8.4.2", "yalexs-ble==2.4.3"]
"requirements": ["yalexs==8.5.4", "yalexs-ble==2.4.3"]
}
14 changes: 5 additions & 9 deletions homeassistant/components/aussie_broadband/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,11 @@ async def async_step_reauth_confirm(
}

if not (errors := await self.async_auth(data)):
entry = await self.async_set_unique_id(self._reauth_username.lower())
if entry:
self.hass.config_entries.async_update_entry(
entry,
data=data,
)
await self.hass.config_entries.async_reload(entry.entry_id)
return self.async_abort(reason="reauth_successful")
return self.async_create_entry(title=self._reauth_username, data=data)
entry = self.hass.config_entries.async_get_entry(
self.context["entry_id"]
)
assert entry
return self.async_update_reload_and_abort(entry, data=data)

return self.async_show_form(
step_id="reauth_confirm",
Expand Down
20 changes: 15 additions & 5 deletions homeassistant/components/automation/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,20 @@
}
},
"services": {
"turn_on": "mdi:robot",
"turn_off": "mdi:robot-off",
"toggle": "mdi:robot",
"trigger": "mdi:robot",
"reload": "mdi:reload"
"turn_on": {
"service": "mdi:robot"
},
"turn_off": {
"service": "mdi:robot-off"
},
"toggle": {
"service": "mdi:robot"
},
"trigger": {
"service": "mdi:robot"
},
"reload": {
"service": "mdi:reload"
}
}
}
4 changes: 3 additions & 1 deletion homeassistant/components/backup/icons.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"services": {
"create": "mdi:cloud-upload"
"create": {
"service": "mdi:cloud-upload"
}
}
}
4 changes: 3 additions & 1 deletion homeassistant/components/bayesian/icons.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"services": {
"reload": "mdi:reload"
"reload": {
"service": "mdi:reload"
}
}
}
4 changes: 3 additions & 1 deletion homeassistant/components/blackbird/icons.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"services": {
"set_all_zones": "mdi:home-sound-in"
"set_all_zones": {
"service": "mdi:home-sound-in"
}
}
}
Loading

0 comments on commit 3c0000c

Please sign in to comment.