Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix 0.23.1 #2424

Merged
merged 4 commits into from
Jul 2, 2016
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/binary_sensor/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from homeassistant.helpers.entity import Entity
from homeassistant.loader import get_component

REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']

# These are the available sensors mapped to binary_sensor class
SENSOR_TYPES = {
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/garage_door/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from homeassistant.components.wink import WinkDevice
from homeassistant.const import CONF_ACCESS_TOKEN

REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']


def setup_platform(hass, config, add_devices, discovery_info=None):
Expand Down
4 changes: 3 additions & 1 deletion homeassistant/components/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
# specified here: https://wiki.mozilla.org/Security/Server_Side_TLS
# Intermediate guidelines are followed.
SSL_VERSION = ssl.PROTOCOL_SSLv23
SSL_OPTS = ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3 | ssl.OP_NO_COMPRESSION
SSL_OPTS = ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3
if hasattr(ssl, 'OP_NO_COMPRESSION'):
SSL_OPTS |= ssl.OP_NO_COMPRESSION
CIPHERS = "ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:" \
"ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:" \
"ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:" \
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/light/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from homeassistant.util.color import \
color_temperature_mired_to_kelvin as mired_to_kelvin

REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']


def setup_platform(hass, config, add_devices_callback, discovery_info=None):
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/lock/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from homeassistant.components.wink import WinkDevice
from homeassistant.const import CONF_ACCESS_TOKEN

REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']


def setup_platform(hass, config, add_devices, discovery_info=None):
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/rollershutter/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from homeassistant.components.wink import WinkDevice
from homeassistant.const import CONF_ACCESS_TOKEN

REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']


def setup_platform(hass, config, add_devices, discovery_info=None):
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/sensor/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from homeassistant.components.wink import WinkDevice
from homeassistant.loader import get_component

REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']

SENSOR_TYPES = ['temperature', 'humidity']

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/switch/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from homeassistant.const import CONF_ACCESS_TOKEN
from homeassistant.helpers.entity import ToggleEntity

REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']


def setup_platform(hass, config, add_devices, discovery_info=None):
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/vera.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from homeassistant.const import EVENT_HOMEASSISTANT_STOP
from homeassistant.helpers.entity import Entity

REQUIREMENTS = ['pyvera==0.2.12']
REQUIREMENTS = ['pyvera==0.2.13']

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from homeassistant.helpers.entity import Entity

DOMAIN = "wink"
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.8']
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']

SUBSCRIPTION_HANDLER = None
CHANNELS = []
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8
"""Constants used by Home Assistant components."""

__version__ = "0.23.0"
__version__ = "0.23.1"
REQUIRED_PYTHON_VER = (3, 4)

PLATFORM_FORMAT = '{}.{}'
Expand Down
4 changes: 2 additions & 2 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ psutil==4.3.0
# homeassistant.components.rollershutter.wink
# homeassistant.components.sensor.wink
# homeassistant.components.switch.wink
pubnub==3.7.8
pubnub==3.7.6

# homeassistant.components.notify.pushbullet
pushbullet.py==0.10.0
Expand Down Expand Up @@ -339,7 +339,7 @@ python-wink==0.7.8
pyuserinput==0.1.9

# homeassistant.components.vera
pyvera==0.2.12
pyvera==0.2.13

# homeassistant.components.wemo
pywemo==0.4.3
Expand Down