Commit graph

14812 commits

Author SHA1 Message Date
Martin Weinelt 12e016b5c4 home-assistant: 2021.6.5 -> 2021.6.6 2021-06-22 03:28:11 +02:00
Sandro 00f88093d3
Merge pull request #127709 from ymatsiuk/teleport 2021-06-22 02:18:30 +02:00
Sandro 966e85299c
Merge pull request #127682 from MayNiklas/plex-update 2021-06-22 02:12:56 +02:00
Sandro 282b33e772
Merge pull request #127705 from oxzi/nginx-rtmp-1.2.2 2021-06-22 02:08:23 +02:00
Robert Schütz 52d701f155 mautrix-signal: pin mautrix to 0.8.18 2021-06-22 00:19:06 +02:00
Maximilian Bosch ca16b617b4 mautrix-telegram: 0.9.0 -> 0.10.0 2021-06-22 00:19:06 +02:00
Robert Schütz 5a2945b6ed mautrix-telegram: use sqlalchemy 1.3 2021-06-22 00:14:18 +02:00
Robert Schütz af2d542fb5 Revert "use sqlalchemy 1.3.x for mautrix-telegram" 2021-06-22 00:14:18 +02:00
Yurii Matsiuk d2db3b84df
teleport: 6.2.3 -> 6.2.5 2021-06-21 20:29:43 +02:00
Alvar Penning 3690ae13a4 nginxModules.rtmp: 1.2.1 -> 1.2.2
This new release fixes segfaults,
https://github.com/arut/nginx-rtmp-module/compare/v1.2.1...v1.2.2
2021-06-21 20:04:10 +02:00
Niklas 1a08bb4027
plex: 1.23.2.4656-85f0adf5b -> 1.23.3.4707-ebb5fe9f3 2021-06-21 16:30:21 +02:00
ajs124 5fa6e9c403 dovecout: fix systemd unit dir
the configure flag we were using was dropped in
a42bb363b4
2021-06-21 16:23:39 +02:00
ajs124 fd83b193ac dovecot_pigeonhole: add myself as maintainer
and fix licensing information
2021-06-21 15:19:32 +02:00
ajs124 0187e72b57 dovecot_pigeonhole: 0.5.14 -> 0.5.15 2021-06-21 15:19:19 +02:00
ajs124 0fb5b6c648 dovecot: add licenses 2021-06-21 15:18:52 +02:00
ajs124 075fb19d81 dovecot: 2.3.14 -> 2.3.15 2021-06-21 15:18:02 +02:00
Kim Lindberger 507ff55e06
Merge pull request #127454 from r-ryantm/auto-update/keycloak
keycloak: 13.0.1 -> 14.0.0
2021-06-21 11:55:10 +02:00
Martin Weinelt 23c5d04f56
Merge pull request #127588 from mweinelt/home-assistant
home-assistant: disable adbode/test_camera.py::test_camera_off test
2021-06-20 22:08:26 +02:00
Sandro 67745e9cb0
Merge pull request #127534 from fabaff/pysml 2021-06-20 22:02:40 +02:00
Martin Weinelt 71e8cc09d1
home-assistant: disable adbode/test_camera.py::test_camera_off test
```
___________________________ test_camera_off[pyloop] ____________________________
[gw5] linux -- Python 3.8.9 /nix/store/4s0h5aawbap3xhldxhcijvl26751qrjr-python3-3.8.9/bin/python3.8

hass = <homeassistant.core.HomeAssistant object at 0x7fff4433b580>

    async def test_camera_off(hass):
        """Test the camera turn off service."""
        await setup_platform(hass, CAMERA_DOMAIN)

        with patch("abodepy.AbodeCamera.privacy_mode") as mock_capture:
>           await hass.services.async_call(
                CAMERA_DOMAIN,
                "turn_off",
                {ATTR_ENTITY_ID: "camera.test_cam"},
                blocking=True,
            )

hass       = <homeassistant.core.HomeAssistant object at 0x7fff4433b580>
mock_capture = <MagicMock name='privacy_mode' id='140734337787888'>

tests/components/abode/test_camera.py:64:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <homeassistant.core.ServiceRegistry object at 0x7fff442c1cd0>
domain = 'camera', service = 'turn_off'
service_data = {'entity_id': 'camera.test_cam'}, blocking = True
context = Context(user_id=None, parent_id=None, id='20e520e6917f171d80558dcc4b10b219')
limit = 10, target = None

    async def async_call(
        self,
        domain: str,
        service: str,
        service_data: dict | None = None,
        blocking: bool = False,
        context: Context | None = None,
        limit: float | None = SERVICE_CALL_LIMIT,
        target: dict | None = None,
    ) -> bool | None:
        """
        Call a service.

        Specify blocking=True to wait until service is executed.
        Waits a maximum of limit, which may be None for no timeout.

        If blocking = True, will return boolean if service executed
        successfully within limit.

        This method will fire an event to indicate the service has been called.

        Because the service is sent as an event you are not allowed to use
        the keys ATTR_DOMAIN and ATTR_SERVICE in your service_data.

        This method is a coroutine.
        """
        domain = domain.lower()
        service = service.lower()
        context = context or Context()
        service_data = service_data or {}

        try:
            handler = self._services[domain][service]
        except KeyError:
>           raise ServiceNotFound(domain, service) from None
E           homeassistant.exceptions.ServiceNotFound: Unable to find service camera.turn_off

blocking   = True
context    = Context(user_id=None, parent_id=None, id='20e520e6917f171d80558dcc4b10b219')
domain     = 'camera'
limit      = 10
self       = <homeassistant.core.ServiceRegistry object at 0x7fff442c1cd0>
service    = 'turn_off'
service_data = {'entity_id': 'camera.test_cam'}
target     = None

homeassistant/core.py:1438: ServiceNotFound
---------------------------- Captured stderr setup -----------------------------
DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG    asyncio:selector_events.py:59 Using selector: EpollSelector
----------------------------- Captured stderr call -----------------------------
INFO:homeassistant.loader:Loaded abode from homeassistant.components.abode
INFO:homeassistant.setup:Setting up abode
INFO:homeassistant.setup:Setup of domain abode took 0.0 seconds
DEBUG:abodepy:Cache found at: /build/source/tests/testing_config/abodepy_cache.pickle
WARNING:abodepy.utils:Empty pickle file: /build/source/tests/testing_config/abodepy_cache.pickle
DEBUG:abodepy:Removing invalid cache file: /build/source/tests/testing_config/abodepy_cache.pickle
ERROR:homeassistant.config_entries:Error setting up entry Mock Title for abode
Traceback (most recent call last):
  File "/build/source/homeassistant/config_entries.py", line 293, in async_setup
    result = await component.async_setup_entry(hass, self)  # type: ignore
  File "/build/source/homeassistant/components/abode/__init__.py", line 125, in async_setup_entry
    abode = await hass.async_add_executor_job(
  File "/nix/store/4s0h5aawbap3xhldxhcijvl26751qrjr-python3-3.8.9/lib/python3.8/concurrent/futures/thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/nix/store/6s0sdvk0crvcfyv7w33yc7w4bkzl0y1w-python3.8-abodepy-1.2.1/lib/python3.8/site-packages/abodepy/__init__.py", line 85, in __init__
    self._load_cache()
  File "/nix/store/6s0sdvk0crvcfyv7w33yc7w4bkzl0y1w-python3.8-abodepy-1.2.1/lib/python3.8/site-packages/abodepy/__init__.py", line 497, in _load_cache
    os.remove(self._cache_path)
FileNotFoundError: [Errno 2] No such file or directory: '/build/source/tests/testing_config/abodepy_cache.pickle'
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]:
component=abode>
```
2021-06-20 20:11:45 +02:00
Maximilian Bosch aa5c48152a
Merge pull request #127486 from petabyteboy/feature/fix-mautrix
use sqlalchemy 1.3.x for mautrix-telegram
2021-06-20 19:16:52 +02:00
Martin Weinelt 88782d1606
Merge pull request #127580 from dotlambda/herepy-init 2021-06-20 18:54:54 +02:00
Sandro 2c1be9e8d9
Merge pull request #127559 from fabaff/ecoaliface 2021-06-20 18:39:19 +02:00
Sandro 98ab358556
Merge pull request #127555 from fabaff/pypca 2021-06-20 18:29:26 +02:00
Sandro 6027be1ba2
Merge pull request #127551 from fabaff/aladdin-connect 2021-06-20 18:28:13 +02:00
Robert Schütz b86c53ddc4 home-assistant: test here_travel_time component 2021-06-20 18:22:04 +02:00
Sandro 94a1806bc9
Merge pull request #127539 from fabaff/enturclient 2021-06-20 18:18:47 +02:00
Robert Schütz 00bc61110b home-assistant: update component-packages.nix 2021-06-20 18:10:22 +02:00
Mario Rodas 2950b68d14
Merge pull request #127544 from r-ryantm/auto-update/jackett
jackett: 0.18.345 -> 0.18.364
2021-06-20 10:26:38 -05:00
Pavol Rusnak 68889ed61f
treewide: use quotes for url 2021-06-20 16:26:23 +02:00
Fabian Affolter d01388bf40 home-assistant: update component-packages 2021-06-20 14:40:48 +02:00
Fabian Affolter 03d0c01065 home-assistant: update component-packages 2021-06-20 13:59:03 +02:00
Fabian Affolter 4445a89c05 home-assistant: update component-packages 2021-06-20 13:37:03 +02:00
Martin Weinelt 05657665d5
Merge pull request #127543 from fabaff/pymill 2021-06-20 12:47:09 +02:00
Martin Weinelt c5a97e6662
Merge pull request #127541 from fabaff/pyipma 2021-06-20 12:46:26 +02:00
illustris aea0f9ce1f jicofo: 1.0-690 -> 1.0-756 2021-06-20 12:36:51 +02:00
illustris d0d7946c03 jitsi-videobridge: 2.1-416 -> 2.1-508 2021-06-20 12:36:51 +02:00
illustris a415ec434f jitsi-meet: stable/jitsi-meet_5390 -> stable/jitsi-meet_5963 2021-06-20 12:36:51 +02:00
Michele Guerini Rocco 57d4300e33
Merge pull request #126756 from Atemu/fix/xorg-bigelow-holmes-font-license
xorg: fix Bigelow & Holmes fonts license
2021-06-20 11:54:23 +02:00
R. RyanTM 4f1b18b6b7 jackett: 0.18.345 -> 0.18.364 2021-06-20 09:48:08 +00:00
Fabian Affolter 0dc2567bee home-assistant: enable mill tests 2021-06-20 11:46:35 +02:00
Fabian Affolter faad598cbf home-assistant: update component-packages 2021-06-20 11:45:45 +02:00
Fabian Affolter 5988bc29b3 home-assistant: enable ipma tests 2021-06-20 11:33:01 +02:00
Fabian Affolter 2bbc83edc4 home-assistant: update component-packages 2021-06-20 11:31:59 +02:00
Milan Pässler 8772f33bdd
mautrix-telegram: use sqlalchemy 1.3.x 2021-06-20 11:24:24 +02:00
Fabian Affolter 9c69513e1b home-assistant: update component-packages 2021-06-20 11:14:38 +02:00
Fabian Affolter 831f12fe6e home-assistant: update component-packages 2021-06-20 10:50:33 +02:00
Maximilian Bosch 9770439689
Merge pull request #127376 from Ma27/bump-grafana
grafana: 8.0.2 -> 8.0.3
2021-06-20 10:04:16 +02:00
Mario Rodas f2122ea581
Merge pull request #127429 from marsam/update-pgvector
postgresqlPackages.pgvector: 0.1.6 -> 0.1.7
2021-06-19 19:28:41 -05:00
Mario Rodas 62796d8e8a
Merge pull request #127242 from r-ryantm/auto-update/imgproxy
imgproxy: 2.16.3 -> 2.16.4
2021-06-19 19:26:02 -05:00