Commit Graph

14524 Commits

Author SHA1 Message Date
Robert Schütz
417b79b504 samba: 4.13.7 -> 4.14.4
fixes https://www.samba.org/samba/security/CVE-2021-20254.html

(cherry picked from commit 2db53555ee297acb1dbce22e4342ac6f37e14407)
2021-05-28 23:06:49 -07:00
Ryan Mulligan
4594e54063 nixos/discourse: Add rsync dependency
It is used for backup importing.

(cherry picked from commit e9c5ee1c4e48dc996773ccdbc0347f18fad31db9)
2021-05-28 22:16:10 -07:00
talyz
ce5587e7bb discourse: 2.6.5 -> 2.7.0
(cherry picked from commit 42b8e7685d5fe5280f8f6101a6d19016b92f3a5c)
2021-05-28 22:16:10 -07:00
Pacman99
b9c25438fd mx-puppet-discord: set pname
(cherry picked from commit 166aabe0c7ccd972ea3be092ab900d3a637216ef)
2021-05-29 00:34:29 +00:00
Pacman99
684d2e7924 matrix-appservice-slack: set pname
(cherry picked from commit a811e7385c6a4dd8eeb871f994939ff99260fa75)
2021-05-29 00:34:29 +00:00
Pacman99
c444b9f55b matrix-appservice-irc: set pname
(cherry picked from commit 41e46599ea2b6b947e14ccb3f1d38326bced3585)
2021-05-29 00:34:29 +00:00
Hedtke, Moritz
fcddce0f10
wordpress: 5.7.1 -> 5.7.2
(cherry picked from commit 5fa469b6f2f599a7869de69e6a994059d750ac92)
2021-05-28 20:34:51 +02:00
Robert Schütz
989c034206 mediatomb: use ffmpeg instead of ffmpeg_3 (#123487)
(cherry picked from commit 81abd8d0acc938f147ce98176b6cf679d398d2cc)
2021-05-28 16:10:23 +02:00
Michael Lingelbach
676ddafd3d
nixos/dendrite: remove (#124524)
* The options tlsKey and tlsCert require being accessible by DynamicUser at runtime, which currently requires copying the files into the matrix service state directory. Fixing this might require breaking changes. Thus the module should not be included in a stable release.
2021-05-27 10:41:05 +02:00
Martin Weinelt
66fdd3939d home-assistant: disable flaky test in prometheus component
______________________________ test_view[pyloop] _______________________________
[gw49] linux -- Python 3.8.9 /nix/store/7i305r9i4rsb1hmqwkdmphjf430niq3l-python3-3.8.9/bin/python3.8
hass = <homeassistant.core.HomeAssistant object at 0xffff56d041c0>
hass_client = <function hass_client.<locals>.auth_client at 0xffff56a11ca0>
    async def test_view(hass, hass_client):
        """Test prometheus metrics view."""
        client = await prometheus_client(hass, hass_client)
        resp = await client.get(prometheus.API_ENDPOINT)

        assert resp.status == 200
        assert resp.headers["content-type"] == CONTENT_TYPE_TEXT_PLAIN
        body = await resp.text()
        body = body.split("\n")

        assert len(body) > 3

        assert "# HELP python_info Python platform information" in body
        assert (
            "# HELP python_gc_objects_collected_total "
            "Objects collected during gc" in body
        )

        assert (
            'temperature_c{domain="sensor",'
            'entity="sensor.outside_temperature",'
            'friendly_name="Outside Temperature"} 15.6' in body
        )

        assert (
            'battery_level_percent{domain="sensor",'
            'entity="sensor.outside_temperature",'
            'friendly_name="Outside Temperature"} 12.0' in body
        )

        assert (
            'current_temperature_c{domain="climate",'
            'entity="climate.heatpump",'
            'friendly_name="HeatPump"} 25.0' in body
        )

>       assert (
            'humidifier_target_humidity_percent{domain="humidifier",'
            'entity="humidifier.humidifier",'
            'friendly_name="Humidifier"} 68.0' in body
        )
E       assert 'humidifier_target_humidity_percent{domain="humidifier",entity="humidifier.humidifier",friendly_name="Humidifier"} 68.0' in ['# HELP python_gc_objects_collected_total Objects collected during gc', '# TYPE python_gc_objects_collected_total cou...al{generation="2"} 175103.0', '# HELP python_gc_objects_uncollectable_total Uncollectable object found during GC', ...]
tests/components/prometheus/test_init.py:130: AssertionError
---------------------------- 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 prometheus from homeassistant.components.prometheus
INFO:homeassistant.loader:Loaded http from homeassistant.components.http
DEBUG:homeassistant.setup:Dependency prometheus will wait for dependencies ['http']
INFO:homeassistant.setup:Setting up http
INFO:homeassistant.setup:Setup of domain http took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=http>
INFO:homeassistant.setup:Setting up prometheus
INFO:homeassistant.setup:Setup of domain prometheus took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=prometheus>
INFO:homeassistant.loader:Loaded sensor from homeassistant.components.sensor
INFO:homeassistant.loader:Loaded demo from homeassistant.components.demo
INFO:homeassistant.setup:Setting up sensor
INFO:homeassistant.setup:Setup of domain sensor took 0.0 seconds
DEBUG:homeassistant.setup:Dependency demo will wait for dependencies ['conversation', 'zone', 'group']
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=sensor>
INFO:homeassistant.loader:Loaded conversation from homeassistant.components.conversation
INFO:homeassistant.loader:Loaded zone from homeassistant.components.zone
INFO:homeassistant.setup:Setting up conversation
INFO:homeassistant.loader:Loaded group from homeassistant.components.group
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=conversation, service=process>
INFO:homeassistant.setup:Setup of domain conversation took 0.0 seconds
INFO:homeassistant.loader:Loaded climate from homeassistant.components.climate
INFO:homeassistant.setup:Setting up zone
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=conversation>
INFO:homeassistant.setup:Setting up group
INFO:homeassistant.setup:Setting up climate
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=set_hvac_mode>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=set_preset_mode>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=set_aux_heat>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=set_temperature>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=set_humidity>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=set_fan_mode>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=climate, service=set_swing_mode>
INFO:homeassistant.setup:Setup of domain climate took 0.0 seconds
DEBUG:homeassistant.setup:Dependency demo will wait for dependencies ['zone', 'group']
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=climate>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=group, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=group, service=set>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=group, service=remove>
INFO:homeassistant.setup:Setup of domain group took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=zone, service=reload>
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=group>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=zone.home, old_state=None, new_state=<state zone.home=zoning; latitude=32.87336, longitude=-117.22743, radius=100, passive=False, editable=True, friendly_name=test home, icon=mdi:home @ 2021-05-12T16:02:29.918726+00:00>>
DEBUG:homeassistant.components.prometheus:Handling state update for zone.home
INFO:homeassistant.setup:Setup of domain zone took 0.1 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=zone>
INFO:homeassistant.setup:Setting up demo
INFO:homeassistant.setup:Setup of domain demo took 0.0 seconds
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=demo>
INFO:homeassistant.components.sensor:Setting up sensor.demo
INFO:homeassistant.components.climate:Setting up climate.demo
INFO:homeassistant.helpers.entity_registry:Registered new sensor.demo entity: sensor.outside_temperature
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.outside_temperature>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.outside_temperature, old_state=None, new_state=<state sensor.outside_temperature=15.6; battery_level=12, unit_of_measurement=°C, friendly_name=Outside Temperature, device_class=temperature @ 2021-05-12T16:02:29.931161+00:00>>
INFO:homeassistant.helpers.entity_registry:Registered new sensor.demo entity: sensor.outside_humidity
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.outside_humidity>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.outside_humidity, old_state=None, new_state=<state sensor.outside_humidity=54; unit_of_measurement=%, friendly_name=Outside Humidity, device_class=humidity @ 2021-05-12T16:02:29.933965+00:00>>
INFO:homeassistant.helpers.entity_registry:Registered new sensor.demo entity: sensor.carbon_monoxide
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.outside_humidity
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.carbon_monoxide>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.carbon_monoxide, old_state=None, new_state=<state sensor.carbon_monoxide=54; unit_of_measurement=ppm, friendly_name=Carbon monoxide, device_class=carbon_monoxide @ 2021-05-12T16:02:29.954947+00:00>>
INFO:homeassistant.helpers.entity_registry:Registered new sensor.demo entity: sensor.carbon_dioxide
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.carbon_monoxide
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.carbon_dioxide>
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.outside_temperature
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.carbon_dioxide, old_state=None, new_state=<state sensor.carbon_dioxide=54; battery_level=14, unit_of_measurement=ppm, friendly_name=Carbon dioxide, device_class=carbon_dioxide @ 2021-05-12T16:02:29.958608+00:00>>
INFO:homeassistant.helpers.entity_registry:Registered new climate.demo entity: climate.heatpump
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=climate.heatpump>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=climate.heatpump, old_state=None, new_state=<state climate.heatpump=heat; hvac_modes=['heat', 'off'], min_temp=7.0, max_temp=35.0, current_temperature=25.0, temperature=20.0, hvac_action=heating, friendly_name=HeatPump, supported_features=1 @ 2021-05-12T16:02:29.970499+00:00>>
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.carbon_dioxide
DEBUG:homeassistant.components.prometheus:Handling state update for climate.heatpump
INFO:homeassistant.helpers.entity_registry:Registered new climate.demo entity: climate.hvac
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=climate.hvac>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=climate.hvac, old_state=None, new_state=<state climate.hvac=cool; hvac_modes=['off', 'heat', 'cool', 'auto', 'dry', 'fan_only'], min_temp=7, max_temp=35, min_humidity=30, max_humidity=99, fan_modes=['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], swing_modes=['Auto', '1', '2', '3', 'Off'], current_temperature=22, temperature=21, target_temp_high=None, target_temp_low=None, current_humidity=54, humidity=67, fan_mode=On High, hvac_action=cooling, swing_mode=Off, aux_heat=off, friendly_name=Hvac, supported_features=111 @ 2021-05-12T16:02:29.980988+00:00>>
INFO:homeassistant.helpers.entity_registry:Registered new climate.demo entity: climate.ecobee
DEBUG:homeassistant.core:Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=climate.ecobee>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=climate.ecobee, old_state=None, new_state=<state climate.ecobee=heat_cool; hvac_modes=['heat_cool', 'cool', 'heat'], min_temp=7, max_temp=35, fan_modes=['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], preset_modes=['home', 'eco'], swing_modes=['Auto', '1', '2', '3', 'Off'], current_temperature=23, target_temp_high=24, target_temp_low=21, fan_mode=Auto Low, preset_mode=home, swing_mode=Auto, friendly_name=Ecobee, supported_features=58 @ 2021-05-12T16:02:29.984441+00:00>>
DEBUG:homeassistant.components.prometheus:Handling state update for climate.hvac
DEBUG:homeassistant.components.prometheus:Handling state update for climate.ecobee
INFO:homeassistant.loader:Loaded humidifier from homeassistant.components.humidifier
INFO:homeassistant.setup:Setting up humidifier
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=humidifier, service=turn_on>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=humidifier, service=turn_off>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=humidifier, service=toggle>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=humidifier, service=set_mode>
DEBUG:homeassistant.core:Bus:Handling <Event service_registered[L]: domain=humidifier, service=set_humidity>
INFO:homeassistant.setup:Setup of domain humidifier took 0.0 seconds
INFO:homeassistant.components.humidifier:Setting up humidifier.demo
DEBUG:homeassistant.core:Bus:Handling <Event component_loaded[L]: component=humidifier>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.television_energy, old_state=None, new_state=<state sensor.television_energy=74; unit_of_measurement=kWh, friendly_name=Television Energy @ 2021-05-12T16:02:30.004051+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.radio_energy, old_state=None, new_state=<state sensor.radio_energy=14; unit_of_measurement=kWh, friendly_name=Radio Energy, device_class=power @ 1970-01-02T00:00:00+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.electricity_price, old_state=None, new_state=<state sensor.electricity_price=0.123; unit_of_measurement=SEK/kWh, friendly_name=Electricity price @ 2021-05-12T16:02:30.007311+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.wind_direction, old_state=None, new_state=<state sensor.wind_direction=25; unit_of_measurement=°, friendly_name=Wind Direction @ 2021-05-12T16:02:30.008486+00:00>>
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.television_energy
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.radio_energy
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.electricity_price
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.wind_direction
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=sensor.sps30_pm_1um_weight_concentration, old_state=None, new_state=<state sensor.sps30_pm_1um_weight_concentration=3.7069; unit_of_measurement=µg/m³, friendly_name=SPS30 PM <1µm Weight concentration @ 2021-05-12T16:02:30.042774+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=humidifier.humidifier, old_state=None, new_state=<state humidifier.humidifier=on; min_humidity=0, max_humidity=100, humidity=68, friendly_name=Humidifier, supported_features=0, device_class=humidifier @ 2021-05-12T16:02:30.048191+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=humidifier.dehumidifier, old_state=None, new_state=<state humidifier.dehumidifier=on; min_humidity=0, max_humidity=100, humidity=54, friendly_name=Dehumidifier, supported_features=0, device_class=dehumidifier @ 2021-05-12T16:02:30.049812+00:00>>
DEBUG:homeassistant.core:Bus:Handling <Event state_changed[L]: entity_id=humidifier.hygrostat, old_state=None, new_state=<state humidifier.hygrostat=on; min_humidity=0, max_humidity=100, available_modes=['home', 'eco'], humidity=50, mode=home, friendly_name=Hygrostat, supported_features=1 @ 2021-05-12T16:02:30.051561+00:00>>
DEBUG:homeassistant.components.http.auth:Authenticated 127.0.0.1 for /api/prometheus using bearer token
DEBUG:homeassistant.components.prometheus:Handling state update for sensor.sps30_pm_1um_weight_concentration
DEBUG:homeassistant.components.http.view:Serving /api/prometheus to 127.0.0.1 (auth: True)
DEBUG:homeassistant.components.prometheus:Handling state update for humidifier.hygrostat
DEBUG:homeassistant.components.prometheus:Handling state update for humidifier.dehumidifier
DEBUG:homeassistant.components.prometheus:Handling state update for humidifier.humidifier
DEBUG:homeassistant.components.prometheus:Received Prometheus metrics request
INFO:aiohttp.access:127.0.0.1 [12/May/2021:16:02:30 +0000] "GET /api/prometheus HTTP/1.1" 200 12216 "-" "Python/3.8 aiohttp/3.7.4.post0"
------------------------------ Captured log call -------------------------------
INFO     homeassistant.loader:loader.py:344 Loaded prometheus from homeassistant.components.prometheus
INFO     homeassistant.loader:loader.py:344 Loaded http from homeassistant.components.http
DEBUG    homeassistant.setup:setup.py:130 Dependency prometheus will wait for dependencies ['http']
INFO     homeassistant.setup:setup.py:217 Setting up http
INFO     homeassistant.setup:setup.py:265 Setup of domain http took 0.0 seconds
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=http>
INFO     homeassistant.setup:setup.py:217 Setting up prometheus
INFO     homeassistant.setup:setup.py:265 Setup of domain prometheus took 0.0 seconds
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=prometheus>
INFO     homeassistant.loader:loader.py:344 Loaded sensor from homeassistant.components.sensor
INFO     homeassistant.loader:loader.py:344 Loaded demo from homeassistant.components.demo
INFO     homeassistant.setup:setup.py:217 Setting up sensor
INFO     homeassistant.setup:setup.py:265 Setup of domain sensor took 0.0 seconds
DEBUG    homeassistant.setup:setup.py:130 Dependency demo will wait for dependencies ['conversation', 'zone', 'group']
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=sensor>
INFO     homeassistant.loader:loader.py:344 Loaded conversation from homeassistant.components.conversation
INFO     homeassistant.loader:loader.py:344 Loaded zone from homeassistant.components.zone
INFO     homeassistant.setup:setup.py:217 Setting up conversation
INFO     homeassistant.loader:loader.py:344 Loaded group from homeassistant.components.group
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=conversation, service=process>
INFO     homeassistant.setup:setup.py:265 Setup of domain conversation took 0.0 seconds
INFO     homeassistant.loader:loader.py:344 Loaded climate from homeassistant.components.climate
INFO     homeassistant.setup:setup.py:217 Setting up zone
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=conversation>
INFO     homeassistant.setup:setup.py:217 Setting up group
INFO     homeassistant.setup:setup.py:217 Setting up climate
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=turn_on>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=turn_off>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=set_hvac_mode>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=set_preset_mode>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=set_aux_heat>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=set_temperature>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=set_humidity>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=set_fan_mode>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=climate, service=set_swing_mode>
INFO     homeassistant.setup:setup.py:265 Setup of domain climate took 0.0 seconds
DEBUG    homeassistant.setup:setup.py:130 Dependency demo will wait for dependencies ['zone', 'group']
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=climate>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=group, service=reload>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=group, service=set>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=group, service=remove>
INFO     homeassistant.setup:setup.py:265 Setup of domain group took 0.1 seconds
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=zone, service=reload>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=group>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=zone.home, old_state=None, new_state=<state zone.home=zoning; latitude=32.87336, longitude=-117.22743, radius=100, passive=False, editable=True, friendly_name=test home, icon=mdi:home @ 2021-05-12T16:02:29.918726+00:00>>
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for zone.home
INFO     homeassistant.setup:setup.py:265 Setup of domain zone took 0.1 seconds
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=zone>
INFO     homeassistant.setup:setup.py:217 Setting up demo
INFO     homeassistant.setup:setup.py:265 Setup of domain demo took 0.0 seconds
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=demo>
INFO     homeassistant.components.sensor:entity_platform.py:217 Setting up sensor.demo
INFO     homeassistant.components.climate:entity_platform.py:217 Setting up climate.demo
INFO     homeassistant.helpers.entity_registry:entity_registry.py:297 Registered new sensor.demo entity: sensor.outside_temperature
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.outside_temperature>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.outside_temperature, old_state=None, new_state=<state sensor.outside_temperature=15.6; battery_level=12, unit_of_measurement=°C, friendly_name=Outside Temperature, device_class=temperature @ 2021-05-12T16:02:29.931161+00:00>>
INFO     homeassistant.helpers.entity_registry:entity_registry.py:297 Registered new sensor.demo entity: sensor.outside_humidity
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.outside_humidity>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.outside_humidity, old_state=None, new_state=<state sensor.outside_humidity=54; unit_of_measurement=%, friendly_name=Outside Humidity, device_class=humidity @ 2021-05-12T16:02:29.933965+00:00>>
INFO     homeassistant.helpers.entity_registry:entity_registry.py:297 Registered new sensor.demo entity: sensor.carbon_monoxide
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.outside_humidity
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.carbon_monoxide>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.carbon_monoxide, old_state=None, new_state=<state sensor.carbon_monoxide=54; unit_of_measurement=ppm, friendly_name=Carbon monoxide, device_class=carbon_monoxide @ 2021-05-12T16:02:29.954947+00:00>>
INFO     homeassistant.helpers.entity_registry:entity_registry.py:297 Registered new sensor.demo entity: sensor.carbon_dioxide
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.carbon_monoxide
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=sensor.carbon_dioxide>
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.outside_temperature
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.carbon_dioxide, old_state=None, new_state=<state sensor.carbon_dioxide=54; battery_level=14, unit_of_measurement=ppm, friendly_name=Carbon dioxide, device_class=carbon_dioxide @ 2021-05-12T16:02:29.958608+00:00>>
INFO     homeassistant.helpers.entity_registry:entity_registry.py:297 Registered new climate.demo entity: climate.heatpump
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=climate.heatpump>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=climate.heatpump, old_state=None, new_state=<state climate.heatpump=heat; hvac_modes=['heat', 'off'], min_temp=7.0, max_temp=35.0, current_temperature=25.0, temperature=20.0, hvac_action=heating, friendly_name=HeatPump, supported_features=1 @ 2021-05-12T16:02:29.970499+00:00>>
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.carbon_dioxide
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for climate.heatpump
INFO     homeassistant.helpers.entity_registry:entity_registry.py:297 Registered new climate.demo entity: climate.hvac
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=climate.hvac>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=climate.hvac, old_state=None, new_state=<state climate.hvac=cool; hvac_modes=['off', 'heat', 'cool', 'auto', 'dry', 'fan_only'], min_temp=7, max_temp=35, min_humidity=30, max_humidity=99, fan_modes=['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], swing_modes=['Auto', '1', '2', '3', 'Off'], current_temperature=22, temperature=21, target_temp_high=None, target_temp_low=None, current_humidity=54, humidity=67, fan_mode=On High, hvac_action=cooling, swing_mode=Off, aux_heat=off, friendly_name=Hvac, supported_features=111 @ 2021-05-12T16:02:29.980988+00:00>>
INFO     homeassistant.helpers.entity_registry:entity_registry.py:297 Registered new climate.demo entity: climate.ecobee
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event entity_registry_updated[L]: action=create, entity_id=climate.ecobee>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=climate.ecobee, old_state=None, new_state=<state climate.ecobee=heat_cool; hvac_modes=['heat_cool', 'cool', 'heat'], min_temp=7, max_temp=35, fan_modes=['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], preset_modes=['home', 'eco'], swing_modes=['Auto', '1', '2', '3', 'Off'], current_temperature=23, target_temp_high=24, target_temp_low=21, fan_mode=Auto Low, preset_mode=home, swing_mode=Auto, friendly_name=Ecobee, supported_features=58 @ 2021-05-12T16:02:29.984441+00:00>>
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for climate.hvac
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for climate.ecobee
INFO     homeassistant.loader:loader.py:344 Loaded humidifier from homeassistant.components.humidifier
INFO     homeassistant.setup:setup.py:217 Setting up humidifier
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=humidifier, service=turn_on>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=humidifier, service=turn_off>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=humidifier, service=toggle>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=humidifier, service=set_mode>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event service_registered[L]: domain=humidifier, service=set_humidity>
INFO     homeassistant.setup:setup.py:265 Setup of domain humidifier took 0.0 seconds
INFO     homeassistant.components.humidifier:entity_platform.py:217 Setting up humidifier.demo
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event component_loaded[L]: component=humidifier>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.television_energy, old_state=None, new_state=<state sensor.television_energy=74; unit_of_measurement=kWh, friendly_name=Television Energy @ 2021-05-12T16:02:30.004051+00:00>>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.radio_energy, old_state=None, new_state=<state sensor.radio_energy=14; unit_of_measurement=kWh, friendly_name=Radio Energy, device_class=power @ 1970-01-02T00:00:00+00:00>>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.electricity_price, old_state=None, new_state=<state sensor.electricity_price=0.123; unit_of_measurement=SEK/kWh, friendly_name=Electricity price @ 2021-05-12T16:02:30.007311+00:00>>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.wind_direction, old_state=None, new_state=<state sensor.wind_direction=25; unit_of_measurement=°, friendly_name=Wind Direction @ 2021-05-12T16:02:30.008486+00:00>>
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.television_energy
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.radio_energy
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.electricity_price
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.wind_direction
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=sensor.sps30_pm_1um_weight_concentration, old_state=None, new_state=<state sensor.sps30_pm_1um_weight_concentration=3.7069; unit_of_measurement=µg/m³, friendly_name=SPS30 PM <1µm Weight concentration @ 2021-05-12T16:02:30.042774+00:00>>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=humidifier.humidifier, old_state=None, new_state=<state humidifier.humidifier=on; min_humidity=0, max_humidity=100, humidity=68, friendly_name=Humidifier, supported_features=0, device_class=humidifier @ 2021-05-12T16:02:30.048191+00:00>>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=humidifier.dehumidifier, old_state=None, new_state=<state humidifier.dehumidifier=on; min_humidity=0, max_humidity=100, humidity=54, friendly_name=Dehumidifier, supported_features=0, device_class=dehumidifier @ 2021-05-12T16:02:30.049812+00:00>>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event state_changed[L]: entity_id=humidifier.hygrostat, old_state=None, new_state=<state humidifier.hygrostat=on; min_humidity=0, max_humidity=100, available_modes=['home', 'eco'], humidity=50, mode=home, friendly_name=Hygrostat, supported_features=1 @ 2021-05-12T16:02:30.051561+00:00>>
DEBUG    homeassistant.components.http.auth:auth.py:127 Authenticated 127.0.0.1 for /api/prometheus using bearer token
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for sensor.sps30_pm_1um_weight_concentration
DEBUG    homeassistant.components.http.view:view.py:120 Serving /api/prometheus to 127.0.0.1 (auth: True)
DEBUG    homeassistant.components.prometheus:__init__.py:491 Received Prometheus metrics request
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for humidifier.hygrostat
INFO     aiohttp.access:web_log.py:206 127.0.0.1 [12/May/2021:16:02:30 +0000] "GET /api/prometheus HTTP/1.1" 200 12216 "-" "Python/3.8 aiohttp/3.7.4.post0"
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for humidifier.dehumidifier
DEBUG    homeassistant.components.prometheus:__init__.py:152 Handling state update for humidifier.humidifier
--------------------------- Captured stderr teardown ---------------------------
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_stop[L]>
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_final_write[L]>
INFO:tests.common:Writing data to auth: {'version': 1, 'key': 'auth', 'data': {'users': [{'id': '7addd24334454b2fa200bec8bca48fb7', 'group_ids': ['system-admin'], 'is_owner': False, 'is_active': True, 'name': 'Mock User', 'system_generated': False}], 'groups': [{'id': 'system-admin', 'name': 'Administrators'}, {'id': 'system-users', 'name': 'Users'}, {'id': 'system-read-only', 'name': 'Read Only'}], 'credentials': [{'id': 'mock-credential-id', 'user_id': '7addd24334454b2fa200bec8bca48fb7', 'auth_provider_type': 'homeassistant', 'auth_provider_id': None, 'data': {'username': 'admin'}}], 'refresh_tokens': [{'id': '6c4c17c1d99848ef922f8e3d91e047e8', 'user_id': '7addd24334454b2fa200bec8bca48fb7', 'client_id': 'https://example.com/app', 'client_name': None, 'client_icon': None, 'token_type': 'normal', 'created_at': '2021-05-12T16:02:29.787536+00:00', 'access_token_expiration': 1800.0, 'token': 'f6360b0454c9a629a55879cf598e44469f96fb84ba590a4e1b54a096289b4fa65ab044f54d56ef38cfac698c26840e6025a67062ca3fc8bfa324093451bf12eb', 'jwt_key': 'e15fba373768d8be7a4c3b4055213e5fa6a9e443bcfe406e519b91f38cffc1fcf8463ffa86ec5b8824591f123f6f7059a4c15dcfcd30db3a673c3b9da4dd9dd3', 'last_used_at': '2021-05-12T16:02:29.787737+00:00', 'last_used_ip': None, 'credential_id': 'mock-credential-id', 'version': '2021.5.3'}]}}
INFO:tests.common:Writing data to core.entity_registry: {'version': 1, 'key': 'core.entity_registry', 'data': {'entities': [{'entity_id': 'sensor.outside_temperature', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_1', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'temperature', 'unit_of_measurement': '°C', 'original_name': 'Outside Temperature', 'original_icon': None}, {'entity_id': 'sensor.outside_humidity', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_2', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'humidity', 'unit_of_measurement': '%', 'original_name': 'Outside Humidity', 'original_icon': None}, {'entity_id': 'sensor.carbon_monoxide', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_3', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'carbon_monoxide', 'unit_of_measurement': 'ppm', 'original_name': 'Carbon monoxide', 'original_icon': None}, {'entity_id': 'sensor.carbon_dioxide', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_4', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'carbon_dioxide', 'unit_of_measurement': 'ppm', 'original_name': 'Carbon dioxide', 'original_icon': None}, {'entity_id': 'climate.heatpump', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'climate_1', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': {'hvac_modes': ['heat', 'off'], 'min_temp': 7.0, 'max_temp': 35.0}, 'supported_features': 1, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'HeatPump', 'original_icon': None}, {'entity_id': 'climate.hvac', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'climate_2', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': {'hvac_modes': ['off', 'heat', 'cool', 'auto', 'dry', 'fan_only'], 'min_temp': 7, 'max_temp': 35, 'min_humidity': 30, 'max_humidity': 99, 'fan_modes': ['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], 'swing_modes': ['Auto', '1', '2', '3', 'Off']}, 'supported_features': 111, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'Hvac', 'original_icon': None}, {'entity_id': 'climate.ecobee', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'climate_3', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': {'hvac_modes': ['heat_cool', 'cool', 'heat'], 'min_temp': 7, 'max_temp': 35, 'fan_modes': ['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], 'preset_modes': ['home', 'eco'], 'swing_modes': ['Auto', '1', '2', '3', 'Off']}, 'supported_features': 58, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'Ecobee', 'original_icon': None}]}}
DEBUG:homeassistant.core:Bus:Handling <Event homeassistant_close[L]>
---------------------------- Captured log teardown -----------------------------
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event homeassistant_stop[L]>
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event homeassistant_final_write[L]>
INFO     tests.common:common.py:1013 Writing data to auth: {'version': 1, 'key': 'auth', 'data': {'users': [{'id': '7addd24334454b2fa200bec8bca48fb7', 'group_ids': ['system-admin'], 'is_owner': False, 'is_active': True, 'name': 'Mock User', 'system_generated': False}], 'groups': [{'id': 'system-admin', 'name': 'Administrators'}, {'id': 'system-users', 'name': 'Users'}, {'id': 'system-read-only', 'name': 'Read Only'}], 'credentials': [{'id': 'mock-credential-id', 'user_id': '7addd24334454b2fa200bec8bca48fb7', 'auth_provider_type': 'homeassistant', 'auth_provider_id': None, 'data': {'username': 'admin'}}], 'refresh_tokens': [{'id': '6c4c17c1d99848ef922f8e3d91e047e8', 'user_id': '7addd24334454b2fa200bec8bca48fb7', 'client_id': 'https://example.com/app', 'client_name': None, 'client_icon': None, 'token_type': 'normal', 'created_at': '2021-05-12T16:02:29.787536+00:00', 'access_token_expiration': 1800.0, 'token': 'f6360b0454c9a629a55879cf598e44469f96fb84ba590a4e1b54a096289b4fa65ab044f54d56ef38cfac698c26840e6025a67062ca3fc8bfa324093451bf12eb', 'jwt_key': 'e15fba373768d8be7a4c3b4055213e5fa6a9e443bcfe406e519b91f38cffc1fcf8463ffa86ec5b8824591f123f6f7059a4c15dcfcd30db3a673c3b9da4dd9dd3', 'last_used_at': '2021-05-12T16:02:29.787737+00:00', 'last_used_ip': None, 'credential_id': 'mock-credential-id', 'version': '2021.5.3'}]}}
INFO     tests.common:common.py:1013 Writing data to core.entity_registry: {'version': 1, 'key': 'core.entity_registry', 'data': {'entities': [{'entity_id': 'sensor.outside_temperature', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_1', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'temperature', 'unit_of_measurement': '°C', 'original_name': 'Outside Temperature', 'original_icon': None}, {'entity_id': 'sensor.outside_humidity', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_2', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'humidity', 'unit_of_measurement': '%', 'original_name': 'Outside Humidity', 'original_icon': None}, {'entity_id': 'sensor.carbon_monoxide', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_3', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'carbon_monoxide', 'unit_of_measurement': 'ppm', 'original_name': 'Carbon monoxide', 'original_icon': None}, {'entity_id': 'sensor.carbon_dioxide', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'sensor_4', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': None, 'supported_features': 0, 'device_class': 'carbon_dioxide', 'unit_of_measurement': 'ppm', 'original_name': 'Carbon dioxide', 'original_icon': None}, {'entity_id': 'climate.heatpump', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'climate_1', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': {'hvac_modes': ['heat', 'off'], 'min_temp': 7.0, 'max_temp': 35.0}, 'supported_features': 1, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'HeatPump', 'original_icon': None}, {'entity_id': 'climate.hvac', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'climate_2', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': {'hvac_modes': ['off', 'heat', 'cool', 'auto', 'dry', 'fan_only'], 'min_temp': 7, 'max_temp': 35, 'min_humidity': 30, 'max_humidity': 99, 'fan_modes': ['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], 'swing_modes': ['Auto', '1', '2', '3', 'Off']}, 'supported_features': 111, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'Hvac', 'original_icon': None}, {'entity_id': 'climate.ecobee', 'config_entry_id': None, 'device_id': None, 'area_id': None, 'unique_id': 'climate_3', 'platform': 'demo', 'name': None, 'icon': None, 'disabled_by': None, 'capabilities': {'hvac_modes': ['heat_cool', 'cool', 'heat'], 'min_temp': 7, 'max_temp': 35, 'fan_modes': ['On Low', 'On High', 'Auto Low', 'Auto High', 'Off'], 'preset_modes': ['home', 'eco'], 'swing_modes': ['Auto', '1', '2', '3', 'Off']}, 'supported_features': 58, 'device_class': None, 'unit_of_measurement': None, 'original_name': 'Ecobee', 'original_icon': None}]}}
DEBUG    homeassistant.core:core.py:709 Bus:Handling <Event homeassistant_close[L]>

(cherry picked from commit df1bf616aea4a925a7432076ec93de5e4fd95fdc)
2021-05-26 04:54:13 +02:00
Izorkin
65d4fff84d nginxMainline: 1.20.0 -> 1.21.0
(cherry picked from commit 0a7feef8094d65a4b6a9806b61ca9843f70c68a3)
2021-05-25 14:52:24 -07:00
Izorkin
6e4f30b5a0 nginxStable: 1.20.0 -> 1.20.1
(cherry picked from commit 919dd5497aaf200a7d8e8c67b56b4dd165eac112)
2021-05-25 14:52:24 -07:00
Zane van Iperen
92e46f3619 navidrome: 0.42.1 -> 0.43.0
(cherry picked from commit 88305beb434f799d70d1d69dc8f9909c5d67fb06)
2021-05-25 08:46:47 -07:00
Thomas Gerbet
35f631618f redis: 6.2.1 -> 6.2.3
Fixes CVE-2021-29477 and CVE-2021-29478.

https://github.com/redis/redis/blob/6.2.3/00-RELEASENOTES
(cherry picked from commit 0d1b14161acc0c79b0712ea4f4c476684bfa41a3)
2021-05-24 08:44:43 +02:00
Jonathan Ringer
11a9ac00fc
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
 pkgs/tools/networking/xh/default.nix
2021-05-22 18:19:10 -07:00
Sandro
3ac63fbb09
Merge pull request #123425 from erictapen/osrm-backend-5.25.0 2021-05-23 02:00:08 +02:00
Martin Weinelt
aec6be52dd
Merge pull request #124044 from mweinelt/pinnwand 2021-05-22 23:23:20 +02:00
Stéphan Kochen
18e4425e23 reproxy: fix darwin build 2021-05-22 21:04:35 +02:00
Martin Weinelt
2d9558b33b
pinnwand: 1.2.3 -> 1.3.0
https://github.com/supakeen/pinnwand/releases/tag/v1.3.0
2021-05-22 20:33:19 +02:00
Gabriel Ebner
fc9a86afb0
Merge pull request #124030 from gebner/abseil202103241
abseil-cpp: 20200923.3 -> 20210324.1
2021-05-22 19:18:03 +02:00
Gabriel Ebner
5fe63fc3fb rippled: fix hashes 2021-05-22 16:57:32 +02:00
R. RyanTM
3ddabfb9c3
influxdb: 1.8.5 -> 1.8.6 (#123973) 2021-05-22 13:31:09 +00:00
Jonathan Ringer
7507aed4e1
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
 pkgs/development/tools/rust/cargo-expand/default.nix
 pkgs/tools/misc/blflash/default.nix
2021-05-21 19:49:05 -07:00
polygon
b74dbf111b calibre-web: Update dependency version
Babel requirement is <2.9 and nixpkgs provides 2.9.0
Updated the requirement definition. Upstream did this as well and
according to the Babel changelogs, there were no breaking changes
between 2.8 and 2.9. Server started up properly, no functionality
test, though.
2021-05-21 19:02:10 -07:00
github-actions[bot]
901fb5e64e
Merge master into staging-next 2021-05-22 00:56:03 +00:00
Sumner Evans
15edb65bae pr-tracker: init at 1.0.0 2021-05-21 16:45:35 -07:00
蛇崩乃音
c6913eeb39 tailscale: 1.8.3 -> 1.8.5 2021-05-21 16:21:26 -07:00
Maximilian Bosch
15a95d3466
Merge pull request #123870 from beardhatcode/bump/nextcloud
nextcloud: 21.0.1 -> 21.0.2
2021-05-21 22:49:37 +02:00
Martin Weinelt
56fc40adfe
Merge pull request #122893 from piegamesde/update-appservice-irc
matrix-appservice-irc: 0.25.0 -> 0.26.0
2021-05-21 22:36:21 +02:00
Sandro
38b6fd832a
Merge pull request #123879 from jojosch/matrix-synapse-plugin-mjolnir-antispam
matrix-synapse-plugins.matrix-synapse-mjolnir-antispam: init at 0.1.17
2021-05-21 21:08:06 +02:00
Jonathan Ringer
5cd5b9b97f
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
 pkgs/development/tools/kubie/default.nix
2021-05-21 10:39:34 -07:00
Maximilian Bosch
86ee847aaf
grafana: 7.5.6 -> 7.5.7
ChangeLog: https://github.com/grafana/grafana/releases/tag/v7.5.7
2021-05-21 19:04:36 +02:00
Johannes Schleifenbaum
5be91dcf84
matrix-synapse-plugins.matrix-synapse-mjolnir-antispam: init at 0.1.17 2021-05-21 18:02:42 +02:00
Kerstin Humm
199690337d mastodon: migrate from ruby 2.7 to 3.0 2021-05-21 15:04:12 +02:00
Kerstin Humm
dfd9d996e2 mastodon: 3.3.0 -> 3.4.0
./update.sh --ver v3.4.0 --patches ./resolutions.patch
2021-05-21 15:04:12 +02:00
github-actions[bot]
929b12e7b5
Merge master into staging-next 2021-05-21 12:28:43 +00:00
ajs124
c455f3ccaf
Merge pull request #123084 from Yarny0/hylafax
hylafaxplus & nixos/hylafax: small improvements
2021-05-21 14:20:57 +02:00
Finn Behrens
1085be2233
moodle: 3.10.2 -> 3.11 (#123877) 2021-05-21 13:13:09 +02:00
Robbert Gurdeep Singh
fa4aa72508 nextcloud: add preInstall and postInstall hook calls 2021-05-21 10:33:13 +02:00
Robbert Gurdeep Singh
63542dbf0a nextcloud: 21.0.1 -> 21.0.2 2021-05-21 08:33:10 +02:00
Jonathan Ringer
6b15fdce86
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
 pkgs/shells/ion/default.nix
 pkgs/tools/misc/cicero-tui/default.nix
2021-05-20 22:11:42 -07:00
R. RyanTM
4441869c30 dex-oidc: 2.27.0 -> 2.28.1 2021-05-20 14:40:34 -07:00
R. RyanTM
3bf7a41ddc caddy: 2.4.0 -> 2.4.1 2021-05-20 14:40:30 -07:00
rnhmjoj
7e54c9b956 pdns-recursor: 4.4.3 -> 4.5.1 2021-05-20 14:37:05 -07:00
Guillaume Girol
d65876bd06
Merge pull request #123621 from JamieMagee/nzbhydra
nzbhydra2: refactor
2021-05-20 19:21:11 +00:00
Johannes Schleifenbaum
e274a791ed jellyfin: 10.7.2 -> 10.7.5 2021-05-20 11:59:31 -07:00
Johannes Schleifenbaum
9af8a86bc9 jellyfin-web: 10.7.2 -> 10.7.5 2021-05-20 11:59:31 -07:00
Johannes Schleifenbaum
a7ccfa062c jellyfin: build from source 2021-05-20 11:59:31 -07:00
Johannes Schleifenbaum
7ab48fedf6 jellyfin-web: init at 10.7.2 2021-05-20 11:59:31 -07:00
github-actions[bot]
34a05e29f1
Merge master into staging-next 2021-05-20 18:36:00 +00:00
Martin Weinelt
108a8bde63
Merge pull request #123643 from Lassulus/solanum
solanum: 2020-12-14 -> 2021-04-27
2021-05-20 20:05:49 +02:00
lassulus
3cbc9824a3 solanum: 2020-12-14 -> 2021-04-27 2021-05-20 19:50:22 +02:00
Jonathan Ringer
14f3686af1
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
  pkgs/applications/terminal-emulators/alacritty/default.nix
  pkgs/servers/clickhouse/default.nix
2021-05-20 09:12:42 -07:00
Robin Gloster
f4a7efd3de
Merge pull request #123790 from r-ryantm/auto-update/bind
bind: 9.16.15 -> 9.16.16
2021-05-20 10:59:10 -05:00
R. RyanTM
d0335f16b5 bind: 9.16.15 -> 9.16.16 2021-05-20 10:21:52 +00:00
Maximilian Bosch
edf45520ba
Merge pull request #123693 from mayflower/matrix-openssl
matrix-synapse: add openssl to buildInputs
2021-05-20 11:05:02 +02:00
R. RyanTM
58c0175dfe jackett: 0.18.15 -> 0.18.95 2021-05-20 09:04:43 +00:00
Stéphan Kochen
607a5e7724 reproxy: 0.5.1 -> 0.6.0 2021-05-19 23:37:30 -07:00
Mario Rodas
0d8f0cc8d4 postgresqlPackages.pg_auto_failover: 1.5.1 -> 1.5.2
https://github.com/citusdata/pg_auto_failover/releases/tag/v1.5.2
2021-05-20 04:20:00 +00:00
Mario Rodas
62b840ba3f
Merge pull request #123614 from marsam/update-pgvector
postgresqlPackages.pgvector: 0.1.2 -> 0.1.4
2021-05-19 19:24:42 -05:00
Maximilian Bosch
3f3cec6d9e clickhouse: 20.11.4.13-stable -> 21.3.11.5-lts
Failing Hydra build: https://hydra.nixos.org/build/143269865
ZHF #122042
2021-05-19 14:08:46 -07:00
Sebastian Neubauer
68c618cba3
opensmtpd-filter-rspamd: init at 0.1.7 (#122823) 2021-05-19 22:37:49 +02:00
Robin Gloster
1fab055b92
Merge pull request #123669 from mweinelt/prometheus
prometheus: 2.26.0 -> 2.27.1
2021-05-19 15:22:40 -05:00
Robin Gloster
0fb00de6a5
Merge pull request #123586 from dpausp/grafana-7.5.6
grafana: 7.5.2 -> 7.5.6
2021-05-19 15:14:27 -05:00
github-actions[bot]
8a5e4be6b6
Merge master into staging-next 2021-05-19 18:34:10 +00:00
Fabian Affolter
3806f9c991
Merge pull request #123269 from fabaff/locationsharinglib
python3Packages.locationsharinglib: init at 4.1.6
2021-05-19 20:20:26 +02:00
Jonathan Ringer
c1f8a15dac
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
  nixos/doc/manual/release-notes/rl-2105.xml
  pkgs/tools/security/sequoia/default.nix
2021-05-19 10:39:54 -07:00
Martin Weinelt
ae67ae86cc
home-assistant: 2021.5.4 -> 2021.5.5
https://github.com/home-assistant/core/releases/tag/2021.5.5
2021-05-19 18:56:56 +02:00
Martin Weinelt
eaf59b9de3
Merge pull request #123456 from mweinelt/home-assistant-tests 2021-05-19 18:33:56 +02:00
Martin Weinelt
446c97f96f
Merge pull request #123355 from Ma27/bump-matrix-synapse 2021-05-19 18:12:14 +02:00
Linus Heckemann
f26200f3b8 matrix-synapse: add openssl to buildInputs
It should be included regardless of whether tests are run or not, and
overriding the package to disable tests would break this package up
until this change.
2021-05-19 16:59:25 +02:00
Martin Weinelt
de89bddf7e
prometheus: 2.26.0 -> 2.27.1
Fixes an open redirect vulnerability on the /new endpoint.
https://github.com/prometheus/prometheus/security/advisories/GHSA-vx57-7f4q-fpc7

https://github.com/prometheus/prometheus/releases/tag/v2.27.1
https://github.com/prometheus/prometheus/releases/tag/v2.27.0

Fixes: CVE-2021-29622
2021-05-19 13:10:47 +02:00
Mario Rodas
96d42f122f
Merge pull request #123248 from r-ryantm/auto-update/gitlab-pages
gitlab-pages: 1.38.0 -> 1.39.0
2021-05-19 05:00:10 -05:00
Mario Rodas
ac659d1702
Merge pull request #122534 from r-ryantm/auto-update/jackett
jackett: 0.17.1027 -> 0.18.15
2021-05-19 04:59:12 -05:00
Jamie Magee
3396ba048d
nzbhydra2: refactor 2021-05-18 20:51:00 -07:00
github-actions[bot]
7000ae2b9a
Merge master into staging-next 2021-05-19 00:55:36 +00:00
Martin Weinelt
4c798857e2
Merge pull request #100274 from hax404/prometheus-xmpp-alerts 2021-05-19 01:36:28 +02:00
Tobias Stenzel
ac582ccd61 grafana: 7.5.2 -> 7.5.6
Changelog:

* https://github.com/grafana/grafana/releases/tag/v7.5.3
* https://github.com/grafana/grafana/releases/tag/v7.5.4
* https://github.com/grafana/grafana/releases/tag/v7.5.5
* https://github.com/grafana/grafana/releases/tag/v7.5.6
2021-05-18 23:07:09 +02:00
Jonathan Ringer
ca46ad3762
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
  pkgs/tools/package-management/cargo-release/default.nix
2021-05-18 11:03:38 -07:00
Pavol Rusnak
f877d11022
Merge pull request #123495 from stephank/fix-prometheus-unbound-exporter-darwin
prometheus-unbound-exporter: fix darwin build
2021-05-18 18:46:54 +02:00
Dmitry Kalinkin
a088175a26
Merge pull request #121546 from superherointj/package-firebird
firebird: 2.5.7 -> 2.5.9, init 3.0.7, init 4.0.0-rc1
2021-05-18 12:46:12 -04:00
Pavol Rusnak
1a1867b9e9
Merge pull request #123505 from stephank/fix-simple-http-server-darwin
simple-http-server: fix darwin build
2021-05-18 18:45:24 +02:00
Jonathan Ringer
f7a112f6c4
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
  pkgs/applications/graphics/emulsion/default.nix
  pkgs/development/tools/misc/texlab/default.nix
  pkgs/development/tools/rust/bindgen/default.nix
  pkgs/development/tools/rust/cargo-udeps/default.nix
  pkgs/misc/emulators/ruffle/default.nix
  pkgs/tools/misc/code-minimap/default.nix
2021-05-18 08:57:16 -07:00
Martin Weinelt
27cc2b105f
home-assistant: enable tests for components with packaged dependencies 2021-05-18 17:07:32 +02:00
Martin Weinelt
344573771e
home-assistant: pin pylast at 4.2.0
The following test failure occurs with 4.2.1, due to `network` not being
allowed to be None after 6fe9aa632b.

_________________________ test_update_playing[pyloop] __________________________
[gw20] linux -- Python 3.8.9 /nix/store/hq6mrm0pc6xn6j8y6lm4qcgg9rwmqd8q-python3-3.8.9/bin/python3.8

hass = <homeassistant.core.HomeAssistant object at 0x7ffdcba15700>
lastfm_network = <MagicMock name='LastFMNetwork' id='140728019800752'>

    async def test_update_playing(hass, lastfm_network):
        """Test update when song playing."""

        lastfm_network.return_value.get_user.return_value = MockUser(
>           Track("artist", "title", None)
        )

hass       = <homeassistant.core.HomeAssistant object at 0x7ffdcba15700>
lastfm_network = <MagicMock name='LastFMNetwork' id='140728019800752'>

tests/components/lastfm/test_sensor.py:70:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/nix/store/f0ci60zk59rz5767l9lfy7q767zna6j5-python3.8-pylast-4.2.1/lib/python3.8/site-packages/pylast/__init__.py:2095: in __init__
    super().__init__(artist, title, network, "track", username, info)
        __class__  = <class 'pylast.Track'>
        artist     = 'artist'
        info       = None
        network    = None
        self       = pylast.Track('artist', 'title', None)
        title      = 'title'
        username   = None
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = pylast.Track('artist', 'title', None), artist = 'artist', title = 'title'
network = None, ws_prefix = 'track', username = None, info = {}

    def __init__(self, artist, title, network, ws_prefix, username=None, info=None):
        """
        Create an opus instance.
        # Parameters:
            * artist: An artist name or an Artist object.
            * title: The album or track title.
            * ws_prefix: 'album' or 'track'
        """

        if info is None:
            info = {}

        super().__init__(network=network, ws_prefix=ws_prefix)

        if isinstance(artist, Artist):
            self.artist = artist
        else:
            self.artist = Artist(artist, self.network)

        self.title = title
        self.username = (
>           username if username else network.username
        )  # Default to current user
E       AttributeError: 'NoneType' object has no attribute 'username'

__class__  = <class 'pylast._Opus'>
artist     = 'artist'
info       = {}
network    = None
self       = pylast.Track('artist', 'title', None)
title      = 'title'
username   = None
ws_prefix  = 'track'

/nix/store/f0ci60zk59rz5767l9lfy7q767zna6j5-python3.8-pylast-4.2.1/lib/python3.8/site-packages/pylast/__init__.py:1520: AttributeError
2021-05-18 17:07:30 +02:00
Martin Weinelt
a1a1a6b1df
home-assistant: pin pyopenuv at 1.0.13 2021-05-18 17:06:54 +02:00
Martin Weinelt
f6b1fc2996
home-assistant: pin pyflunearyou at 1.0.7 2021-05-18 16:53:53 +02:00
Fabian Affolter
655b7e57f5 home-assistant: update component-packages 2021-05-18 14:32:42 +02:00
Stéphan Kochen
71ad0ab33d simple-http-server: fix darwin build 2021-05-18 13:51:26 +02:00
Stéphan Kochen
9284a2b99f prometheus-wireguard-exporter: fix darwin build 2021-05-18 13:11:45 +02:00
Stéphan Kochen
5b9bef75e1 prometheus-unbound-exporter: fix darwin build 2021-05-18 13:08:23 +02:00
Yannick Markus
86fd2a5474
bookstack: 21.04.3 -> 21.04.5 2021-05-18 10:43:36 +02:00
Stéphan Kochen
60fcee7e5b unpackerr: fix darwin build 2021-05-18 09:07:09 +02:00
Martin Weinelt
266cdceff7
home-assistant: update component packages with pygatt 2021-05-18 07:42:44 +02:00
Mario Rodas
dcd149353d postgresqlPackages.pgvector: 0.1.2 -> 0.1.4 2021-05-18 04:20:00 +00:00
Sandro
af2a7fef84
Merge pull request #122820 from NULLx76/unpackerr-init
unpackerr: init at 0.9.4
2021-05-18 03:15:57 +02:00
Sandro
166a930ae8
Merge pull request #123343 from dotlambda/zoneminder-ffmpeg
zoneminder: use ffmpeg instead of ffmpeg_3
2021-05-18 02:07:08 +02:00
Kerstin Humm
08423b97bd
osrm-backend: 5.24.0 -> 5.25.0 2021-05-18 02:06:23 +02:00
Sandro
5e21eff612
Merge pull request #123037 from sikmir/reproxy
reproxy: init at 0.5.1
2021-05-18 01:51:14 +02:00
Robert Scott
673aea9f84
Merge pull request #123336 from kalekseev/fix/pipelinedb
postgresqlPackages.pipelinedb: fix darwin build
2021-05-17 22:54:54 +01:00
Konstantin Alekseev
73c7f50dc1 postgresqlPackages.timescaledb: fix darwin build 2021-05-17 13:58:13 -07:00
R. RyanTM
1dd189caea dnsdist: 1.5.1 -> 1.5.2 2021-05-17 13:45:02 -07:00
R. RyanTM
5546f01b5a groonga: 11.0.1 -> 11.0.2 2021-05-17 13:37:49 -07:00
R. RyanTM
91bad1d222 asterisk-module-sccp: 4.3.2-epsilon -> 4.3.4 2021-05-17 13:24:51 -07:00
Martin Weinelt
fda6185f75
Merge pull request #123181 from fabaff/ha-philipsjs 2021-05-17 17:47:19 +02:00
Martin Weinelt
2aa7f70d8e
Merge pull request #123176 from fabaff/ovoenergy 2021-05-17 17:43:52 +02:00
Martin Weinelt
a058bbdec8
Merge pull request #123175 from fabaff/py-canary
python3Packages.py-canary: init 0.5.1
2021-05-17 17:42:58 +02:00
Martin Weinelt
97f0aed2a0
Merge pull request #123174 from fabaff/pydelijn 2021-05-17 17:41:15 +02:00
Martin Weinelt
5cd6410fef
Merge pull request #123166 from fabaff/pyobihai 2021-05-17 17:38:08 +02:00
Martin Weinelt
c5f1d219a4
Merge pull request #123151 from fabaff/prayer-times-calculator 2021-05-17 17:36:25 +02:00
Martin Weinelt
e1e105e72e
Merge pull request #123273 from fabaff/aioymaps 2021-05-17 17:35:17 +02:00
Pavol Rusnak
b6b90622e8
Merge pull request #123374 from prusnak/blockbook-broken
blockbook: mark as broken
2021-05-17 17:27:34 +02:00
Pavol Rusnak
35dcb0fe16
blockbook: mark as broken
Co-authored-by: 1000101 <b1000101@pm.me>
2021-05-17 17:26:33 +02:00
Fabian Affolter
f9f076aab0 home-assistant: enable yandex_transport tests 2021-05-17 16:58:51 +02:00
Fabian Affolter
8355d5cba4 home-assistant: update component-packages 2021-05-17 16:58:51 +02:00
Jonathan Ringer
c227fb4b17
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/tools/rust/cargo-cache/default.nix
	pkgs/development/tools/rust/cargo-embed/default.nix
	pkgs/development/tools/rust/cargo-flash/default.nix
	pkgs/servers/nosql/influxdb2/default.nix
2021-05-17 07:01:38 -07:00
Maximilian Bosch
0dae433cdc
matrix-synapse: 1.33.2 -> 1.34.0
ChangeLog: https://github.com/matrix-org/synapse/releases/tag/v1.34.0
2021-05-17 13:44:48 +02:00
Robert Schütz
3d92fac40e zoneminder: use ffmpeg instead of ffmpeg_3 2021-05-17 11:47:43 +02:00
Konstantin Alekseev
3b86c99835 postgresqlPackages.pipelinedb: fix darwin build 2021-05-17 12:17:30 +03:00
Konstantin Alekseev
0061117c6f postgresqlPackages.postgis: fix darwin build 2021-05-17 11:26:15 +03:00
Stéphan Kochen
f37710e94e influxdb2: fix darwin build 2021-05-16 23:53:00 -07:00
Claudio Bley
329ec3d17c influxdb2: 2.0.2 -> 2.0.6
* update libflux to version 0.115.0
* chronograf-ui has been renamed to influxdb-ui
2021-05-16 23:53:00 -07:00
github-actions[bot]
3ff6965554
Merge master into staging-next 2021-05-17 06:22:23 +00:00
Fabian Affolter
468fda7daa home-assistant: enable islamic_prayer_times tests 2021-05-17 08:22:13 +02:00
Fabian Affolter
c96787585e home-assistant: update component-packages 2021-05-17 08:22:12 +02:00
Nikolay Korotkiy
536b5f8165
reproxy: init at 0.5.1 2021-05-17 06:38:51 +03:00
Ben Siraphob
c5a669d3f7 treewide: remove unzip where not needed 2021-05-16 19:29:28 -07:00
Martin Weinelt
6a5c85e926
Merge pull request #123056 from mweinelt/home-assistant 2021-05-17 03:44:38 +02:00
Martin Weinelt
22437644f9
home-assistant: disable failing test in mobile app component
____________________ test_webhook_handle_get_config[pyloop] ____________________
[gw18] linux -- Python 3.8.9 /nix/store/q6gfck5czr67090pwm53xrdyhpg6bx67-python3-3.8.9/bin/python3.8

hass = <homeassistant.core.HomeAssistant object at 0x7ffe4e71f370>
create_registrations = ({'cloudhook_url': None, 'remote_ui_url': None, 'secret': 'ed8ac650f2b5865733d2cea4ad1b6b02bcfbdcc3e527524bc1c457d5c6f...emote_ui_url': None, 'secret': None, 'webhook_id': '558fde83113d48024a427ccf004e2d2bdf7c56646c6a5a953566c272d51f1bfc'})
webhook_client = <aiohttp.test_utils.TestClient object at 0x7ffe4e640ca0>

    async def test_webhook_handle_get_config(hass, create_registrations, webhook_client):
        """Test that we can get config properly."""
        resp = await webhook_client.post(
            "/api/webhook/{}".format(create_registrations[1]["webhook_id"]),
            json={"type": "get_config"},
        )

        assert resp.status == 200

        json = await resp.json()
        if "components" in json:
            json["components"] = set(json["components"])
        if "allowlist_external_dirs" in json:
            json["allowlist_external_dirs"] = set(json["allowlist_external_dirs"])

        hass_config = hass.config.as_dict()

        expected_dict = {
            "latitude": hass_config["latitude"],
            "longitude": hass_config["longitude"],
            "elevation": hass_config["elevation"],
            "unit_system": hass_config["unit_system"],
            "location_name": hass_config["location_name"],
            "time_zone": hass_config["time_zone"],
            "components": hass_config["components"],
            "version": hass_config["version"],
            "theme_color": "#03A9F4",  # Default frontend theme color
        }

>       assert expected_dict == json
E       AssertionError: assert {'components'...st home', ...} == {'components'...st home', ...}
E         Omitting 8 identical items, use -vv to show
E         Differing items:
E         {'theme_color': '#03A9F4'} != {'theme_color': 'blue'}
E         Use -v to get the full diff

tests/components/mobile_app/test_webhook.py:231: AssertionError
2021-05-17 03:44:03 +02:00
Jonathan Ringer
d8e62d8e41
Merge remote-tracking branch 'origin/master' into staging-next
Fix cargo-flash build
2021-05-16 18:27:14 -07:00
Peter Hoeg
3ed9ed81ab gerbera: 1.8.0 -> 1.8.1 2021-05-17 09:10:16 +08:00
Sandro
700942d2a5
Merge pull request #121119 from SuperSandro2000/remove-gnidorah
treewide: remove gnidorah
2021-05-17 02:42:24 +02:00
Sandro
3b3f4c45ee
Merge pull request #122914 from r-ryantm/auto-update/galene
galene: 0.3.3 -> 0.3.4
2021-05-17 02:20:50 +02:00
Sandro
1cebd3a695
Merge pull request #121943 from beardhatcode/bump/matrix-appservice-slack
matrix-appservice-slack: 1.7.0 -> 1.8.0
2021-05-17 02:19:02 +02:00
Austin Seipp
506ee64b6f
Merge pull request #123135 from Mindavi/ttyd/1.6.3
ttyd: 1.6.1 -> 1.6.3
2021-05-16 17:55:33 -05:00
Robert Hensing
338baef861
Merge pull request #122458 from serokell/team-serokell
maintainers: add serokell team, move various packages to it
2021-05-16 22:37:50 +02:00
github-actions[bot]
6cdac75d25
Merge staging-next into staging 2021-05-16 18:32:44 +00:00
github-actions[bot]
8c6d819143
Merge master into staging-next 2021-05-16 18:32:41 +00:00
Daniël de Kok
f515d1f93c
Merge pull request #123255 from midchildan/chore/trafficserver
trafficserver: remove joaquinito2051 as maintainer
2021-05-16 19:42:10 +02:00
markuskowa
3bfc1b2cf4
Merge pull request #123167 from ck3d/zhf-geonic
gonic: Fix build error
2021-05-16 19:39:27 +02:00
midchildan
2b7ed5deef
trafficserver: remove joaquinito2051 as maintainer
This reverts commit da69e884b8.
2021-05-17 00:42:57 +09:00
R. RyanTM
d36d679838 gitlab-pages: 1.38.0 -> 1.39.0 2021-05-16 14:29:35 +00:00
Jan Tojnar
684991c696
Merge branch 'master' into staging-next
- Thunderbird 68 has been dropped on master.
- gccCrossLibcStdenv has been factored out on staging-next in all-packages.nix, while the file has been re-formatted on master.
2021-05-16 15:34:51 +02:00
superherointj
e33dfd47af firebird: 2.5.7 -> 2.5.9, init 3.0.7, init 4.0.0-rc1 2021-05-16 10:29:01 -03:00
06kellyjac
3fbdcefe1d minio: 2021-05-11T23-27-41Z -> 2021-05-16T05-32-34Z 2021-05-16 10:58:07 +01:00
06kellyjac
acec233fcd minio: set version variables with ldflags
Set version variables with ldflags rather than sed in a postPatch phase
Also means that CGO_ENABLED and -tags=kqueue can be set in the same
place

Add changelog
2021-05-16 10:42:06 +01:00
06kellyjac
02b121bf85 minio: fix license change
Update from #123130 has moved from Apache 2.0 to AGPLv3
2021-05-16 10:38:36 +01:00
Nikolay Korotkiy
c4ff610b31 mbtileserver: 0.6.1 → 0.7.0 2021-05-16 03:10:31 -04:00
github-actions[bot]
9911b1c75b
Merge staging-next into staging 2021-05-16 01:01:01 +00:00
github-actions[bot]
b484cef365
Merge master into staging-next 2021-05-16 01:00:58 +00:00
Fabian Affolter
32aaf7c6f2 home-assistant: enable philips_js tests 2021-05-16 01:58:57 +02:00
Fabian Affolter
a377888aeb home-assistant: update component-packages 2021-05-16 01:57:15 +02:00
Fabian Affolter
9b6fa65134 home-assistant: enable ovo_energy tests 2021-05-16 01:09:42 +02:00
Fabian Affolter
ea2ab251ed home-assistant: update component-packages 2021-05-16 01:09:42 +02:00
Fabian Affolter
8ddf12114e home-assistant: enable canary tests 2021-05-16 00:53:40 +02:00
Fabian Affolter
8ccd1189ae home-assistant: update component-packages 2021-05-16 00:53:24 +02:00
Fabian Affolter
0b6798421c home-assistant: update component-packages 2021-05-16 00:28:38 +02:00
Christian Kögler
c4c147cd15 gonic: Fix build error
Add missing zlib

ZHF: #122042
2021-05-15 23:39:02 +02:00
Fabian Affolter
03809fde5c home-assistant: update component-packages 2021-05-15 23:34:02 +02:00
Victor Roest
c2ad296ebd
unpackerr: init at 0.9.4 2021-05-15 19:43:40 +00:00
Sandro
f12794316e
Merge pull request #122717 from r-ryantm/auto-update/do-agent
do-agent: 3.9.4 -> 3.10.0
2021-05-15 21:32:14 +02:00
Sandro
a7956baad8
Merge pull request #123130 from NULLx76/update-minio
minio: 2021-04-22T15-44-28Z -> 2021-05-11T23-27-41Z
2021-05-15 21:29:53 +02:00
github-actions[bot]
c10600230e
Merge staging-next into staging 2021-05-15 18:30:31 +00:00
github-actions[bot]
f1b78f8618
Merge master into staging-next 2021-05-15 18:30:28 +00:00
Victor Roest
a70ed465bc
minio: 2021-04-22T15-44-28Z -> 2021-05-11T23-27-41Z 2021-05-15 18:19:53 +00:00
Rick van Schijndel
fba93f57b4 ttyd: 1.6.1 -> 1.6.3
This also adds support for libwebsockets 4.x.
2021-05-15 18:48:04 +02:00
Martin Weinelt
bdabf32fdd
home-assistant: print full variables on test error 2021-05-15 16:56:35 +02:00
Jan Tojnar
9645178ab0
Merge pull request #122963 from jtojnar/adminer
adminer: 4.8.0 → 4.8.1
2021-05-15 16:25:26 +02:00
github-actions[bot]
78ae7ac75e
Merge staging-next into staging 2021-05-15 06:22:25 +00:00
Jonathan Ringer
0546e68ef7
Merge remote-tracking branch 'origin/master' into staging-next 2021-05-14 21:57:09 -07:00
Martin Weinelt
d4a64aa24f home-assistant: 2021.5.3 -> 2021.5.4 2021-05-15 01:53:39 +02:00
John Ericson
18c38f8aee treewide: All the linker to be chosen independently
This will begin the process of breaking up the `useLLVM` monolith. That
is good in general, but I hope will be good for NetBSD and Darwin in
particular.

Co-authored-by: sterni <sternenseemann@systemli.org>
2021-05-14 21:29:51 +00:00
sternenseemann
104af4aafa inspircd: run configure phase hooks 2021-05-14 23:02:20 +02:00
sternenseemann
abe7335e7e inspircd: 3.9.0 -> 3.10.0
https://docs.inspircd.org/3/change-log/#inspircd-3100
2021-05-14 23:02:20 +02:00
Vladimír Čunát
c48eaa70e3
Merge branch 'master' into staging-next 2021-05-14 22:27:34 +02:00
Andreas Rammhold
04d29e6bf3
Merge pull request #122868 from andir/prosody
prosody: 0.11.8 -> 0.11.9
2021-05-14 19:50:26 +02:00
Martin Weinelt
274e06f490
Merge pull request #122850 from mweinelt/wallabag
wallabag: 2.4.1 -> 2.4.2
2021-05-14 17:22:00 +02:00
WilliButz
94b2848559
Merge pull request #91663 from mweinelt/kea-exporter
prometheus-kea-exporter: init at 0.4.1
2021-05-14 14:38:08 +02:00
Martin Weinelt
dd7e1834ca
nixos/tests/prometheus-exporters.kea: init 2021-05-14 14:09:19 +02:00
Michael Lingelbach
46284492f4
nixos/tests/dendrite: init (#121777) 2021-05-14 13:11:22 +02:00
Jan Tojnar
73125cd7ce
adminer: 4.8.0 → 4.8.1
https://php.vrana.cz/adminer-4-8-1.php
2021-05-14 12:14:08 +02:00
Markus Kowalewski
7c528e789a
slurm: 20.11.6.1 -> 20.11.7.1 2021-05-14 11:46:05 +02:00
zowoq
004f8cd986 Merge staging-next into staging 2021-05-14 16:32:43 +10:00
github-actions[bot]
bfb5f4cc5e
Merge master into staging-next 2021-05-14 06:22:26 +00:00
Yarny0
b5464b008f hylafaxplus: drop patch for POSIXLY_CORRECT
I'm not sure why this patch was needed,
but it builds and works find without it now.
Maybe this is connected with
https://github.com/NixOS/nixpkgs/pull/30483
2021-05-14 05:42:17 +02:00
Yarny0
87f08e8899 hylafaxplus: switch to pname+version
To support efforts like
https://github.com/NixOS/nixpkgs/issues/103997
this splits `name` into `pname` and `version`.
2021-05-14 05:42:16 +02:00
Yarny0
9e9da7c4cb hylafaxplus: use gentoo patch for libtiff 4.2 2021-05-14 05:42:16 +02:00
Martin Weinelt
f82a8914a4
home-assistant: enable version component tests 2021-05-14 03:47:01 +02:00
Martin Weinelt
f9d8231892
Merge pull request #122906 from fabaff/bump-pyvesync 2021-05-14 03:41:37 +02:00
Martin Weinelt
f0180dd763
Merge pull request #122419 from fabaff/ha-tests-debugpy 2021-05-14 03:18:53 +02:00
github-actions[bot]
bf5d8bb531
Merge master into staging-next 2021-05-14 00:58:11 +00:00
Jan Tojnar
ac6a4f7cf5
Merge branch 'staging-next' into staging 2021-05-14 01:40:09 +02:00
Robin Gloster
90a28c9e1e
Merge pull request #122838 from r-ryantm/auto-update/atlassian-jira
atlassian-jira: 8.14.1 -> 8.16.1
2021-05-13 17:41:24 -05:00
Fabian Affolter
156d2667b5 home-assistant: enable pyvesync tests 2021-05-14 00:07:31 +02:00
Fabian Affolter
ac4b1133ad home-assistant: enable debugpy tests 2021-05-13 23:52:56 +02:00
Georg Haas
41f448f2fc
prometheus-xmpp-alerts: 0.4.2 -> 0.5.1 2021-05-13 23:30:06 +02:00
R. RyanTM
cab63ca8e8 galene: 0.3.3 -> 0.3.4 2021-05-13 21:15:49 +00:00
Maximilian Bosch
bfd4c121ff
Merge pull request #122637 from mayflower/prometheus-2.26.0
Prometheus 2.26.0 + exporter updates
2021-05-13 23:05:29 +02:00
Michael Raskin
37ee916e97
Merge pull request #122708 from LeSuisse/squid-4.15
squid: 4.14 -> 4.15
2021-05-13 20:48:50 +00:00
Michael Raskin
e604994fc4
Merge pull request #122834 from r-ryantm/auto-update/bftpd
bftpd: 5.6 -> 5.7
2021-05-13 20:47:48 +00:00
piegames
86461da42f matrix-appservice-irc: 0.25.0 -> 0.26.0 2021-05-13 22:42:52 +02:00
R. RyanTM
f89abb76bc etcd_3_4: 3.4.15 -> 3.4.16 2021-05-14 06:19:36 +10:00
github-actions[bot]
39e3f7c2cc
Merge master into staging-next 2021-05-13 18:32:50 +00:00
Andreas Rammhold
ded32d9192
prosody: 0.11.8 -> 0.11.9
The prosody project has issues a new [release] and published security
[advisory] for CVE-2021-32918, CVE-2021-32920, CVE-2021-32921,
CVE-2021-32917 and CVE-2021-32919.

[advisory]: https://prosody.im/security/advisory_20210512/
[release]: https://blog.prosody.im/prosody-0.11.9-released/
2021-05-13 19:32:28 +02:00
J. Neto
ecb635c8f8 unfs3: mark as broken
See: https://github.com/unfs3/unfs3/issues/13
2021-05-13 09:27:31 -07:00
Martin Weinelt
b859a61f5c
wallabag: 2.4.1 -> 2.4.2
https://github.com/wallabag/wallabag/releases/tag/2.4.2
2021-05-13 18:10:22 +02:00
R. RyanTM
a8458ce5dd atlassian-jira: 8.14.1 -> 8.16.1 2021-05-13 14:32:53 +00:00
R. RyanTM
ed59957954 bftpd: 5.6 -> 5.7 2021-05-13 14:09:40 +00:00
github-actions[bot]
60f5ecc76d
Merge staging-next into staging 2021-05-13 12:26:52 +00:00
github-actions[bot]
7465594428
Merge master into staging-next 2021-05-13 12:26:48 +00:00
Jan Tojnar
0313c77b55
Merge branch 'staging-next' into staging 2021-05-13 11:42:36 +02:00
Daniël de Kok
e948a04cde
Merge pull request #122631 from LeSuisse/tailscale-1.8.3
tailscale: 1.8.0 -> 1.8.3
2021-05-13 08:57:52 +02:00
github-actions[bot]
a8e5ac148b
Merge master into staging-next 2021-05-13 00:56:26 +00:00
Profpatsch
b6475a8f90 gonic: fix transcoding support
ffmpeg is not needed as a library at build time, but rather as an
executable at runtime.
2021-05-13 00:24:56 +02:00
Sandro
52b595794f
Merge pull request #122709 from dotlambda/vsftpd-fix-aarch64
vsftpd: fix build with gcc9
2021-05-12 23:16:13 +02:00
Martin Weinelt
7944ea7b66
prometheus-kea-exporter: init at 0.4.2 2021-05-12 21:51:44 +02:00
github-actions[bot]
b057978bb2
Merge staging-next into staging 2021-05-12 18:32:29 +00:00
github-actions[bot]
f214722172
Merge master into staging-next 2021-05-12 18:32:26 +00:00
Sandro
139e35e6ef
Merge pull request #122614 from stephank/fix-agate-darwin
agate: fix darwin build
2021-05-12 18:49:41 +02:00
Sandro
a5dedf1656
Merge pull request #122572 from stephank/fix-modpython-darwin
apacheHttpdPackages.mod_python: fix darwin build
2021-05-12 18:30:31 +02:00
Martin Weinelt
a18880bf72 Merge remote-tracking branch 'origin/master' into staging-next 2021-05-12 18:28:03 +02:00
Martin Weinelt
b7cc0d6d73 home-assistant: 2021.5.2 -> 2021.5.3 2021-05-12 09:14:44 -07:00
ajs124
7d32b566d1
Merge pull request #122693 from jojosch/exim-fix-mysql
exim: fix enableMySQL (use libmysqlclient.dev)
2021-05-12 17:40:03 +02:00
R. RyanTM
7b75ac2c1a do-agent: 3.9.4 -> 3.10.0 2021-05-12 12:53:37 +00:00
Jan Tojnar
71fa678899
Merge branch 'staging-next' into staging 2021-05-12 14:31:36 +02:00
github-actions[bot]
1d2db66464
Merge master into staging-next 2021-05-12 12:27:04 +00:00
Robert Schütz
8926311238 vsftpd: fix build with gcc9
We still use that version on aarch64.
2021-05-12 14:06:35 +02:00
Thomas Gerbet
4b66107509 squid: 4.14 -> 4.15
Fixes CVE-2021-28116, CVE-2021-31806, CVE-2021-31807, CVE-2021-31808,
CVE-2021-28652, CVE-2021-28662 and CVE-2021-28651.

https://github.com/squid-cache/squid/security/advisories/GHSA-pxwq-f3qr-w2xf
https://github.com/squid-cache/squid/security/advisories/GHSA-m47m-9hvw-7447
https://github.com/squid-cache/squid/security/advisories/GHSA-jjq6-mh2h-g39h
https://github.com/squid-cache/squid/security/advisories/GHSA-572g-rvwr-6c7f
https://github.com/squid-cache/squid/security/advisories/GHSA-ch36-9jhx-phm4
2021-05-12 14:00:13 +02:00
Vladimír Čunát
bde27b4e97
knot-dns: 3.0.5 -> 3.0.6
https://gitlab.nic.cz/knot/knot-dns/-/tags/v3.0.6
2021-05-12 12:55:41 +02:00
Oleksii Filonenko
4cc44f764c
Merge pull request #122517 from r-ryantm/auto-update/caddy
caddy: 2.3.0 -> 2.4.0
2021-05-12 13:14:35 +03:00
Johannes Schleifenbaum
67ef7772a1
exim: fix enableMySQL (use libmysqlclient.dev) 2021-05-12 11:10:46 +02:00
Maximilian Bosch
03db1757fe
Merge pull request #122589 from Ma27/bump-matrix-synapse
matrix-synapse: 1.33.1 -> 1.33.2
2021-05-12 10:34:44 +02:00
Maximilian Bosch
e6635d8b2f
Merge pull request #122650 from helsinki-systems/fix/hylafaxplus
hylafaxplus: fix build
2021-05-12 09:06:28 +02:00
github-actions[bot]
e2cf474986
Merge staging-next into staging 2021-05-12 06:21:36 +00:00
github-actions[bot]
d8fb37f470
Merge master into staging-next 2021-05-12 06:21:33 +00:00
Luke Granger-Brown
aa4b1ad30f
Merge pull request #122645 from Ma27/bump-grafana-image-renderer
grafana-image-renderer: 2.0.1 -> 2.1.0
2021-05-12 03:32:38 +01:00
Robin Gloster
f2259a2dff
Merge pull request #122651 from WilliButz/update/hedgedoc/1.8.2
hedgedoc: 1.8.0 -> 1.8.2 (security)
2021-05-11 20:32:57 -05:00
github-actions[bot]
5c4cda9988
Merge staging-next into staging 2021-05-12 00:50:13 +00:00
github-actions[bot]
5a513ae14b
Merge master into staging-next 2021-05-12 00:50:10 +00:00
Robin Gloster
64d226fc60
prometheus-varnish-exporter: unstable-2020-03-26 -> 1.6 2021-05-11 17:57:46 -05:00
Robin Gloster
0a75e25dac
prometheus-statsd-exporter: 0.9.0 -> 0.20.2 2021-05-11 17:57:46 -05:00
Robin Gloster
a9ffa5dc2a
prometheus-snmp-exporter: 0.19.0 -> 0.20.0 2021-05-11 17:57:46 -05:00
Robin Gloster
1ea614c3de
prometheus-smokeping-prober: 0.3.1 -> 0.4.2 2021-05-11 17:57:45 -05:00
Robin Gloster
ee87b5df96
prometheus-redis-exporter: 1.7.0 -> 1.23.1 2021-05-11 17:57:45 -05:00
Robin Gloster
a9683cd227
prometheus-rabbitmq-exporter: 1.0.0-RC7.1 -> 1.0.0-RC8 2021-05-11 17:57:36 -05:00
ajs124
62b12d749b hylafaxplus: fix build 2021-05-12 00:02:59 +02:00
WilliButz
0432a81670
hedgedoc: 1.8.0 -> 1.8.2
includes fixes for:
* CVE-2021-29503: Improper Neutralization of Script-Related HTML Tags in Notes
* a potential XSS-vector in the handling of usernames and profile pictures

https://github.com/hedgedoc/hedgedoc/releases/tag/1.8.2
2021-05-11 23:59:13 +02:00
Maximilian Bosch
93e1147d19
grafana-image-renderer: 2.0.1 -> 2.1.0 2021-05-11 23:41:12 +02:00
Pascal Bach
c58155c87c
Merge pull request #121786 from jojosch/minio-version
minio: set version to a valid datetime string
2021-05-11 23:32:58 +02:00
ajs124
85784a66c8
Merge pull request #120924 from helsinki-systems/pkg/icinga2
icinga2: Init at 2.12.3
2021-05-11 22:44:22 +02:00
Thomas Gerbet
a3c9fd29fe tailscale: 1.8.0 -> 1.8.3 2021-05-11 22:29:56 +02:00
Aaron Andersen
eb331e0516
Merge pull request #121638 from aanderse/zabbix
zabbix: 5.0.10 -> 5.0.11
2021-05-11 16:26:38 -04:00
Stéphan Kochen
c16bc80432 agate: fix darwin build 2021-05-11 20:28:44 +02:00
Stéphan Kochen
34d988e673 apacheHttpdPackages.mod_python: fix darwin build 2021-05-11 19:55:13 +02:00
Maximilian Bosch
d72d622723
matrix-synapse: 1.33.1 -> 1.33.2
ChangeLog: https://github.com/matrix-org/synapse/releases/tag/v1.33.2
2021-05-11 16:05:00 +02:00
Johannes Schleifenbaum
f05000302a
minio: set version to a valid datetime string
Co-authored-by: 06kellyjac <dev@j-k.io>
2021-05-11 12:28:48 +02:00
Jan Tojnar
7982550ac4
Merge branch 'staging-next' into staging 2021-05-11 09:09:10 +02:00
github-actions[bot]
10e16ec9ab
Merge master into staging-next 2021-05-11 06:20:33 +00:00
Robin Gloster
9b37635200
prom2json: 0.1.0 -> 1.3.0 2021-05-11 00:28:27 -05:00
Robin Gloster
50ab1fff13
prometheus-process-exporter: 0.7.1 -> 0.7.5 2021-05-11 00:23:06 -05:00
R. RyanTM
9e5a202a03 jackett: 0.17.1027 -> 0.18.15 2021-05-11 05:21:12 +00:00
Robin Gloster
060286ebda
prometheus-openvpn-exporter: 2017-05-15 -> 0.3.0 2021-05-11 00:10:09 -05:00
Robin Gloster
117e2d44fc
prometheus-node-exporter: 1.0.1 -> 1.1.2 2021-05-11 00:02:02 -05:00
Robin Gloster
7b9e1e61c0
prometheus-nginxlog-exporter: 1.8.0 -> 1.9.0 2021-05-11 00:01:36 -05:00
Robin Gloster
c2c6f3f626
prometheus-nginx-exporter: 0.8.0 -> 0.9.0 2021-05-10 23:50:59 -05:00
Robin Gloster
ea3a0bfb2e
prometheus-mesos-exporter: 0.1.0 -> 1.1.2 2021-05-10 23:43:29 -05:00
Robin Gloster
b3c592bf08
prometheus-json-exporter: 0.2.0 -> 0.3.0 2021-05-10 23:36:39 -05:00
Robin Gloster
21bf56687d
prometheus-jmx-httpserver: 0.10 -> 0.15.0 2021-05-10 23:26:36 -05:00
Robin Gloster
3c6f3ff2ff
prometheus-haproxy-exporter: 0.8.0 -> 0.12.0 2021-05-10 23:26:04 -05:00
Robin Gloster
aca47a34b1
prometheus-gitlab-ci-pipelines-exporter: 0.2.5 -> 0.4.9 2021-05-10 23:13:12 -05:00
Robin Gloster
0a71442949
prometheus-domain-exporter: 1.10.0 -> 1.11.0 2021-05-10 23:08:38 -05:00
Robin Gloster
91ea6382fa
prometheus-collectd-exporter: 0.3.1 -> 0.5.0 2021-05-10 22:55:43 -05:00
Robin Gloster
7ea82280af
prometheus-blackbox-exporter: 0.18.0 -> 0.19.0 2021-05-10 22:55:19 -05:00
Robin Gloster
8a697bdc73
prometheus-bird-exporter: 1.2.5-git -> 1.2.5
The previous version of 1.3.5-git was a typo and supposed to be
1.2.5-git, this updates to the subsequent stable release.
2021-05-10 22:39:13 -05:00
Robin Gloster
ef7d945193
prometheus-bind-exporter: unstable -> 0.4.0 2021-05-10 22:35:22 -05:00
Robin Gloster
6a66ae84d4
prometheus-aws-s3-exporter: 0.3.0 -> 0.4.1 2021-05-10 22:34:52 -05:00
Robin Gloster
e7a09b6cb2
prometheus-artifactory-exporter: 1.9.0 -> 1.9.1 2021-05-10 22:28:40 -05:00
Robin Gloster
5b3634881b
prometheus: 2.23.0 -> 2.26.0 2021-05-10 22:23:29 -05:00
R. RyanTM
c35d77d13a caddy: 2.3.0 -> 2.4.0 2021-05-11 01:31:41 +00:00
github-actions[bot]
49b8e6f7d4
Merge master into staging-next 2021-05-11 00:48:15 +00:00
Martin Weinelt
81310256a9
home-assistant: 2021.5.1 -> 2021.5.2 2021-05-11 02:02:15 +02:00
Robert Schütz
7217b2d85e
Merge pull request #121785 from dotlambda/dendrite-rename
matrix-dendrite: rename to dendrite
2021-05-10 23:30:12 +02:00
Christian Höppner
8d89aa01d6
Update pkgs/servers/jetbrains/youtrack.nix
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-05-10 20:28:36 +01:00
Martin Weinelt
008880bd64
Merge pull request #121960 from fabaff/bump-plugwise 2021-05-10 21:27:24 +02:00
Martin Weinelt
cf51b95aea
home-assistant: add jsonpickle to checkInputs
Drop asynctest, it was dropped back in january upstream. These
dependencies are sadly not part of the manifest, that we are parsing.
2021-05-10 21:25:43 +02:00
Fabian Affolter
0f5d490226 home-assistant: enable plugwise tests 2021-05-10 20:53:44 +02:00
Martin Weinelt
94a52465b7
Merge pull request #121856 from fabaff/motioneye-client 2021-05-10 20:48:41 +02:00
github-actions[bot]
61fa3fdde8
Merge master into staging-next 2021-05-10 18:28:17 +00:00
Martin Weinelt
0ebdfbd43a
Merge pull request #121853 from fabaff/pymeteireann
python3Packages.pymeteireann: init at 0.2
2021-05-10 20:09:14 +02:00
Martin Weinelt
f1b821a338
Merge pull request #121848 from fabaff/mutesync 2021-05-10 19:54:21 +02:00
Martin Weinelt
4280bbe7e9
Merge pull request #122388 from fabaff/bump-androidtv 2021-05-10 19:23:35 +02:00
Sandro
a157a78d19
Merge pull request #122308 from jojosch/nzbhydra2-3.14.1 2021-05-10 19:22:05 +02:00
Martin Weinelt
b70ae7c278
home-assistant: fix build by disabling test in pyjwt override
FAILED tests/contrib/test_algorithms.py::TestEcdsaAlgorithms::test_ec_verify_should_return_false_if_signature_invalid
2021-05-10 17:50:08 +02:00
github-actions[bot]
7ce907b413
Merge staging-next into staging 2021-05-10 12:24:36 +00:00
github-actions[bot]
115881e756
Merge master into staging-next 2021-05-10 12:24:32 +00:00
ajs124
acd5e6707e
Merge pull request #122343 from helsinki-systems/fix/galera
mariadb-galera: remove unused code
2021-05-10 14:20:58 +02:00
Jan Tojnar
594a885912
Merge branch 'staging-next' into staging 2021-05-10 09:45:47 +02:00
github-actions[bot]
f4d69ad1f2
Merge master into staging-next 2021-05-10 06:20:28 +00:00
Ryan Mulligan
975fd29971
Merge pull request #122279 from r-ryantm/auto-update/bazarr
bazarr: 0.9.4 -> 0.9.5
2021-05-09 18:26:25 -07:00
github-actions[bot]
1e3d91bd19
Merge master into staging-next 2021-05-10 00:48:32 +00:00