Skip to content

Commit

Permalink
Bump yalexs to 8.4.0
Browse files Browse the repository at this point in the history
small fix to not show the yale global brand in
the config flow since it requires oauth and will
only work with the upcoming yale integration
  • Loading branch information
bdraco committed Aug 24, 2024
1 parent 7ae8f4c commit 8e979f4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions homeassistant/components/august/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import aiohttp
import voluptuous as vol
from yalexs.authenticator_common import ValidationResult
from yalexs.const import BRANDS, DEFAULT_BRAND
from yalexs.const import BRANDS_WITHOUT_OAUTH, DEFAULT_BRAND
from yalexs.manager.exceptions import CannotConnect, InvalidAuth, RequireValidation

from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
Expand Down Expand Up @@ -118,7 +118,7 @@ async def async_step_user_validate(
vol.Required(
CONF_BRAND,
default=self._user_auth_details.get(CONF_BRAND, DEFAULT_BRAND),
): vol.In(BRANDS),
): vol.In(BRANDS_WITHOUT_OAUTH),
vol.Required(
CONF_LOGIN_METHOD,
default=self._user_auth_details.get(
Expand Down Expand Up @@ -208,7 +208,7 @@ async def async_step_reauth_validate(
vol.Required(
CONF_BRAND,
default=self._user_auth_details.get(CONF_BRAND, DEFAULT_BRAND),
): vol.In(BRANDS),
): vol.In(BRANDS_WITHOUT_OAUTH),
vol.Required(CONF_PASSWORD): str,
}
),
Expand Down
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.3.3", "yalexs-ble==2.4.3"]
"requirements": ["yalexs==8.4.0", "yalexs-ble==2.4.3"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2968,7 +2968,7 @@ yalesmartalarmclient==0.4.0
yalexs-ble==2.4.3

# homeassistant.components.august
yalexs==8.3.3
yalexs==8.4.0

# homeassistant.components.yeelight
yeelight==0.7.14
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2348,7 +2348,7 @@ yalesmartalarmclient==0.4.0
yalexs-ble==2.4.3

# homeassistant.components.august
yalexs==8.3.3
yalexs==8.4.0

# homeassistant.components.yeelight
yeelight==0.7.14
Expand Down

0 comments on commit 8e979f4

Please sign in to comment.