Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/apple_tv/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"documentation": "https://www.home-assistant.io/integrations/apple_tv",
"iot_class": "local_push",
"loggers": ["pyatv", "srptools"],
"requirements": ["pyatv==0.16.0"],
"requirements": ["pyatv==0.16.1"],
"zeroconf": [
"_mediaremotetv._tcp.local.",
"_companion-link._tcp.local.",
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/nyt_games/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/nyt_games",
"integration_type": "service",
"iot_class": "cloud_polling",
"requirements": ["nyt_games==0.4.4"]
"requirements": ["nyt_games==0.5.0"]
}
5 changes: 5 additions & 0 deletions homeassistant/components/smartthings/select.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@

LAMP_TO_HA = {
"extraHigh": "extra_high",
"high": "high",
"mid": "mid",
"low": "low",
"on": "on",
"off": "off",
}

WASHER_SOIL_LEVEL_TO_HA = {
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/snoo/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SnooBinarySensorEntityDescription(BinarySensorEntityDescription):
SnooBinarySensorEntityDescription(
key="right_clip",
translation_key="right_clip",
value_fn=lambda data: data.left_safety_clip,
value_fn=lambda data: data.right_safety_clip,
device_class=BinarySensorDeviceClass.CONNECTIVITY,
entity_category=EntityCategory.DIAGNOSTIC,
),
Expand Down
4 changes: 3 additions & 1 deletion homeassistant/components/wallbox/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ def require_authentication(
return func(self, *args, **kwargs)
except requests.exceptions.HTTPError as wallbox_connection_error:
if wallbox_connection_error.response.status_code == HTTPStatus.FORBIDDEN:
raise ConfigEntryAuthFailed from wallbox_connection_error
raise ConfigEntryAuthFailed(
translation_domain=DOMAIN, translation_key="invalid_auth"
) from wallbox_connection_error
raise HomeAssistantError(
translation_domain=DOMAIN, translation_key="api_failed"
) from wallbox_connection_error
Expand Down
4 changes: 2 additions & 2 deletions requirements_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions requirements_test_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 30 additions & 27 deletions tests/components/nyt_games/fixtures/latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,43 +25,46 @@
},
"wordle": {
"legacyStats": {
"gamesPlayed": 70,
"gamesWon": 51,
"gamesPlayed": 1111,
"gamesWon": 1069,
"guesses": {
"1": 0,
"2": 1,
"3": 7,
"4": 11,
"5": 20,
"6": 12,
"fail": 19
"2": 8,
"3": 83,
"4": 440,
"5": 372,
"6": 166,
"fail": 42
},
"currentStreak": 1,
"maxStreak": 5,
"lastWonDayOffset": 1189,
"currentStreak": 229,
"maxStreak": 229,
"lastWonDayOffset": 1472,
"hasPlayed": true,
"autoOptInTimestamp": 1708273168957,
"hasMadeStatsChoice": false,
"timestamp": 1726831978
"autoOptInTimestamp": 1712205417018,
"hasMadeStatsChoice": true,
"timestamp": 1751255756
},
"calculatedStats": {
"gamesPlayed": 33,
"gamesWon": 26,
"currentStreak": 237,
"maxStreak": 241,
"lastWonPrintDate": "2025-07-08",
"lastCompletedPrintDate": "2025-07-08",
"hasPlayed": true
},
"totalStats": {
"gamesWon": 1077,
"gamesPlayed": 1119,
"guesses": {
"1": 0,
"2": 1,
"3": 4,
"4": 7,
"5": 10,
"6": 4,
"fail": 7
"2": 8,
"3": 83,
"4": 444,
"5": 376,
"6": 166,
"fail": 42
},
"currentStreak": 1,
"maxStreak": 5,
"lastWonPrintDate": "2024-09-20",
"lastCompletedPrintDate": "2024-09-20",
"hasPlayed": true,
"generation": 1
"hasPlayedArchive": false
}
}
}
Expand Down
25 changes: 14 additions & 11 deletions tests/components/nyt_games/fixtures/new_account.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"stats": {
"wordle": {
"legacyStats": {
"gamesPlayed": 1,
"gamesWon": 1,
"gamesPlayed": 0,
"gamesWon": 0,
"guesses": {
"1": 0,
"2": 0,
"3": 0,
"4": 0,
"5": 1,
"5": 0,
"6": 0,
"fail": 0
},
Expand All @@ -27,23 +27,26 @@
"timestamp": 1727358123
},
"calculatedStats": {
"gamesPlayed": 0,
"gamesWon": 0,
"currentStreak": 0,
"maxStreak": 1,
"lastWonPrintDate": "",
"lastCompletedPrintDate": "",
"hasPlayed": false
},
"totalStats": {
"gamesPlayed": 1,
"gamesWon": 1,
"guesses": {
"1": 0,
"2": 0,
"3": 0,
"4": 0,
"5": 0,
"5": 1,
"6": 0,
"fail": 0
},
"currentStreak": 0,
"maxStreak": 1,
"lastWonPrintDate": "",
"lastCompletedPrintDate": "",
"hasPlayed": false,
"generation": 1
"hasPlayedArchive": false
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions tests/components/nyt_games/snapshots/test_sensor.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': '1',
'state': '237',
})
# ---
# name: test_all_entities[sensor.wordle_highest_streak-entry]
Expand Down Expand Up @@ -529,7 +529,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': '5',
'state': '241',
})
# ---
# name: test_all_entities[sensor.wordle_played-entry]
Expand Down Expand Up @@ -581,7 +581,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': '70',
'state': '1119',
})
# ---
# name: test_all_entities[sensor.wordle_won-entry]
Expand Down Expand Up @@ -633,6 +633,6 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': '51',
'state': '1077',
})
# ---
6 changes: 3 additions & 3 deletions tests/components/smartthings/snapshots/test_select.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': 'unknown',
'state': 'off',
})
# ---
# name: test_all_entities[da_ks_oven_01061][select.oven_lamp-entry]
Expand Down Expand Up @@ -112,7 +112,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': 'unknown',
'state': 'high',
})
# ---
# name: test_all_entities[da_ks_range_0101x][select.vulcan_lamp-entry]
Expand Down Expand Up @@ -226,7 +226,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': 'unknown',
'state': 'on',
})
# ---
# name: test_all_entities[da_wm_dw_000001][select.dishwasher-entry]
Expand Down
Loading