Skip to content
Merged

0.117.6 #43102

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
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ homeassistant/components/rmvtransport/* @cgtobi
homeassistant/components/roku/* @ctalkington
homeassistant/components/roomba/* @pschmitt @cyr-ius @shenxn
homeassistant/components/roon/* @pavoni
homeassistant/components/rpi_gpio_pwm/* @soldag
homeassistant/components/rpi_power/* @shenxn @swetoast
homeassistant/components/ruckus_unleashed/* @gabe565
homeassistant/components/safe_mode/* @home-assistant/core
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/google_translate/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"domain": "google_translate",
"name": "Google Translate Text-to-Speech",
"documentation": "https://www.home-assistant.io/integrations/google_translate",
"requirements": ["gTTS-token==1.1.3"],
"requirements": ["gTTS-token==1.1.4"],
"codeowners": []
}
6 changes: 4 additions & 2 deletions homeassistant/components/plex/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ async def async_step_integration_discovery(self, discovery_info):
async def async_step_plex_website_auth(self):
"""Begin external auth flow on Plex website."""
self.hass.http.register_view(PlexAuthorizationCallbackView)
hass_url = get_url(self.hass)
headers = {"Origin": hass_url}
payload = {
"X-Plex-Device-Name": X_PLEX_DEVICE_NAME,
"X-Plex-Version": X_PLEX_VERSION,
Expand All @@ -298,9 +300,9 @@ async def async_step_plex_website_auth(self):
"X-Plex-Model": "Plex OAuth",
}
session = async_get_clientsession(self.hass)
self.plexauth = PlexAuth(payload, session)
self.plexauth = PlexAuth(payload, session, headers)
await self.plexauth.initiate_auth()
forward_url = f"{get_url(self.hass)}{AUTH_CALLBACK_PATH}?flow_id={self.flow_id}"
forward_url = f"{hass_url}{AUTH_CALLBACK_PATH}?flow_id={self.flow_id}"
auth_url = self.plexauth.auth_url(forward_url)
return self.async_external_step(step_id="obtain_token", url=auth_url)

Expand Down
6 changes: 3 additions & 3 deletions homeassistant/components/plex/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/plex",
"requirements": [
"plexapi==4.1.1",
"plexauth==0.0.5",
"plexwebsocket==0.0.12"
"plexapi==4.1.1",
"plexauth==0.0.6",
"plexwebsocket==0.0.12"
],
"dependencies": ["http"],
"after_dependencies": ["sonos"],
Expand Down
4 changes: 0 additions & 4 deletions homeassistant/components/rpi_gpio_pwm/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,6 @@ async def async_added_to_hass(self):
self._brightness = last_state.attributes.get(
"brightness", DEFAULT_BRIGHTNESS
)
self._led.set(
is_on=self._is_on, brightness=_from_hass_brightness(self._brightness)
)

@property
def should_poll(self):
Expand Down Expand Up @@ -199,7 +196,6 @@ async def async_added_to_hass(self):
last_state = await self.async_get_last_state()
if last_state:
self._color = last_state.attributes.get("hs_color", DEFAULT_COLOR)
self._led.set(color=_from_hass_color(self._color))

@property
def hs_color(self):
Expand Down
4 changes: 2 additions & 2 deletions homeassistant/components/rpi_gpio_pwm/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"domain": "rpi_gpio_pwm",
"name": "pigpio Daemon PWM LED",
"documentation": "https://www.home-assistant.io/integrations/rpi_gpio_pwm",
"requirements": ["pwmled==1.6.6"],
"codeowners": []
"requirements": ["pwmled==1.6.7"],
"codeowners": ["@soldag"]
}
2 changes: 1 addition & 1 deletion homeassistant/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Constants used by Home Assistant components."""
MAJOR_VERSION = 0
MINOR_VERSION = 117
PATCH_VERSION = "5"
PATCH_VERSION = "6"
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__ = f"{__short_version__}.{PATCH_VERSION}"
REQUIRED_PYTHON_VER = (3, 7, 1)
Expand Down
6 changes: 3 additions & 3 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ freesms==0.1.2
fritzconnection==1.2.0

# homeassistant.components.google_translate
gTTS-token==1.1.3
gTTS-token==1.1.4

# homeassistant.components.garmin_connect
garminconnect==0.1.13
Expand Down Expand Up @@ -1124,7 +1124,7 @@ pizzapi==0.0.3
plexapi==4.1.1

# homeassistant.components.plex
plexauth==0.0.5
plexauth==0.0.6

# homeassistant.components.plex
plexwebsocket==0.0.12
Expand Down Expand Up @@ -1182,7 +1182,7 @@ pushbullet.py==0.11.0
pushover_complete==1.1.1

# homeassistant.components.rpi_gpio_pwm
pwmled==1.6.6
pwmled==1.6.7

# homeassistant.components.august
py-august==0.25.0
Expand Down
4 changes: 2 additions & 2 deletions requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ fnvhash==0.1.0
foobot_async==0.3.2

# homeassistant.components.google_translate
gTTS-token==1.1.3
gTTS-token==1.1.4

# homeassistant.components.garmin_connect
garminconnect==0.1.13
Expand Down Expand Up @@ -541,7 +541,7 @@ pillow==7.2.0
plexapi==4.1.1

# homeassistant.components.plex
plexauth==0.0.5
plexauth==0.0.6

# homeassistant.components.plex
plexwebsocket==0.0.12
Expand Down