Skip to content

Commit

Permalink
Bump frontend to 20180710.0
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Jul 10, 2018
1 parent dbdd0a1 commit 2ee62b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions homeassistant/components/frontend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from homeassistant.loader import bind_hass
from homeassistant.util.yaml import load_yaml

REQUIREMENTS = ['home-assistant-frontend==20180709.0']
REQUIREMENTS = ['home-assistant-frontend==20180710.0']

DOMAIN = 'frontend'
DEPENDENCIES = ['api', 'websocket_api', 'http', 'system_log']
Expand Down Expand Up @@ -382,6 +382,8 @@ async def get(self, request, extra=None):
# do not try to auto connect on load
no_auth = '0'

use_oauth = '1' if self.auth_active else '0'

template = await hass.async_add_job(self.get_template, latest)

extra_key = DATA_EXTRA_HTML_URL if latest else DATA_EXTRA_HTML_URL_ES5
Expand All @@ -390,7 +392,7 @@ async def get(self, request, extra=None):
no_auth=no_auth,
theme_color=MANIFEST_JSON['theme_color'],
extra_urls=hass.data[extra_key],
client_id=self.auth_active
use_oauth=use_oauth
)

return web.Response(text=template.render(**template_params),
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ hole==0.3.0
holidays==0.9.5

# homeassistant.components.frontend
home-assistant-frontend==20180709.0
home-assistant-frontend==20180710.0

# homeassistant.components.homekit_controller
# homekit==0.6
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ hbmqtt==0.9.2
holidays==0.9.5

# homeassistant.components.frontend
home-assistant-frontend==20180709.0
home-assistant-frontend==20180710.0

# homeassistant.components.homematicip_cloud
homematicip==0.9.6
Expand Down

0 comments on commit 2ee62b1

Please sign in to comment.