2019-10-02 16:34:27 +00:00
|
|
|
# This file is generated by script/hassfest/codeowners.py
|
2017-07-07 18:40:04 +00:00
|
|
|
# People marked here will be automatically requested for a review
|
|
|
|
# when the code that they own is touched.
|
|
|
|
# https://github.com/blog/2392-introducing-code-owners
|
2022-03-29 11:17:49 +00:00
|
|
|
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
|
2017-07-07 18:40:04 +00:00
|
|
|
|
2018-10-06 05:16:06 +00:00
|
|
|
# Home Assistant Core
|
2022-02-22 13:32:55 +00:00
|
|
|
setup.cfg @home-assistant/core
|
2022-05-26 00:54:49 +00:00
|
|
|
pyproject.toml @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/*.py @home-assistant/core
|
|
|
|
/homeassistant/helpers/ @home-assistant/core
|
|
|
|
/homeassistant/util/ @home-assistant/core
|
2017-07-07 18:40:04 +00:00
|
|
|
|
2020-11-02 10:54:16 +00:00
|
|
|
# Home Assistant Supervisor
|
|
|
|
build.json @home-assistant/supervisor
|
2022-03-29 11:17:49 +00:00
|
|
|
/machine/ @home-assistant/supervisor
|
|
|
|
/rootfs/ @home-assistant/supervisor
|
|
|
|
/Dockerfile @home-assistant/supervisor
|
2020-11-02 10:54:16 +00:00
|
|
|
|
2019-04-04 06:46:06 +00:00
|
|
|
# Other code
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/scripts/check_config.py @kellerza
|
2022-10-22 13:07:43 +00:00
|
|
|
/homeassistant/const.py @epenet
|
|
|
|
/homeassistant/util/ @epenet
|
2017-10-08 20:32:42 +00:00
|
|
|
|
2019-04-04 06:46:06 +00:00
|
|
|
# Integrations
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/abode/ @shred86
|
|
|
|
/tests/components/abode/ @shred86
|
|
|
|
/homeassistant/components/accuweather/ @bieniu
|
|
|
|
/tests/components/accuweather/ @bieniu
|
|
|
|
/homeassistant/components/acmeda/ @atmurray
|
|
|
|
/tests/components/acmeda/ @atmurray
|
|
|
|
/homeassistant/components/adax/ @danielhiversen
|
|
|
|
/tests/components/adax/ @danielhiversen
|
|
|
|
/homeassistant/components/adguard/ @frenck
|
|
|
|
/tests/components/adguard/ @frenck
|
|
|
|
/homeassistant/components/advantage_air/ @Bre77
|
|
|
|
/tests/components/advantage_air/ @Bre77
|
2022-05-08 23:20:18 +00:00
|
|
|
/homeassistant/components/aemet/ @Noltari
|
|
|
|
/tests/components/aemet/ @Noltari
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/agent_dvr/ @ispysoftware
|
|
|
|
/tests/components/agent_dvr/ @ispysoftware
|
|
|
|
/homeassistant/components/air_quality/ @home-assistant/core
|
|
|
|
/tests/components/air_quality/ @home-assistant/core
|
|
|
|
/homeassistant/components/airly/ @bieniu
|
|
|
|
/tests/components/airly/ @bieniu
|
|
|
|
/homeassistant/components/airnow/ @asymworks
|
|
|
|
/tests/components/airnow/ @asymworks
|
Add air-Q integration (air quality sensors) (#76999)
* Added initial files for air-Q integration
* Allow FIXME comments in pylint (temporary)
Also reintroduce --ignore-missing-annotations=y
* Set up air-q entry to connect to aioairq's API (initial attempt)
Also add necessary constants
* Implement a class for sensors and its update logic
Very early stage, WIP
* Zeroconf and authentication are working
* Complete the bare-bone minimal working version
Specifically, make AirQSensor update its values.
* Handle invalid authentication gracefully
* Handle ClientConnectionError gracefully
* Add field hint for the login form
The key in the schema, which defines the form in
`ConfigFlow.async_show_form` is looked up in both `airq/strings/json`
and `airq/translations/en.json`. I am still not 100% sure how this
lookup is performed. WIP
* Minor cleanups
* Extend sensor list to all supported by SensorDeviceClass
Also manage warming up sensors
* aioairq is published to PyPI and mentioned in requirements
* Reordered constants and list content alphabetically
As required by style guides. Also turned SENSOR_TYPES to a list
* Updated file docstrings for a dev unfamiliar w/homeassistant like myself
* Adding a bit of logging for the integration setup process
* Expose scan interval & smoothing flag
Also streamline test_authentication in config_flow.
* Fix a type annotation mistake
* Use as many constants from homeassistant.const as possible
My only concern is using CONST_IP_ADDRESS = "ip_address" for smth which
stands for both IP address and mDNS...
* Temporarily rollback ConfigFlow.async_step_configure and use defaults
TODO: implement OptionFlowHandler instead
* Define custom Coordinator, w subset of airq config
The latter is then accessed from entity / sensor constructors to define
correct DeviceInfo
* Provide translations to de & fr + minor changes to en
* Provide translations to ru + a minor en changes
* Make translation a little more helpful and polite
* Fix devicename and entry title
* Remove stale commented out code
* Test config_flow
At this point two helper functions which interact with the external
library are not tested
* Clean up unrelated and meant as temporary changes
* Clean up unnecessary comments meant for internal use
* Move fetching config to a dedicated async coordinator method
As opposed to it being a potentially poorly justified step in
async_setup_entry
* Remove zeroconf support since it is not yet ready
* Remove translations other than en
* Remove unnecessary comments, manifest.json entries, and constants
* Improve exception handling
- `_LOGGER` uses `debug` and not `error` levels.
- Drop `ClientConnect` and catch `aiohttop.ClientConnectError` directly
- Drop `Exception` as it is not expected from `aioairq` (remove the
corresponding test too)
* Drop strings for obsolete errors and steps
Specifically, `unknown` error isn't caught any more. `configure` step
has also been removed.
* Refactor en.json to be consistent with strings.json
* Move target_route from a coordinator argument to a constant
At this point a user cannot configure the target_route route, thus it
does not make sense to expose it half-heartedly in
`AirQCoordinator.__init__`, since it cannot be accessed.
* Fix an async call in `AirQCoordinator.async_setup_entry`
* Refactor underlying aioairq API
- Use `homeassistant.helpers.aiohttp.async_get_clientsession` and pass a
single persistent session to `aioariq.AirQ.__init__`
- `aioairq.AirQ.fetch_device_info` now returns a `DeviceInfo` object heavily
inspired and almost compatible with `homeassistant.helpers.entity.DeviceInfo`.
Make heavier use of this object and define a single `DeviceInfo` in the
`AirQCoordinator` (instead of recreating the same object for each sensor
of the device in `sensor.AirQSensor`)
- Drop two helper functions in `config_flow.py` and operate on `aioariq.AirQ`
methods directly
* Fix the version of aioairq
* Add 15 more sensors + icons
* Remove cnt* & TypPS, change units of health & performance
* Add 12 more sensors
* Add a missing icon
* Gracefully handle device not being available on setup
If the device and the host are not on the same WiFi,
ServerTimeoutError is raised, which is caught by
ClientConnectionError.
If the device is powered off, ClientConnectionError is expected.
In both cases, ConfigEntryNotReady is raised, as prescribed by the docs.
Newer version of aioairq times-out far quicker than the default 5 mins.
* Rename two sensors
* Validate provided IP address / mDNS
aioairq now raises InvalidInput if provided IP / mDNS does not seem
valid. Handle this exception correctly
* Apply suggestions from code review
Clean up the comments and rename the logger
Co-authored-by: Erik Montnemery <erik@montnemery.com>
Co-authored-by: Artem Draft <Drafteed@users.noreply.github.com>
* Only fetch device info during the first refresh
- Fetched info is stored in AirQCoordinator.device_info.
- In `AirQSensor.native_value` only multiply by the factor if
the sensor reading is not None
- Fix the tests for ConfigFlow for aioairq==0.2.3. Specifically
make the dummy data pass the new validation step upstream
+ add a test which fails it
* Drop custom device classes for now
* Apply suggestions from code review
Co-authored-by: Artem Draft <Drafteed@users.noreply.github.com>
* Only fetch device info during ConfigFlow.async_step_user
Store the result obtained by `airq.fetch_device_info` it in
`config_entry.data`. Pass the entire config entry to `AirQCoordinator`
and build the entire `homeassistant.helpers.entity.DeviceInfo` in the
`AirQCoordinator.__init__`. This makes
`AirQCoordinator._async_fetch_device_info` and overloaded
`AirQCoordinator._async_config_entry_first_refresh` obsolete.
Bump aioairq version.
Turn update_interval from `AirQCoordinator.__init__` argument into a
contestant.
* Custom entity description exposing a hook to modify sensor value
Use a `AirQEntityDescription` with a callable `value_fn` which allows to
change the sensor value retrieved from the device. Note that the
callable does not handle data retrieval itself (even from
`coordinator.data`). Instead it is purely a hook to transform obtained
value.
* Avoid duplicated use of unique_id
Device info is fetched during the `ConfigFlow.async_user_step`.
`unique_id` is taken from the device info and is **not** stored
in `config_entry.data`. Subsequently `config_entry.unique_id` is
used instead.
* Drop unnecessary try-except
Co-authored-by: Artem Draft <Drafteed@users.noreply.github.com>
* Clarify the use of value_transform_fn
* Refactor the use of lambdas in AirQEntityDescription
Now it is the job of the callable under `value` to get the sensor
reading from the coordinator's data. Factoring this functionality into a
callback decouples the key of the description from the key of dict,
returned by the API, so `AirQEntityDescription` no longer requires its key
to be set to smth clearly internal (e.g. `nh3_MR100`).
* Use a callback to update native_value
Since all `native_value`s are updated synchronously, it can as well be
done in a callback for better state consistency (right?)
* Revert the description keys to match data keys
Must match given the current way of identifying available sensors. On a
broader scale, they must match to be able to relate the descriptions to
sensors, unless a separate lookup table is maintained.
* Reduce number of loops when adding sensors
Filtering warming up sensors and non-sensor keys can be combined with
adding entities.
* Remove obsolete imports
* Update integrations.json
* Add integration_type
Integration supports multiple devices => hub
Co-authored-by: dl2080 <daniel.lehmann@runbox.com>
Co-authored-by: Erik Montnemery <erik@montnemery.com>
Co-authored-by: Artem Draft <Drafteed@users.noreply.github.com>
Co-authored-by: Daniel Lehmann <43613560+dl2080@users.noreply.github.com>
Co-authored-by: Martin Selbmann <job@martin-selbmann.de>
2022-11-03 22:13:57 +00:00
|
|
|
/homeassistant/components/airq/ @Sibgatulin @dl2080
|
|
|
|
/tests/components/airq/ @Sibgatulin @dl2080
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/airthings/ @danielhiversen
|
|
|
|
/tests/components/airthings/ @danielhiversen
|
2022-09-29 19:55:45 +00:00
|
|
|
/homeassistant/components/airthings_ble/ @vincegio
|
|
|
|
/tests/components/airthings_ble/ @vincegio
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/airtouch4/ @LonePurpleWolf
|
|
|
|
/tests/components/airtouch4/ @LonePurpleWolf
|
|
|
|
/homeassistant/components/airvisual/ @bachya
|
|
|
|
/tests/components/airvisual/ @bachya
|
|
|
|
/homeassistant/components/airzone/ @Noltari
|
|
|
|
/tests/components/airzone/ @Noltari
|
2022-05-13 22:41:01 +00:00
|
|
|
/homeassistant/components/aladdin_connect/ @mkmer
|
|
|
|
/tests/components/aladdin_connect/ @mkmer
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/alarm_control_panel/ @home-assistant/core
|
|
|
|
/tests/components/alarm_control_panel/ @home-assistant/core
|
2022-10-12 12:51:09 +00:00
|
|
|
/homeassistant/components/alert/ @home-assistant/core @frenck
|
|
|
|
/tests/components/alert/ @home-assistant/core @frenck
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/alexa/ @home-assistant/cloud @ochlocracy
|
|
|
|
/tests/components/alexa/ @home-assistant/cloud @ochlocracy
|
|
|
|
/homeassistant/components/almond/ @gcampax @balloob
|
|
|
|
/tests/components/almond/ @gcampax @balloob
|
|
|
|
/homeassistant/components/amberelectric/ @madpilot
|
|
|
|
/tests/components/amberelectric/ @madpilot
|
|
|
|
/homeassistant/components/ambiclimate/ @danielhiversen
|
|
|
|
/tests/components/ambiclimate/ @danielhiversen
|
|
|
|
/homeassistant/components/ambient_station/ @bachya
|
|
|
|
/tests/components/ambient_station/ @bachya
|
|
|
|
/homeassistant/components/amcrest/ @flacjacket
|
|
|
|
/homeassistant/components/analytics/ @home-assistant/core @ludeeus
|
|
|
|
/tests/components/analytics/ @home-assistant/core @ludeeus
|
2022-08-09 12:08:46 +00:00
|
|
|
/homeassistant/components/android_ip_webcam/ @engrbm87
|
|
|
|
/tests/components/android_ip_webcam/ @engrbm87
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/androidtv/ @JeffLIrion @ollo69
|
|
|
|
/tests/components/androidtv/ @JeffLIrion @ollo69
|
2022-06-30 14:13:08 +00:00
|
|
|
/homeassistant/components/anthemav/ @hyralex
|
|
|
|
/tests/components/anthemav/ @hyralex
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/apache_kafka/ @bachya
|
|
|
|
/tests/components/apache_kafka/ @bachya
|
2022-09-28 07:14:04 +00:00
|
|
|
/homeassistant/components/apcupsd/ @yuxincs
|
|
|
|
/tests/components/apcupsd/ @yuxincs
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/api/ @home-assistant/core
|
|
|
|
/tests/components/api/ @home-assistant/core
|
|
|
|
/homeassistant/components/apple_tv/ @postlund
|
|
|
|
/tests/components/apple_tv/ @postlund
|
2022-04-30 15:06:43 +00:00
|
|
|
/homeassistant/components/application_credentials/ @home-assistant/core
|
|
|
|
/tests/components/application_credentials/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/apprise/ @caronc
|
|
|
|
/tests/components/apprise/ @caronc
|
|
|
|
/homeassistant/components/aprs/ @PhilRW
|
|
|
|
/tests/components/aprs/ @PhilRW
|
2022-10-31 03:50:46 +00:00
|
|
|
/homeassistant/components/aranet/ @aschmitz
|
|
|
|
/tests/components/aranet/ @aschmitz
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/arcam_fmj/ @elupus
|
|
|
|
/tests/components/arcam_fmj/ @elupus
|
|
|
|
/homeassistant/components/arris_tg2492lg/ @vanbalken
|
|
|
|
/homeassistant/components/aseko_pool_live/ @milanmeu
|
|
|
|
/tests/components/aseko_pool_live/ @milanmeu
|
|
|
|
/homeassistant/components/asuswrt/ @kennedyshead @ollo69
|
|
|
|
/tests/components/asuswrt/ @kennedyshead @ollo69
|
|
|
|
/homeassistant/components/atag/ @MatsNL
|
|
|
|
/tests/components/atag/ @MatsNL
|
|
|
|
/homeassistant/components/aten_pe/ @mtdcr
|
|
|
|
/homeassistant/components/atome/ @baqs
|
|
|
|
/homeassistant/components/august/ @bdraco
|
|
|
|
/tests/components/august/ @bdraco
|
|
|
|
/homeassistant/components/aurora/ @djtimca
|
|
|
|
/tests/components/aurora/ @djtimca
|
|
|
|
/homeassistant/components/aurora_abb_powerone/ @davet2001
|
|
|
|
/tests/components/aurora_abb_powerone/ @davet2001
|
|
|
|
/homeassistant/components/aussie_broadband/ @nickw444 @Bre77
|
|
|
|
/tests/components/aussie_broadband/ @nickw444 @Bre77
|
|
|
|
/homeassistant/components/auth/ @home-assistant/core
|
|
|
|
/tests/components/auth/ @home-assistant/core
|
|
|
|
/homeassistant/components/automation/ @home-assistant/core
|
|
|
|
/tests/components/automation/ @home-assistant/core
|
|
|
|
/homeassistant/components/avea/ @pattyland
|
|
|
|
/homeassistant/components/awair/ @ahayworth @danielsjf
|
|
|
|
/tests/components/awair/ @ahayworth @danielsjf
|
|
|
|
/homeassistant/components/axis/ @Kane610
|
|
|
|
/tests/components/axis/ @Kane610
|
|
|
|
/homeassistant/components/azure_devops/ @timmo001
|
|
|
|
/tests/components/azure_devops/ @timmo001
|
|
|
|
/homeassistant/components/azure_event_hub/ @eavanvalkenburg
|
|
|
|
/tests/components/azure_event_hub/ @eavanvalkenburg
|
|
|
|
/homeassistant/components/azure_service_bus/ @hfurubotten
|
|
|
|
/homeassistant/components/backup/ @home-assistant/core
|
|
|
|
/tests/components/backup/ @home-assistant/core
|
2022-05-14 22:22:47 +00:00
|
|
|
/homeassistant/components/baf/ @bdraco @jfroy
|
|
|
|
/tests/components/baf/ @bdraco @jfroy
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/balboa/ @garbled1
|
|
|
|
/tests/components/balboa/ @garbled1
|
2022-09-26 02:02:35 +00:00
|
|
|
/homeassistant/components/bayesian/ @HarvsG
|
|
|
|
/tests/components/bayesian/ @HarvsG
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/beewi_smartclim/ @alemuro
|
|
|
|
/homeassistant/components/binary_sensor/ @home-assistant/core
|
|
|
|
/tests/components/binary_sensor/ @home-assistant/core
|
|
|
|
/homeassistant/components/bizkaibus/ @UgaitzEtxebarria
|
2022-07-03 15:06:38 +00:00
|
|
|
/homeassistant/components/blebox/ @bbx-a @riokuu
|
|
|
|
/tests/components/blebox/ @bbx-a @riokuu
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/blink/ @fronzbot
|
|
|
|
/tests/components/blink/ @fronzbot
|
2022-09-04 13:45:52 +00:00
|
|
|
/homeassistant/components/bluemaestro/ @bdraco
|
|
|
|
/tests/components/bluemaestro/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/blueprint/ @home-assistant/core
|
|
|
|
/tests/components/blueprint/ @home-assistant/core
|
|
|
|
/homeassistant/components/bluesound/ @thrawnarn
|
2022-07-08 23:55:31 +00:00
|
|
|
/homeassistant/components/bluetooth/ @bdraco
|
|
|
|
/tests/components/bluetooth/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/bmw_connected_drive/ @gerard33 @rikroe
|
|
|
|
/tests/components/bmw_connected_drive/ @gerard33 @rikroe
|
2022-05-21 08:27:59 +00:00
|
|
|
/homeassistant/components/bond/ @bdraco @prystupa @joshs85 @marciogranzotto
|
|
|
|
/tests/components/bond/ @bdraco @prystupa @joshs85 @marciogranzotto
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/bosch_shc/ @tschamm
|
|
|
|
/tests/components/bosch_shc/ @tschamm
|
|
|
|
/homeassistant/components/braviatv/ @bieniu @Drafteed
|
|
|
|
/tests/components/braviatv/ @bieniu @Drafteed
|
|
|
|
/homeassistant/components/broadlink/ @danielhiversen @felipediel @L-I-Am
|
|
|
|
/tests/components/broadlink/ @danielhiversen @felipediel @L-I-Am
|
|
|
|
/homeassistant/components/brother/ @bieniu
|
|
|
|
/tests/components/brother/ @bieniu
|
|
|
|
/homeassistant/components/brunt/ @eavanvalkenburg
|
|
|
|
/tests/components/brunt/ @eavanvalkenburg
|
|
|
|
/homeassistant/components/bsblan/ @liudger
|
|
|
|
/tests/components/bsblan/ @liudger
|
2022-10-06 15:01:27 +00:00
|
|
|
/homeassistant/components/bt_smarthub/ @typhoon2099
|
2022-08-27 13:25:29 +00:00
|
|
|
/homeassistant/components/bthome/ @Ernst79
|
|
|
|
/tests/components/bthome/ @Ernst79
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/buienradar/ @mjj4791 @ties @Robbie1221
|
|
|
|
/tests/components/buienradar/ @mjj4791 @ties @Robbie1221
|
|
|
|
/homeassistant/components/button/ @home-assistant/core
|
|
|
|
/tests/components/button/ @home-assistant/core
|
|
|
|
/homeassistant/components/calendar/ @home-assistant/core
|
|
|
|
/tests/components/calendar/ @home-assistant/core
|
|
|
|
/homeassistant/components/camera/ @home-assistant/core
|
|
|
|
/tests/components/camera/ @home-assistant/core
|
|
|
|
/homeassistant/components/cast/ @emontnemery
|
|
|
|
/tests/components/cast/ @emontnemery
|
|
|
|
/homeassistant/components/cert_expiry/ @Cereal2nd @jjlawren
|
|
|
|
/tests/components/cert_expiry/ @Cereal2nd @jjlawren
|
|
|
|
/homeassistant/components/circuit/ @braam
|
|
|
|
/homeassistant/components/cisco_ios/ @fbradyirl
|
|
|
|
/homeassistant/components/cisco_mobility_express/ @fbradyirl
|
|
|
|
/homeassistant/components/cisco_webex_teams/ @fbradyirl
|
|
|
|
/homeassistant/components/climate/ @home-assistant/core
|
|
|
|
/tests/components/climate/ @home-assistant/core
|
|
|
|
/homeassistant/components/cloud/ @home-assistant/cloud
|
|
|
|
/tests/components/cloud/ @home-assistant/cloud
|
|
|
|
/homeassistant/components/cloudflare/ @ludeeus @ctalkington
|
|
|
|
/tests/components/cloudflare/ @ludeeus @ctalkington
|
|
|
|
/homeassistant/components/coinbase/ @tombrien
|
|
|
|
/tests/components/coinbase/ @tombrien
|
|
|
|
/homeassistant/components/color_extractor/ @GenericStudent
|
|
|
|
/tests/components/color_extractor/ @GenericStudent
|
|
|
|
/homeassistant/components/comfoconnect/ @michaelarnauts
|
|
|
|
/tests/components/comfoconnect/ @michaelarnauts
|
|
|
|
/homeassistant/components/compensation/ @Petro31
|
|
|
|
/tests/components/compensation/ @Petro31
|
|
|
|
/homeassistant/components/config/ @home-assistant/core
|
|
|
|
/tests/components/config/ @home-assistant/core
|
|
|
|
/homeassistant/components/configurator/ @home-assistant/core
|
|
|
|
/tests/components/configurator/ @home-assistant/core
|
|
|
|
/homeassistant/components/control4/ @lawtancool
|
|
|
|
/tests/components/control4/ @lawtancool
|
|
|
|
/homeassistant/components/conversation/ @home-assistant/core
|
|
|
|
/tests/components/conversation/ @home-assistant/core
|
|
|
|
/homeassistant/components/coolmaster/ @OnFreund
|
|
|
|
/tests/components/coolmaster/ @OnFreund
|
|
|
|
/homeassistant/components/coronavirus/ @home-assistant/core
|
|
|
|
/tests/components/coronavirus/ @home-assistant/core
|
|
|
|
/homeassistant/components/counter/ @fabaff
|
|
|
|
/tests/components/counter/ @fabaff
|
|
|
|
/homeassistant/components/cover/ @home-assistant/core
|
|
|
|
/tests/components/cover/ @home-assistant/core
|
|
|
|
/homeassistant/components/cpuspeed/ @fabaff @frenck
|
|
|
|
/tests/components/cpuspeed/ @fabaff @frenck
|
|
|
|
/homeassistant/components/crownstone/ @Crownstone @RicArch97
|
|
|
|
/tests/components/crownstone/ @Crownstone @RicArch97
|
|
|
|
/homeassistant/components/cups/ @fabaff
|
|
|
|
/homeassistant/components/daikin/ @fredrike
|
|
|
|
/tests/components/daikin/ @fredrike
|
|
|
|
/homeassistant/components/darksky/ @fabaff
|
|
|
|
/tests/components/darksky/ @fabaff
|
|
|
|
/homeassistant/components/debugpy/ @frenck
|
|
|
|
/tests/components/debugpy/ @frenck
|
|
|
|
/homeassistant/components/deconz/ @Kane610
|
|
|
|
/tests/components/deconz/ @Kane610
|
|
|
|
/homeassistant/components/default_config/ @home-assistant/core
|
|
|
|
/tests/components/default_config/ @home-assistant/core
|
|
|
|
/homeassistant/components/delijn/ @bollewolle @Emilv2
|
|
|
|
/homeassistant/components/deluge/ @tkdrob
|
|
|
|
/tests/components/deluge/ @tkdrob
|
|
|
|
/homeassistant/components/demo/ @home-assistant/core
|
|
|
|
/tests/components/demo/ @home-assistant/core
|
|
|
|
/homeassistant/components/denonavr/ @ol-iver @starkillerOG
|
|
|
|
/tests/components/denonavr/ @ol-iver @starkillerOG
|
|
|
|
/homeassistant/components/derivative/ @afaucogney
|
|
|
|
/tests/components/derivative/ @afaucogney
|
|
|
|
/homeassistant/components/device_automation/ @home-assistant/core
|
|
|
|
/tests/components/device_automation/ @home-assistant/core
|
|
|
|
/homeassistant/components/device_tracker/ @home-assistant/core
|
|
|
|
/tests/components/device_tracker/ @home-assistant/core
|
|
|
|
/homeassistant/components/devolo_home_control/ @2Fake @Shutgun
|
|
|
|
/tests/components/devolo_home_control/ @2Fake @Shutgun
|
|
|
|
/homeassistant/components/devolo_home_network/ @2Fake @Shutgun
|
|
|
|
/tests/components/devolo_home_network/ @2Fake @Shutgun
|
|
|
|
/homeassistant/components/dexcom/ @gagebenne
|
|
|
|
/tests/components/dexcom/ @gagebenne
|
|
|
|
/homeassistant/components/dhcp/ @bdraco
|
|
|
|
/tests/components/dhcp/ @bdraco
|
|
|
|
/homeassistant/components/diagnostics/ @home-assistant/core
|
|
|
|
/tests/components/diagnostics/ @home-assistant/core
|
|
|
|
/homeassistant/components/digital_ocean/ @fabaff
|
|
|
|
/homeassistant/components/discogs/ @thibmaek
|
2022-03-30 11:18:48 +00:00
|
|
|
/homeassistant/components/discord/ @tkdrob
|
|
|
|
/tests/components/discord/ @tkdrob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/discovery/ @home-assistant/core
|
|
|
|
/tests/components/discovery/ @home-assistant/core
|
|
|
|
/homeassistant/components/dlna_dmr/ @StevenLooman @chishm
|
|
|
|
/tests/components/dlna_dmr/ @StevenLooman @chishm
|
|
|
|
/homeassistant/components/dlna_dms/ @chishm
|
|
|
|
/tests/components/dlna_dms/ @chishm
|
|
|
|
/homeassistant/components/dnsip/ @gjohansson-ST
|
|
|
|
/tests/components/dnsip/ @gjohansson-ST
|
|
|
|
/homeassistant/components/doorbird/ @oblogic7 @bdraco @flacjacket
|
|
|
|
/tests/components/doorbird/ @oblogic7 @bdraco @flacjacket
|
|
|
|
/homeassistant/components/dsmr/ @Robbie1221 @frenck
|
|
|
|
/tests/components/dsmr/ @Robbie1221 @frenck
|
2022-09-26 03:15:50 +00:00
|
|
|
/homeassistant/components/dsmr_reader/ @depl0y @glodenox
|
|
|
|
/tests/components/dsmr_reader/ @depl0y @glodenox
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/dunehd/ @bieniu
|
|
|
|
/tests/components/dunehd/ @bieniu
|
|
|
|
/homeassistant/components/dwd_weather_warnings/ @runningman84 @stephan192 @Hummel95
|
|
|
|
/homeassistant/components/dynalite/ @ziv1234
|
|
|
|
/tests/components/dynalite/ @ziv1234
|
|
|
|
/homeassistant/components/eafm/ @Jc2k
|
|
|
|
/tests/components/eafm/ @Jc2k
|
|
|
|
/homeassistant/components/ecobee/ @marthoc
|
|
|
|
/tests/components/ecobee/ @marthoc
|
|
|
|
/homeassistant/components/econet/ @vangorra @w1ll1am23
|
|
|
|
/tests/components/econet/ @vangorra @w1ll1am23
|
2022-09-04 16:57:50 +00:00
|
|
|
/homeassistant/components/ecovacs/ @OverloadUT @mib1185
|
2022-08-31 10:51:39 +00:00
|
|
|
/homeassistant/components/ecowitt/ @pvizeli
|
|
|
|
/tests/components/ecowitt/ @pvizeli
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/efergy/ @tkdrob
|
|
|
|
/tests/components/efergy/ @tkdrob
|
|
|
|
/homeassistant/components/egardia/ @jeroenterheerdt
|
|
|
|
/homeassistant/components/eight_sleep/ @mezz64 @raman325
|
2022-06-11 06:16:46 +00:00
|
|
|
/tests/components/eight_sleep/ @mezz64 @raman325
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/elgato/ @frenck
|
|
|
|
/tests/components/elgato/ @frenck
|
|
|
|
/homeassistant/components/elkm1/ @gwww @bdraco
|
|
|
|
/tests/components/elkm1/ @gwww @bdraco
|
|
|
|
/homeassistant/components/elmax/ @albertogeniola
|
|
|
|
/tests/components/elmax/ @albertogeniola
|
|
|
|
/homeassistant/components/elv/ @majuss
|
|
|
|
/homeassistant/components/emby/ @mezz64
|
|
|
|
/homeassistant/components/emoncms/ @borpin
|
|
|
|
/homeassistant/components/emonitor/ @bdraco
|
|
|
|
/tests/components/emonitor/ @bdraco
|
2022-06-20 08:27:38 +00:00
|
|
|
/homeassistant/components/emulated_hue/ @bdraco
|
|
|
|
/tests/components/emulated_hue/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/emulated_kasa/ @kbickar
|
|
|
|
/tests/components/emulated_kasa/ @kbickar
|
|
|
|
/homeassistant/components/energy/ @home-assistant/core
|
|
|
|
/tests/components/energy/ @home-assistant/core
|
|
|
|
/homeassistant/components/enigma2/ @fbradyirl
|
|
|
|
/homeassistant/components/enocean/ @bdurrer
|
|
|
|
/tests/components/enocean/ @bdurrer
|
|
|
|
/homeassistant/components/enphase_envoy/ @gtdiehl
|
|
|
|
/tests/components/enphase_envoy/ @gtdiehl
|
|
|
|
/homeassistant/components/entur_public_transport/ @hfurubotten
|
|
|
|
/homeassistant/components/environment_canada/ @gwww @michaeldavie
|
|
|
|
/tests/components/environment_canada/ @gwww @michaeldavie
|
|
|
|
/homeassistant/components/envisalink/ @ufodone
|
|
|
|
/homeassistant/components/ephember/ @ttroy50
|
|
|
|
/homeassistant/components/epson/ @pszafer
|
|
|
|
/tests/components/epson/ @pszafer
|
|
|
|
/homeassistant/components/epsonworkforce/ @ThaStealth
|
|
|
|
/homeassistant/components/eq3btsmart/ @rytilahti
|
2022-08-08 09:48:42 +00:00
|
|
|
/homeassistant/components/escea/ @lazdavila
|
|
|
|
/tests/components/escea/ @lazdavila
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/esphome/ @OttoWinter @jesserockz
|
|
|
|
/tests/components/esphome/ @OttoWinter @jesserockz
|
|
|
|
/homeassistant/components/evil_genius_labs/ @balloob
|
|
|
|
/tests/components/evil_genius_labs/ @balloob
|
|
|
|
/homeassistant/components/evohome/ @zxdavb
|
|
|
|
/homeassistant/components/ezviz/ @RenierM26 @baqs
|
|
|
|
/tests/components/ezviz/ @RenierM26 @baqs
|
|
|
|
/homeassistant/components/faa_delays/ @ntilley905
|
|
|
|
/tests/components/faa_delays/ @ntilley905
|
|
|
|
/homeassistant/components/fan/ @home-assistant/core
|
|
|
|
/tests/components/fan/ @home-assistant/core
|
|
|
|
/homeassistant/components/fastdotcom/ @rohankapoorcom
|
|
|
|
/homeassistant/components/fibaro/ @rappenze
|
|
|
|
/tests/components/fibaro/ @rappenze
|
|
|
|
/homeassistant/components/file/ @fabaff
|
|
|
|
/tests/components/file/ @fabaff
|
2022-08-18 16:02:12 +00:00
|
|
|
/homeassistant/components/file_upload/ @home-assistant/core
|
|
|
|
/tests/components/file_upload/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/filesize/ @gjohansson-ST
|
|
|
|
/tests/components/filesize/ @gjohansson-ST
|
|
|
|
/homeassistant/components/filter/ @dgomes
|
|
|
|
/tests/components/filter/ @dgomes
|
|
|
|
/homeassistant/components/fireservicerota/ @cyberjunky
|
|
|
|
/tests/components/fireservicerota/ @cyberjunky
|
|
|
|
/homeassistant/components/firmata/ @DaAwesomeP
|
|
|
|
/tests/components/firmata/ @DaAwesomeP
|
|
|
|
/homeassistant/components/fivem/ @Sander0542
|
|
|
|
/tests/components/fivem/ @Sander0542
|
|
|
|
/homeassistant/components/fjaraskupan/ @elupus
|
|
|
|
/tests/components/fjaraskupan/ @elupus
|
|
|
|
/homeassistant/components/flick_electric/ @ZephireNZ
|
|
|
|
/tests/components/flick_electric/ @ZephireNZ
|
|
|
|
/homeassistant/components/flipr/ @cnico
|
|
|
|
/tests/components/flipr/ @cnico
|
|
|
|
/homeassistant/components/flo/ @dmulcahey
|
|
|
|
/tests/components/flo/ @dmulcahey
|
2022-08-25 16:21:41 +00:00
|
|
|
/homeassistant/components/flume/ @ChrisMandich @bdraco @jeeftor
|
|
|
|
/tests/components/flume/ @ChrisMandich @bdraco @jeeftor
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/flux_led/ @icemanch @bdraco
|
|
|
|
/tests/components/flux_led/ @icemanch @bdraco
|
|
|
|
/homeassistant/components/forecast_solar/ @klaasnicolaas @frenck
|
|
|
|
/tests/components/forecast_solar/ @klaasnicolaas @frenck
|
|
|
|
/homeassistant/components/forked_daapd/ @uvjustin
|
|
|
|
/tests/components/forked_daapd/ @uvjustin
|
|
|
|
/homeassistant/components/fortios/ @kimfrellsen
|
|
|
|
/homeassistant/components/foscam/ @skgsergio
|
|
|
|
/tests/components/foscam/ @skgsergio
|
|
|
|
/homeassistant/components/freebox/ @hacf-fr @Quentame
|
|
|
|
/tests/components/freebox/ @hacf-fr @Quentame
|
|
|
|
/homeassistant/components/freedompro/ @stefano055415
|
|
|
|
/tests/components/freedompro/ @stefano055415
|
|
|
|
/homeassistant/components/fritz/ @mammuth @AaronDavidSchneider @chemelli74 @mib1185
|
|
|
|
/tests/components/fritz/ @mammuth @AaronDavidSchneider @chemelli74 @mib1185
|
|
|
|
/homeassistant/components/fritzbox/ @mib1185 @flabbamann
|
|
|
|
/tests/components/fritzbox/ @mib1185 @flabbamann
|
2022-04-26 19:51:16 +00:00
|
|
|
/homeassistant/components/fritzbox_callmonitor/ @cdce8p
|
|
|
|
/tests/components/fritzbox_callmonitor/ @cdce8p
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/fronius/ @nielstron @farmio
|
|
|
|
/tests/components/fronius/ @nielstron @farmio
|
|
|
|
/homeassistant/components/frontend/ @home-assistant/frontend
|
|
|
|
/tests/components/frontend/ @home-assistant/frontend
|
2022-05-30 16:31:57 +00:00
|
|
|
/homeassistant/components/frontier_silicon/ @wlcrs
|
2022-08-16 18:08:35 +00:00
|
|
|
/homeassistant/components/fully_kiosk/ @cgarwood
|
|
|
|
/tests/components/fully_kiosk/ @cgarwood
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/garages_amsterdam/ @klaasnicolaas
|
|
|
|
/tests/components/garages_amsterdam/ @klaasnicolaas
|
|
|
|
/homeassistant/components/gdacs/ @exxamalte
|
|
|
|
/tests/components/gdacs/ @exxamalte
|
|
|
|
/homeassistant/components/generic/ @davet2001
|
|
|
|
/tests/components/generic/ @davet2001
|
|
|
|
/homeassistant/components/generic_hygrostat/ @Shulyaka
|
|
|
|
/tests/components/generic_hygrostat/ @Shulyaka
|
|
|
|
/homeassistant/components/geniushub/ @zxdavb
|
|
|
|
/homeassistant/components/geo_json_events/ @exxamalte
|
|
|
|
/tests/components/geo_json_events/ @exxamalte
|
|
|
|
/homeassistant/components/geo_location/ @home-assistant/core
|
|
|
|
/tests/components/geo_location/ @home-assistant/core
|
|
|
|
/homeassistant/components/geo_rss_events/ @exxamalte
|
|
|
|
/tests/components/geo_rss_events/ @exxamalte
|
2022-05-12 10:12:47 +00:00
|
|
|
/homeassistant/components/geocaching/ @Sholofly @reinder83
|
|
|
|
/tests/components/geocaching/ @Sholofly @reinder83
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/geonetnz_quakes/ @exxamalte
|
|
|
|
/tests/components/geonetnz_quakes/ @exxamalte
|
|
|
|
/homeassistant/components/geonetnz_volcano/ @exxamalte
|
|
|
|
/tests/components/geonetnz_volcano/ @exxamalte
|
|
|
|
/homeassistant/components/gios/ @bieniu
|
|
|
|
/tests/components/gios/ @bieniu
|
|
|
|
/homeassistant/components/github/ @timmo001 @ludeeus
|
|
|
|
/tests/components/github/ @timmo001 @ludeeus
|
2022-04-13 14:05:14 +00:00
|
|
|
/homeassistant/components/glances/ @engrbm87
|
|
|
|
/tests/components/glances/ @engrbm87
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/goalzero/ @tkdrob
|
|
|
|
/tests/components/goalzero/ @tkdrob
|
|
|
|
/homeassistant/components/gogogate2/ @vangorra @bdraco
|
|
|
|
/tests/components/gogogate2/ @vangorra @bdraco
|
|
|
|
/homeassistant/components/goodwe/ @mletenay @starkillerOG
|
|
|
|
/tests/components/goodwe/ @mletenay @starkillerOG
|
|
|
|
/homeassistant/components/google/ @allenporter
|
|
|
|
/tests/components/google/ @allenporter
|
|
|
|
/homeassistant/components/google_assistant/ @home-assistant/cloud
|
|
|
|
/tests/components/google_assistant/ @home-assistant/cloud
|
|
|
|
/homeassistant/components/google_cloud/ @lufton
|
2022-09-14 18:31:54 +00:00
|
|
|
/homeassistant/components/google_sheets/ @tkdrob
|
2022-09-26 02:12:07 +00:00
|
|
|
/tests/components/google_sheets/ @tkdrob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/google_travel_time/ @eifinger
|
|
|
|
/tests/components/google_travel_time/ @eifinger
|
2022-07-24 08:39:23 +00:00
|
|
|
/homeassistant/components/govee_ble/ @bdraco
|
|
|
|
/tests/components/govee_ble/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/gpsd/ @fabaff
|
|
|
|
/homeassistant/components/gree/ @cmroche
|
|
|
|
/tests/components/gree/ @cmroche
|
|
|
|
/homeassistant/components/greeneye_monitor/ @jkeljo
|
|
|
|
/tests/components/greeneye_monitor/ @jkeljo
|
|
|
|
/homeassistant/components/group/ @home-assistant/core
|
|
|
|
/tests/components/group/ @home-assistant/core
|
|
|
|
/homeassistant/components/growatt_server/ @indykoning @muppet3000 @JasperPlant
|
|
|
|
/tests/components/growatt_server/ @indykoning @muppet3000 @JasperPlant
|
|
|
|
/homeassistant/components/guardian/ @bachya
|
|
|
|
/tests/components/guardian/ @bachya
|
|
|
|
/homeassistant/components/habitica/ @ASMfreaK @leikoilja
|
|
|
|
/tests/components/habitica/ @ASMfreaK @leikoilja
|
2022-05-26 20:15:44 +00:00
|
|
|
/homeassistant/components/hardkernel/ @home-assistant/core
|
|
|
|
/tests/components/hardkernel/ @home-assistant/core
|
2022-05-25 18:39:15 +00:00
|
|
|
/homeassistant/components/hardware/ @home-assistant/core
|
|
|
|
/tests/components/hardware/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/harmony/ @ehendrix23 @bramkragten @bdraco @mkeesey @Aohzan
|
|
|
|
/tests/components/harmony/ @ehendrix23 @bramkragten @bdraco @mkeesey @Aohzan
|
|
|
|
/homeassistant/components/hassio/ @home-assistant/supervisor
|
|
|
|
/tests/components/hassio/ @home-assistant/supervisor
|
2022-08-08 11:47:05 +00:00
|
|
|
/homeassistant/components/hdmi_cec/ @inytar
|
|
|
|
/tests/components/hdmi_cec/ @inytar
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/heatmiser/ @andylockran
|
|
|
|
/homeassistant/components/heos/ @andrewsayre
|
|
|
|
/tests/components/heos/ @andrewsayre
|
|
|
|
/homeassistant/components/here_travel_time/ @eifinger
|
|
|
|
/tests/components/here_travel_time/ @eifinger
|
|
|
|
/homeassistant/components/hikvision/ @mezz64
|
|
|
|
/homeassistant/components/hikvisioncam/ @fbradyirl
|
|
|
|
/homeassistant/components/hisense_aehw4a1/ @bannhead
|
|
|
|
/tests/components/hisense_aehw4a1/ @bannhead
|
|
|
|
/homeassistant/components/history/ @home-assistant/core
|
|
|
|
/tests/components/history/ @home-assistant/core
|
|
|
|
/homeassistant/components/hive/ @Rendili @KJonline
|
|
|
|
/tests/components/hive/ @Rendili @KJonline
|
|
|
|
/homeassistant/components/hlk_sw16/ @jameshilliard
|
|
|
|
/tests/components/hlk_sw16/ @jameshilliard
|
|
|
|
/homeassistant/components/home_connect/ @DavidMStraub
|
|
|
|
/tests/components/home_connect/ @DavidMStraub
|
|
|
|
/homeassistant/components/home_plus_control/ @chemaaa
|
|
|
|
/tests/components/home_plus_control/ @chemaaa
|
|
|
|
/homeassistant/components/homeassistant/ @home-assistant/core
|
|
|
|
/tests/components/homeassistant/ @home-assistant/core
|
2022-07-27 08:13:16 +00:00
|
|
|
/homeassistant/components/homeassistant_alerts/ @home-assistant/core
|
|
|
|
/tests/components/homeassistant_alerts/ @home-assistant/core
|
2022-11-16 16:38:07 +00:00
|
|
|
/homeassistant/components/homeassistant_hardware/ @home-assistant/core
|
|
|
|
/tests/components/homeassistant_hardware/ @home-assistant/core
|
2022-08-18 19:52:12 +00:00
|
|
|
/homeassistant/components/homeassistant_sky_connect/ @home-assistant/core
|
|
|
|
/tests/components/homeassistant_sky_connect/ @home-assistant/core
|
2022-06-14 06:25:11 +00:00
|
|
|
/homeassistant/components/homeassistant_yellow/ @home-assistant/core
|
|
|
|
/tests/components/homeassistant_yellow/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/homekit/ @bdraco
|
|
|
|
/tests/components/homekit/ @bdraco
|
|
|
|
/homeassistant/components/homekit_controller/ @Jc2k @bdraco
|
|
|
|
/tests/components/homekit_controller/ @Jc2k @bdraco
|
|
|
|
/homeassistant/components/homematic/ @pvizeli @danielperna84
|
|
|
|
/tests/components/homematic/ @pvizeli @danielperna84
|
|
|
|
/homeassistant/components/homewizard/ @DCSBL
|
|
|
|
/tests/components/homewizard/ @DCSBL
|
|
|
|
/homeassistant/components/honeywell/ @rdfurman
|
|
|
|
/tests/components/honeywell/ @rdfurman
|
|
|
|
/homeassistant/components/http/ @home-assistant/core
|
|
|
|
/tests/components/http/ @home-assistant/core
|
|
|
|
/homeassistant/components/huawei_lte/ @scop @fphammerle
|
|
|
|
/tests/components/huawei_lte/ @scop @fphammerle
|
|
|
|
/homeassistant/components/hue/ @balloob @marcelveldt
|
|
|
|
/tests/components/hue/ @balloob @marcelveldt
|
|
|
|
/homeassistant/components/huisbaasje/ @dennisschroer
|
|
|
|
/tests/components/huisbaasje/ @dennisschroer
|
|
|
|
/homeassistant/components/humidifier/ @home-assistant/core @Shulyaka
|
|
|
|
/tests/components/humidifier/ @home-assistant/core @Shulyaka
|
2022-05-30 17:54:39 +00:00
|
|
|
/homeassistant/components/hunterdouglas_powerview/ @bdraco @kingy444 @trullock
|
|
|
|
/tests/components/hunterdouglas_powerview/ @bdraco @kingy444 @trullock
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/hvv_departures/ @vigonotion
|
|
|
|
/tests/components/hvv_departures/ @vigonotion
|
|
|
|
/homeassistant/components/hydrawise/ @ptcryan
|
|
|
|
/homeassistant/components/hyperion/ @dermotduffy
|
|
|
|
/tests/components/hyperion/ @dermotduffy
|
|
|
|
/homeassistant/components/ialarm/ @RyuzakiKK
|
|
|
|
/tests/components/ialarm/ @RyuzakiKK
|
|
|
|
/homeassistant/components/iammeter/ @lewei50
|
|
|
|
/homeassistant/components/iaqualink/ @flz
|
|
|
|
/tests/components/iaqualink/ @flz
|
2022-09-20 01:43:41 +00:00
|
|
|
/homeassistant/components/ibeacon/ @bdraco
|
|
|
|
/tests/components/ibeacon/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/icloud/ @Quentame @nzapponi
|
|
|
|
/tests/components/icloud/ @Quentame @nzapponi
|
|
|
|
/homeassistant/components/ign_sismologia/ @exxamalte
|
|
|
|
/tests/components/ign_sismologia/ @exxamalte
|
|
|
|
/homeassistant/components/image/ @home-assistant/core
|
|
|
|
/tests/components/image/ @home-assistant/core
|
|
|
|
/homeassistant/components/image_processing/ @home-assistant/core
|
|
|
|
/tests/components/image_processing/ @home-assistant/core
|
|
|
|
/homeassistant/components/incomfort/ @zxdavb
|
2022-04-13 14:09:02 +00:00
|
|
|
/homeassistant/components/influxdb/ @mdegat01
|
|
|
|
/tests/components/influxdb/ @mdegat01
|
2022-07-22 03:17:09 +00:00
|
|
|
/homeassistant/components/inkbird/ @bdraco
|
|
|
|
/tests/components/inkbird/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/input_boolean/ @home-assistant/core
|
|
|
|
/tests/components/input_boolean/ @home-assistant/core
|
|
|
|
/homeassistant/components/input_button/ @home-assistant/core
|
|
|
|
/tests/components/input_button/ @home-assistant/core
|
|
|
|
/homeassistant/components/input_datetime/ @home-assistant/core
|
|
|
|
/tests/components/input_datetime/ @home-assistant/core
|
|
|
|
/homeassistant/components/input_number/ @home-assistant/core
|
|
|
|
/tests/components/input_number/ @home-assistant/core
|
|
|
|
/homeassistant/components/input_select/ @home-assistant/core
|
|
|
|
/tests/components/input_select/ @home-assistant/core
|
|
|
|
/homeassistant/components/input_text/ @home-assistant/core
|
|
|
|
/tests/components/input_text/ @home-assistant/core
|
|
|
|
/homeassistant/components/insteon/ @teharris1
|
|
|
|
/tests/components/insteon/ @teharris1
|
|
|
|
/homeassistant/components/integration/ @dgomes
|
|
|
|
/tests/components/integration/ @dgomes
|
|
|
|
/homeassistant/components/intellifire/ @jeeftor
|
|
|
|
/tests/components/intellifire/ @jeeftor
|
|
|
|
/homeassistant/components/intent/ @home-assistant/core
|
|
|
|
/tests/components/intent/ @home-assistant/core
|
|
|
|
/homeassistant/components/intesishome/ @jnimmo
|
|
|
|
/homeassistant/components/ios/ @robbiet480
|
|
|
|
/tests/components/ios/ @robbiet480
|
|
|
|
/homeassistant/components/iotawatt/ @gtdiehl @jyavenard
|
|
|
|
/tests/components/iotawatt/ @gtdiehl @jyavenard
|
|
|
|
/homeassistant/components/iperf3/ @rohankapoorcom
|
|
|
|
/homeassistant/components/ipma/ @dgomes @abmantis
|
|
|
|
/tests/components/ipma/ @dgomes @abmantis
|
|
|
|
/homeassistant/components/ipp/ @ctalkington
|
|
|
|
/tests/components/ipp/ @ctalkington
|
|
|
|
/homeassistant/components/iqvia/ @bachya
|
|
|
|
/tests/components/iqvia/ @bachya
|
|
|
|
/homeassistant/components/irish_rail_transport/ @ttroy50
|
|
|
|
/homeassistant/components/islamic_prayer_times/ @engrbm87
|
|
|
|
/tests/components/islamic_prayer_times/ @engrbm87
|
|
|
|
/homeassistant/components/iss/ @DurgNomis-drol
|
|
|
|
/tests/components/iss/ @DurgNomis-drol
|
|
|
|
/homeassistant/components/isy994/ @bdraco @shbatm
|
|
|
|
/tests/components/isy994/ @bdraco @shbatm
|
|
|
|
/homeassistant/components/izone/ @Swamp-Ig
|
|
|
|
/tests/components/izone/ @Swamp-Ig
|
2022-10-09 02:12:30 +00:00
|
|
|
/homeassistant/components/jellyfin/ @j-stienstra @ctalkington
|
|
|
|
/tests/components/jellyfin/ @j-stienstra @ctalkington
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/jewish_calendar/ @tsvi
|
|
|
|
/tests/components/jewish_calendar/ @tsvi
|
|
|
|
/homeassistant/components/juicenet/ @jesserockz
|
|
|
|
/tests/components/juicenet/ @jesserockz
|
2022-08-08 21:35:05 +00:00
|
|
|
/homeassistant/components/justnimbus/ @kvanzuijlen
|
|
|
|
/tests/components/justnimbus/ @kvanzuijlen
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/kaiterra/ @Michsior14
|
|
|
|
/homeassistant/components/kaleidescape/ @SteveEasley
|
|
|
|
/tests/components/kaleidescape/ @SteveEasley
|
|
|
|
/homeassistant/components/keba/ @dannerph
|
|
|
|
/homeassistant/components/keenetic_ndms2/ @foxel
|
|
|
|
/tests/components/keenetic_ndms2/ @foxel
|
|
|
|
/homeassistant/components/kef/ @basnijholt
|
2022-09-21 15:09:39 +00:00
|
|
|
/homeassistant/components/kegtron/ @Ernst79
|
|
|
|
/tests/components/kegtron/ @Ernst79
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/keyboard_remote/ @bendavid @lanrat
|
2022-09-22 01:44:37 +00:00
|
|
|
/homeassistant/components/keymitt_ble/ @spycle
|
|
|
|
/tests/components/keymitt_ble/ @spycle
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/kmtronic/ @dgomes
|
|
|
|
/tests/components/kmtronic/ @dgomes
|
|
|
|
/homeassistant/components/knx/ @Julius2342 @farmio @marvin-w
|
|
|
|
/tests/components/knx/ @Julius2342 @farmio @marvin-w
|
|
|
|
/homeassistant/components/kodi/ @OnFreund @cgtobi
|
|
|
|
/tests/components/kodi/ @OnFreund @cgtobi
|
|
|
|
/homeassistant/components/konnected/ @heythisisnate
|
|
|
|
/tests/components/konnected/ @heythisisnate
|
|
|
|
/homeassistant/components/kostal_plenticore/ @stegm
|
|
|
|
/tests/components/kostal_plenticore/ @stegm
|
|
|
|
/homeassistant/components/kraken/ @eifinger
|
|
|
|
/tests/components/kraken/ @eifinger
|
|
|
|
/homeassistant/components/kulersky/ @emlove
|
|
|
|
/tests/components/kulersky/ @emlove
|
2022-07-27 14:37:22 +00:00
|
|
|
/homeassistant/components/lacrosse_view/ @IceBotYT
|
|
|
|
/tests/components/lacrosse_view/ @IceBotYT
|
2022-10-07 13:33:53 +00:00
|
|
|
/homeassistant/components/lametric/ @robbiet480 @frenck @bachya
|
|
|
|
/tests/components/lametric/ @robbiet480 @frenck @bachya
|
2022-08-18 14:40:04 +00:00
|
|
|
/homeassistant/components/landisgyr_heat_meter/ @vpathuis
|
|
|
|
/tests/components/landisgyr_heat_meter/ @vpathuis
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/launch_library/ @ludeeus @DurgNomis-drol
|
|
|
|
/tests/components/launch_library/ @ludeeus @DurgNomis-drol
|
2022-05-21 19:18:01 +00:00
|
|
|
/homeassistant/components/laundrify/ @xLarry
|
|
|
|
/tests/components/laundrify/ @xLarry
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/lcn/ @alengwenus
|
|
|
|
/tests/components/lcn/ @alengwenus
|
2022-08-29 16:38:18 +00:00
|
|
|
/homeassistant/components/led_ble/ @bdraco
|
|
|
|
/tests/components/led_ble/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/lg_netcast/ @Drafteed
|
2022-09-20 15:51:29 +00:00
|
|
|
/homeassistant/components/lidarr/ @tkdrob
|
|
|
|
/tests/components/lidarr/ @tkdrob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/life360/ @pnbruckner
|
2022-06-29 16:40:02 +00:00
|
|
|
/tests/components/life360/ @pnbruckner
|
2022-07-18 22:56:34 +00:00
|
|
|
/homeassistant/components/lifx/ @bdraco @Djelibeybi
|
|
|
|
/tests/components/lifx/ @bdraco @Djelibeybi
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/light/ @home-assistant/core
|
|
|
|
/tests/components/light/ @home-assistant/core
|
|
|
|
/homeassistant/components/linux_battery/ @fabaff
|
|
|
|
/homeassistant/components/litejet/ @joncar
|
|
|
|
/tests/components/litejet/ @joncar
|
2022-08-29 04:40:28 +00:00
|
|
|
/homeassistant/components/litterrobot/ @natekspencer @tkdrob
|
|
|
|
/tests/components/litterrobot/ @natekspencer @tkdrob
|
2022-11-07 13:40:23 +00:00
|
|
|
/homeassistant/components/livisi/ @StefanIacobLivisi
|
|
|
|
/tests/components/livisi/ @StefanIacobLivisi
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/local_ip/ @issacg
|
|
|
|
/tests/components/local_ip/ @issacg
|
|
|
|
/homeassistant/components/lock/ @home-assistant/core
|
|
|
|
/tests/components/lock/ @home-assistant/core
|
2022-06-20 02:24:42 +00:00
|
|
|
/homeassistant/components/logbook/ @home-assistant/core
|
|
|
|
/tests/components/logbook/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/logger/ @home-assistant/core
|
|
|
|
/tests/components/logger/ @home-assistant/core
|
|
|
|
/homeassistant/components/logi_circle/ @evanjd
|
|
|
|
/tests/components/logi_circle/ @evanjd
|
|
|
|
/homeassistant/components/lookin/ @ANMalko @bdraco
|
|
|
|
/tests/components/lookin/ @ANMalko @bdraco
|
|
|
|
/homeassistant/components/lovelace/ @home-assistant/frontend
|
|
|
|
/tests/components/lovelace/ @home-assistant/frontend
|
|
|
|
/homeassistant/components/luci/ @mzdrale
|
|
|
|
/homeassistant/components/luftdaten/ @fabaff @frenck
|
|
|
|
/tests/components/luftdaten/ @fabaff @frenck
|
|
|
|
/homeassistant/components/lupusec/ @majuss
|
2022-11-10 18:35:47 +00:00
|
|
|
/homeassistant/components/lutron/ @cdheiser
|
2022-08-20 20:56:19 +00:00
|
|
|
/homeassistant/components/lutron_caseta/ @swails @bdraco @danaues
|
|
|
|
/tests/components/lutron_caseta/ @swails @bdraco @danaues
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/lyric/ @timmo001
|
|
|
|
/tests/components/lyric/ @timmo001
|
|
|
|
/homeassistant/components/mastodon/ @fabaff
|
|
|
|
/homeassistant/components/matrix/ @tinloaf
|
|
|
|
/homeassistant/components/mazda/ @bdr99
|
|
|
|
/tests/components/mazda/ @bdr99
|
2022-04-12 12:54:01 +00:00
|
|
|
/homeassistant/components/meater/ @Sotolotl @emontnemery
|
|
|
|
/tests/components/meater/ @Sotolotl @emontnemery
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/media_player/ @home-assistant/core
|
|
|
|
/tests/components/media_player/ @home-assistant/core
|
|
|
|
/homeassistant/components/media_source/ @hunterjm
|
|
|
|
/tests/components/media_source/ @hunterjm
|
|
|
|
/homeassistant/components/mediaroom/ @dgomes
|
|
|
|
/homeassistant/components/melcloud/ @vilppuvuorinen
|
|
|
|
/tests/components/melcloud/ @vilppuvuorinen
|
|
|
|
/homeassistant/components/melissa/ @kennedyshead
|
|
|
|
/tests/components/melissa/ @kennedyshead
|
2022-08-30 21:06:44 +00:00
|
|
|
/homeassistant/components/melnor/ @vanstinator
|
|
|
|
/tests/components/melnor/ @vanstinator
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/met/ @danielhiversen @thimic
|
|
|
|
/tests/components/met/ @danielhiversen @thimic
|
|
|
|
/homeassistant/components/met_eireann/ @DylanGore
|
|
|
|
/tests/components/met_eireann/ @DylanGore
|
|
|
|
/homeassistant/components/meteo_france/ @hacf-fr @oncleben31 @Quentame
|
|
|
|
/tests/components/meteo_france/ @hacf-fr @oncleben31 @Quentame
|
|
|
|
/homeassistant/components/meteoalarm/ @rolfberkenbosch
|
|
|
|
/homeassistant/components/meteoclimatic/ @adrianmo
|
|
|
|
/tests/components/meteoclimatic/ @adrianmo
|
2022-07-04 16:12:41 +00:00
|
|
|
/homeassistant/components/metoffice/ @MrHarcombe @avee87
|
|
|
|
/tests/components/metoffice/ @MrHarcombe @avee87
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/miflora/ @danielhiversen @basnijholt
|
|
|
|
/homeassistant/components/mikrotik/ @engrbm87
|
|
|
|
/tests/components/mikrotik/ @engrbm87
|
|
|
|
/homeassistant/components/mill/ @danielhiversen
|
|
|
|
/tests/components/mill/ @danielhiversen
|
|
|
|
/homeassistant/components/min_max/ @fabaff
|
|
|
|
/tests/components/min_max/ @fabaff
|
|
|
|
/homeassistant/components/minecraft_server/ @elmurato
|
|
|
|
/tests/components/minecraft_server/ @elmurato
|
|
|
|
/homeassistant/components/minio/ @tkislan
|
|
|
|
/tests/components/minio/ @tkislan
|
2022-07-24 07:51:14 +00:00
|
|
|
/homeassistant/components/moat/ @bdraco
|
|
|
|
/tests/components/moat/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/mobile_app/ @home-assistant/core
|
|
|
|
/tests/components/mobile_app/ @home-assistant/core
|
|
|
|
/homeassistant/components/modbus/ @adamchengtkc @janiversen @vzahradnik
|
|
|
|
/tests/components/modbus/ @adamchengtkc @janiversen @vzahradnik
|
|
|
|
/homeassistant/components/modem_callerid/ @tkdrob
|
|
|
|
/tests/components/modem_callerid/ @tkdrob
|
|
|
|
/homeassistant/components/modern_forms/ @wonderslug
|
|
|
|
/tests/components/modern_forms/ @wonderslug
|
|
|
|
/homeassistant/components/moehlenhoff_alpha2/ @j-a-n
|
|
|
|
/tests/components/moehlenhoff_alpha2/ @j-a-n
|
|
|
|
/homeassistant/components/monoprice/ @etsinko @OnFreund
|
|
|
|
/tests/components/monoprice/ @etsinko @OnFreund
|
|
|
|
/homeassistant/components/moon/ @fabaff @frenck
|
|
|
|
/tests/components/moon/ @fabaff @frenck
|
|
|
|
/homeassistant/components/motion_blinds/ @starkillerOG
|
|
|
|
/tests/components/motion_blinds/ @starkillerOG
|
|
|
|
/homeassistant/components/motioneye/ @dermotduffy
|
|
|
|
/tests/components/motioneye/ @dermotduffy
|
|
|
|
/homeassistant/components/mqtt/ @emontnemery
|
|
|
|
/tests/components/mqtt/ @emontnemery
|
|
|
|
/homeassistant/components/msteams/ @peroyvind
|
|
|
|
/homeassistant/components/mullvad/ @meichthys
|
|
|
|
/tests/components/mullvad/ @meichthys
|
|
|
|
/homeassistant/components/mutesync/ @currentoor
|
|
|
|
/tests/components/mutesync/ @currentoor
|
|
|
|
/homeassistant/components/my/ @home-assistant/core
|
|
|
|
/tests/components/my/ @home-assistant/core
|
|
|
|
/homeassistant/components/myq/ @bdraco @ehendrix23
|
|
|
|
/tests/components/myq/ @bdraco @ehendrix23
|
|
|
|
/homeassistant/components/mysensors/ @MartinHjelmare @functionpointer
|
|
|
|
/tests/components/mysensors/ @MartinHjelmare @functionpointer
|
|
|
|
/homeassistant/components/mystrom/ @fabaff
|
|
|
|
/homeassistant/components/nam/ @bieniu
|
|
|
|
/tests/components/nam/ @bieniu
|
|
|
|
/homeassistant/components/nanoleaf/ @milanmeu
|
|
|
|
/tests/components/nanoleaf/ @milanmeu
|
|
|
|
/homeassistant/components/neato/ @dshokouhi @Santobert
|
|
|
|
/tests/components/neato/ @dshokouhi @Santobert
|
|
|
|
/homeassistant/components/nederlandse_spoorwegen/ @YarmoM
|
|
|
|
/homeassistant/components/ness_alarm/ @nickw444
|
|
|
|
/tests/components/ness_alarm/ @nickw444
|
|
|
|
/homeassistant/components/nest/ @allenporter
|
|
|
|
/tests/components/nest/ @allenporter
|
|
|
|
/homeassistant/components/netatmo/ @cgtobi
|
|
|
|
/tests/components/netatmo/ @cgtobi
|
|
|
|
/homeassistant/components/netdata/ @fabaff
|
|
|
|
/homeassistant/components/netgear/ @hacf-fr @Quentame @starkillerOG
|
|
|
|
/tests/components/netgear/ @hacf-fr @Quentame @starkillerOG
|
|
|
|
/homeassistant/components/network/ @home-assistant/core
|
|
|
|
/tests/components/network/ @home-assistant/core
|
|
|
|
/homeassistant/components/nexia/ @bdraco
|
|
|
|
/tests/components/nexia/ @bdraco
|
|
|
|
/homeassistant/components/nextbus/ @vividboarder
|
|
|
|
/tests/components/nextbus/ @vividboarder
|
|
|
|
/homeassistant/components/nextcloud/ @meichthys
|
2022-07-03 16:51:50 +00:00
|
|
|
/homeassistant/components/nextdns/ @bieniu
|
|
|
|
/tests/components/nextdns/ @bieniu
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/nfandroidtv/ @tkdrob
|
|
|
|
/tests/components/nfandroidtv/ @tkdrob
|
2022-09-22 06:43:30 +00:00
|
|
|
/homeassistant/components/nibe_heatpump/ @elupus
|
|
|
|
/tests/components/nibe_heatpump/ @elupus
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/nightscout/ @marciogranzotto
|
|
|
|
/tests/components/nightscout/ @marciogranzotto
|
|
|
|
/homeassistant/components/nilu/ @hfurubotten
|
|
|
|
/homeassistant/components/nina/ @DeerMaximum
|
|
|
|
/tests/components/nina/ @DeerMaximum
|
|
|
|
/homeassistant/components/nissan_leaf/ @filcole
|
|
|
|
/homeassistant/components/nmbs/ @thibmaek
|
|
|
|
/homeassistant/components/noaa_tides/ @jdelaney72
|
2022-09-03 08:11:40 +00:00
|
|
|
/homeassistant/components/nobo_hub/ @echoromeo @oyvindwe
|
|
|
|
/tests/components/nobo_hub/ @echoromeo @oyvindwe
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/notify/ @home-assistant/core
|
|
|
|
/tests/components/notify/ @home-assistant/core
|
|
|
|
/homeassistant/components/notify_events/ @matrozov @papajojo
|
|
|
|
/tests/components/notify_events/ @matrozov @papajojo
|
|
|
|
/homeassistant/components/notion/ @bachya
|
|
|
|
/tests/components/notion/ @bachya
|
|
|
|
/homeassistant/components/nsw_fuel_station/ @nickw444
|
|
|
|
/tests/components/nsw_fuel_station/ @nickw444
|
|
|
|
/homeassistant/components/nsw_rural_fire_service_feed/ @exxamalte
|
|
|
|
/tests/components/nsw_rural_fire_service_feed/ @exxamalte
|
2022-11-07 01:16:22 +00:00
|
|
|
/homeassistant/components/nuheat/ @tstabrawa
|
|
|
|
/tests/components/nuheat/ @tstabrawa
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/nuki/ @pschmitt @pvizeli @pree
|
|
|
|
/tests/components/nuki/ @pschmitt @pvizeli @pree
|
|
|
|
/homeassistant/components/numato/ @clssn
|
|
|
|
/tests/components/numato/ @clssn
|
|
|
|
/homeassistant/components/number/ @home-assistant/core @Shulyaka
|
|
|
|
/tests/components/number/ @home-assistant/core @Shulyaka
|
|
|
|
/homeassistant/components/nut/ @bdraco @ollo69
|
|
|
|
/tests/components/nut/ @bdraco @ollo69
|
|
|
|
/homeassistant/components/nws/ @MatthewFlamm
|
|
|
|
/tests/components/nws/ @MatthewFlamm
|
|
|
|
/homeassistant/components/nzbget/ @chriscla
|
|
|
|
/tests/components/nzbget/ @chriscla
|
|
|
|
/homeassistant/components/obihai/ @dshokouhi
|
|
|
|
/homeassistant/components/octoprint/ @rfleming71
|
|
|
|
/tests/components/octoprint/ @rfleming71
|
|
|
|
/homeassistant/components/ohmconnect/ @robbiet480
|
|
|
|
/homeassistant/components/ombi/ @larssont
|
|
|
|
/homeassistant/components/omnilogic/ @oliver84 @djtimca @gentoosu
|
|
|
|
/tests/components/omnilogic/ @oliver84 @djtimca @gentoosu
|
|
|
|
/homeassistant/components/onboarding/ @home-assistant/core
|
|
|
|
/tests/components/onboarding/ @home-assistant/core
|
2022-10-23 23:01:43 +00:00
|
|
|
/homeassistant/components/oncue/ @bdraco @peterager
|
|
|
|
/tests/components/oncue/ @bdraco @peterager
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/ondilo_ico/ @JeromeHXP
|
|
|
|
/tests/components/ondilo_ico/ @JeromeHXP
|
|
|
|
/homeassistant/components/onewire/ @garbled1 @epenet
|
|
|
|
/tests/components/onewire/ @garbled1 @epenet
|
|
|
|
/homeassistant/components/onvif/ @hunterjm
|
|
|
|
/tests/components/onvif/ @hunterjm
|
|
|
|
/homeassistant/components/open_meteo/ @frenck
|
|
|
|
/tests/components/open_meteo/ @frenck
|
|
|
|
/homeassistant/components/openerz/ @misialq
|
|
|
|
/tests/components/openerz/ @misialq
|
2022-08-02 12:49:46 +00:00
|
|
|
/homeassistant/components/openexchangerates/ @MartinHjelmare
|
2022-08-07 21:45:32 +00:00
|
|
|
/tests/components/openexchangerates/ @MartinHjelmare
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/opengarage/ @danielhiversen
|
|
|
|
/tests/components/opengarage/ @danielhiversen
|
|
|
|
/homeassistant/components/openhome/ @bazwilliams
|
|
|
|
/homeassistant/components/opentherm_gw/ @mvn23
|
|
|
|
/tests/components/opentherm_gw/ @mvn23
|
|
|
|
/homeassistant/components/openuv/ @bachya
|
|
|
|
/tests/components/openuv/ @bachya
|
|
|
|
/homeassistant/components/openweathermap/ @fabaff @freekode @nzapponi
|
|
|
|
/tests/components/openweathermap/ @fabaff @freekode @nzapponi
|
|
|
|
/homeassistant/components/opnsense/ @mtreinish
|
|
|
|
/tests/components/opnsense/ @mtreinish
|
2022-10-25 04:11:40 +00:00
|
|
|
/homeassistant/components/oralb/ @bdraco
|
|
|
|
/tests/components/oralb/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/oru/ @bvlaicu
|
|
|
|
/homeassistant/components/overkiz/ @imicknl @vlebourl @tetienne
|
|
|
|
/tests/components/overkiz/ @imicknl @vlebourl @tetienne
|
|
|
|
/homeassistant/components/ovo_energy/ @timmo001
|
|
|
|
/tests/components/ovo_energy/ @timmo001
|
|
|
|
/homeassistant/components/p1_monitor/ @klaasnicolaas
|
|
|
|
/tests/components/p1_monitor/ @klaasnicolaas
|
|
|
|
/homeassistant/components/panel_custom/ @home-assistant/frontend
|
|
|
|
/tests/components/panel_custom/ @home-assistant/frontend
|
|
|
|
/homeassistant/components/panel_iframe/ @home-assistant/frontend
|
|
|
|
/tests/components/panel_iframe/ @home-assistant/frontend
|
|
|
|
/homeassistant/components/peco/ @IceBotYT
|
|
|
|
/tests/components/peco/ @IceBotYT
|
|
|
|
/homeassistant/components/persistent_notification/ @home-assistant/core
|
|
|
|
/tests/components/persistent_notification/ @home-assistant/core
|
|
|
|
/homeassistant/components/philips_js/ @elupus
|
|
|
|
/tests/components/philips_js/ @elupus
|
2022-04-13 14:02:26 +00:00
|
|
|
/homeassistant/components/pi_hole/ @johnluetke @shenxn
|
|
|
|
/tests/components/pi_hole/ @johnluetke @shenxn
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/picnic/ @corneyl
|
|
|
|
/tests/components/picnic/ @corneyl
|
|
|
|
/homeassistant/components/pilight/ @trekky12
|
|
|
|
/tests/components/pilight/ @trekky12
|
|
|
|
/homeassistant/components/plaato/ @JohNan
|
|
|
|
/tests/components/plaato/ @JohNan
|
|
|
|
/homeassistant/components/plex/ @jjlawren
|
|
|
|
/tests/components/plex/ @jjlawren
|
|
|
|
/homeassistant/components/plugwise/ @CoMPaTech @bouwew @brefra @frenck
|
|
|
|
/tests/components/plugwise/ @CoMPaTech @bouwew @brefra @frenck
|
|
|
|
/homeassistant/components/plum_lightpad/ @ColinHarrington @prystupa
|
|
|
|
/tests/components/plum_lightpad/ @ColinHarrington @prystupa
|
|
|
|
/homeassistant/components/point/ @fredrike
|
|
|
|
/tests/components/point/ @fredrike
|
|
|
|
/homeassistant/components/poolsense/ @haemishkyd
|
|
|
|
/tests/components/poolsense/ @haemishkyd
|
|
|
|
/homeassistant/components/powerwall/ @bdraco @jrester
|
|
|
|
/tests/components/powerwall/ @bdraco @jrester
|
|
|
|
/homeassistant/components/profiler/ @bdraco
|
|
|
|
/tests/components/profiler/ @bdraco
|
|
|
|
/homeassistant/components/progettihwsw/ @ardaseremet
|
|
|
|
/tests/components/progettihwsw/ @ardaseremet
|
|
|
|
/homeassistant/components/prometheus/ @knyar
|
|
|
|
/tests/components/prometheus/ @knyar
|
|
|
|
/homeassistant/components/prosegur/ @dgomes
|
|
|
|
/tests/components/prosegur/ @dgomes
|
|
|
|
/homeassistant/components/proxmoxve/ @jhollowe @Corbeno
|
2022-08-30 00:45:27 +00:00
|
|
|
/homeassistant/components/prusalink/ @balloob
|
|
|
|
/tests/components/prusalink/ @balloob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/ps4/ @ktnrg45
|
|
|
|
/tests/components/ps4/ @ktnrg45
|
|
|
|
/homeassistant/components/pure_energie/ @klaasnicolaas
|
|
|
|
/tests/components/pure_energie/ @klaasnicolaas
|
|
|
|
/homeassistant/components/push/ @dgomes
|
|
|
|
/tests/components/push/ @dgomes
|
2022-11-02 15:11:44 +00:00
|
|
|
/homeassistant/components/pushbullet/ @engrbm87
|
|
|
|
/tests/components/pushbullet/ @engrbm87
|
2022-08-19 06:07:32 +00:00
|
|
|
/homeassistant/components/pushover/ @engrbm87
|
|
|
|
/tests/components/pushover/ @engrbm87
|
2022-04-13 14:04:09 +00:00
|
|
|
/homeassistant/components/pvoutput/ @frenck
|
|
|
|
/tests/components/pvoutput/ @frenck
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/pvpc_hourly_pricing/ @azogue
|
|
|
|
/tests/components/pvpc_hourly_pricing/ @azogue
|
|
|
|
/homeassistant/components/qbittorrent/ @geoffreylagaisse
|
2022-09-17 11:59:29 +00:00
|
|
|
/homeassistant/components/qingping/ @bdraco @skgsergio
|
|
|
|
/tests/components/qingping/ @bdraco @skgsergio
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/qld_bushfire/ @exxamalte
|
|
|
|
/tests/components/qld_bushfire/ @exxamalte
|
2022-04-26 23:10:23 +00:00
|
|
|
/homeassistant/components/qnap_qsw/ @Noltari
|
|
|
|
/tests/components/qnap_qsw/ @Noltari
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/quantum_gateway/ @cisasteelersfan
|
|
|
|
/homeassistant/components/qvr_pro/ @oblogic7
|
|
|
|
/homeassistant/components/qwikswitch/ @kellerza
|
|
|
|
/tests/components/qwikswitch/ @kellerza
|
|
|
|
/homeassistant/components/rachio/ @bdraco
|
|
|
|
/tests/components/rachio/ @bdraco
|
2022-09-23 02:16:24 +00:00
|
|
|
/homeassistant/components/radarr/ @tkdrob
|
|
|
|
/tests/components/radarr/ @tkdrob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/radio_browser/ @frenck
|
|
|
|
/tests/components/radio_browser/ @frenck
|
2022-06-05 23:59:52 +00:00
|
|
|
/homeassistant/components/radiotherm/ @bdraco @vinnyfuria
|
|
|
|
/tests/components/radiotherm/ @bdraco @vinnyfuria
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/rainbird/ @konikvranik
|
|
|
|
/homeassistant/components/raincloud/ @vanstinator
|
2022-05-24 22:48:54 +00:00
|
|
|
/homeassistant/components/rainforest_eagle/ @gtdiehl @jcalbert @hastarin
|
|
|
|
/tests/components/rainforest_eagle/ @gtdiehl @jcalbert @hastarin
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/rainmachine/ @bachya
|
|
|
|
/tests/components/rainmachine/ @bachya
|
|
|
|
/homeassistant/components/random/ @fabaff
|
|
|
|
/tests/components/random/ @fabaff
|
2022-05-25 18:39:15 +00:00
|
|
|
/homeassistant/components/raspberry_pi/ @home-assistant/core
|
|
|
|
/tests/components/raspberry_pi/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/rdw/ @frenck
|
|
|
|
/tests/components/rdw/ @frenck
|
|
|
|
/homeassistant/components/recollect_waste/ @bachya
|
|
|
|
/tests/components/recollect_waste/ @bachya
|
|
|
|
/homeassistant/components/recorder/ @home-assistant/core
|
|
|
|
/tests/components/recorder/ @home-assistant/core
|
|
|
|
/homeassistant/components/rejseplanen/ @DarkFox
|
|
|
|
/homeassistant/components/remote/ @home-assistant/core
|
|
|
|
/tests/components/remote/ @home-assistant/core
|
|
|
|
/homeassistant/components/renault/ @epenet
|
|
|
|
/tests/components/renault/ @epenet
|
2022-07-20 10:06:52 +00:00
|
|
|
/homeassistant/components/repairs/ @home-assistant/core
|
|
|
|
/tests/components/repairs/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/repetier/ @MTrab @ShadowBr0ther
|
|
|
|
/homeassistant/components/rflink/ @javicalle
|
|
|
|
/tests/components/rflink/ @javicalle
|
|
|
|
/homeassistant/components/rfxtrx/ @danielhiversen @elupus @RobBie1221
|
|
|
|
/tests/components/rfxtrx/ @danielhiversen @elupus @RobBie1221
|
2022-07-11 15:40:52 +00:00
|
|
|
/homeassistant/components/rhasspy/ @balloob @synesthesiam
|
|
|
|
/tests/components/rhasspy/ @balloob @synesthesiam
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/ridwell/ @bachya
|
|
|
|
/tests/components/ridwell/ @bachya
|
|
|
|
/homeassistant/components/risco/ @OnFreund
|
|
|
|
/tests/components/risco/ @OnFreund
|
|
|
|
/homeassistant/components/rituals_perfume_genie/ @milanmeu
|
|
|
|
/tests/components/rituals_perfume_genie/ @milanmeu
|
|
|
|
/homeassistant/components/rmvtransport/ @cgtobi
|
|
|
|
/tests/components/rmvtransport/ @cgtobi
|
|
|
|
/homeassistant/components/roku/ @ctalkington
|
|
|
|
/tests/components/roku/ @ctalkington
|
|
|
|
/homeassistant/components/roomba/ @pschmitt @cyr-ius @shenxn
|
|
|
|
/tests/components/roomba/ @pschmitt @cyr-ius @shenxn
|
|
|
|
/homeassistant/components/roon/ @pavoni
|
|
|
|
/tests/components/roon/ @pavoni
|
|
|
|
/homeassistant/components/rpi_power/ @shenxn @swetoast
|
|
|
|
/tests/components/rpi_power/ @shenxn @swetoast
|
|
|
|
/homeassistant/components/rss_feed_template/ @home-assistant/core
|
|
|
|
/tests/components/rss_feed_template/ @home-assistant/core
|
|
|
|
/homeassistant/components/rtsp_to_webrtc/ @allenporter
|
|
|
|
/tests/components/rtsp_to_webrtc/ @allenporter
|
|
|
|
/homeassistant/components/ruckus_unleashed/ @gabe565
|
|
|
|
/tests/components/ruckus_unleashed/ @gabe565
|
2022-11-09 14:35:30 +00:00
|
|
|
/homeassistant/components/ruuvitag_ble/ @akx
|
|
|
|
/tests/components/ruuvitag_ble/ @akx
|
2022-04-27 06:09:10 +00:00
|
|
|
/homeassistant/components/sabnzbd/ @shaiu
|
|
|
|
/tests/components/sabnzbd/ @shaiu
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/safe_mode/ @home-assistant/core
|
|
|
|
/tests/components/safe_mode/ @home-assistant/core
|
|
|
|
/homeassistant/components/saj/ @fredericvl
|
|
|
|
/homeassistant/components/samsungtv/ @chemelli74 @epenet
|
|
|
|
/tests/components/samsungtv/ @chemelli74 @epenet
|
|
|
|
/homeassistant/components/scene/ @home-assistant/core
|
|
|
|
/tests/components/scene/ @home-assistant/core
|
2022-08-11 14:14:01 +00:00
|
|
|
/homeassistant/components/schedule/ @home-assistant/core
|
|
|
|
/tests/components/schedule/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/schluter/ @prairieapps
|
2022-10-19 01:29:11 +00:00
|
|
|
/homeassistant/components/scrape/ @fabaff @gjohansson-ST @epenet
|
|
|
|
/tests/components/scrape/ @fabaff @gjohansson-ST @epenet
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/screenlogic/ @dieselrabbit @bdraco
|
|
|
|
/tests/components/screenlogic/ @dieselrabbit @bdraco
|
|
|
|
/homeassistant/components/script/ @home-assistant/core
|
|
|
|
/tests/components/script/ @home-assistant/core
|
|
|
|
/homeassistant/components/search/ @home-assistant/core
|
|
|
|
/tests/components/search/ @home-assistant/core
|
|
|
|
/homeassistant/components/season/ @frenck
|
|
|
|
/tests/components/season/ @frenck
|
|
|
|
/homeassistant/components/select/ @home-assistant/core
|
|
|
|
/tests/components/select/ @home-assistant/core
|
|
|
|
/homeassistant/components/sense/ @kbickar
|
|
|
|
/tests/components/sense/ @kbickar
|
|
|
|
/homeassistant/components/senseme/ @mikelawrence @bdraco
|
|
|
|
/tests/components/senseme/ @mikelawrence @bdraco
|
|
|
|
/homeassistant/components/sensibo/ @andrey-git @gjohansson-ST
|
|
|
|
/tests/components/sensibo/ @andrey-git @gjohansson-ST
|
2022-11-19 20:26:54 +00:00
|
|
|
/homeassistant/components/sensirion_ble/ @akx
|
|
|
|
/tests/components/sensirion_ble/ @akx
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/sensor/ @home-assistant/core
|
|
|
|
/tests/components/sensor/ @home-assistant/core
|
2022-08-31 01:49:31 +00:00
|
|
|
/homeassistant/components/sensorpro/ @bdraco
|
|
|
|
/tests/components/sensorpro/ @bdraco
|
2022-07-22 01:31:23 +00:00
|
|
|
/homeassistant/components/sensorpush/ @bdraco
|
|
|
|
/tests/components/sensorpush/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/sentry/ @dcramer @frenck
|
|
|
|
/tests/components/sentry/ @dcramer @frenck
|
2022-04-14 22:29:31 +00:00
|
|
|
/homeassistant/components/senz/ @milanmeu
|
|
|
|
/tests/components/senz/ @milanmeu
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/serial/ @fabaff
|
|
|
|
/homeassistant/components/seven_segments/ @fabaff
|
2022-03-30 18:41:34 +00:00
|
|
|
/homeassistant/components/sharkiq/ @JeffResc @funkybunch @AritroSaha10
|
|
|
|
/tests/components/sharkiq/ @JeffResc @funkybunch @AritroSaha10
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/shell_command/ @home-assistant/core
|
|
|
|
/tests/components/shell_command/ @home-assistant/core
|
2022-11-15 18:34:45 +00:00
|
|
|
/homeassistant/components/shelly/ @balloob @bieniu @thecode @chemelli74 @bdraco
|
|
|
|
/tests/components/shelly/ @balloob @bieniu @thecode @chemelli74 @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/shodan/ @fabaff
|
|
|
|
/homeassistant/components/sia/ @eavanvalkenburg
|
|
|
|
/tests/components/sia/ @eavanvalkenburg
|
|
|
|
/homeassistant/components/sighthound/ @robmarkcole
|
|
|
|
/tests/components/sighthound/ @robmarkcole
|
|
|
|
/homeassistant/components/signal_messenger/ @bbernhard
|
|
|
|
/tests/components/signal_messenger/ @bbernhard
|
2022-06-24 06:39:48 +00:00
|
|
|
/homeassistant/components/simplepush/ @engrbm87
|
|
|
|
/tests/components/simplepush/ @engrbm87
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/simplisafe/ @bachya
|
|
|
|
/tests/components/simplisafe/ @bachya
|
|
|
|
/homeassistant/components/sinch/ @bendikrb
|
|
|
|
/homeassistant/components/siren/ @home-assistant/core @raman325
|
|
|
|
/tests/components/siren/ @home-assistant/core @raman325
|
|
|
|
/homeassistant/components/sisyphus/ @jkeljo
|
|
|
|
/homeassistant/components/sky_hub/ @rogerselwyn
|
2022-06-05 02:37:08 +00:00
|
|
|
/homeassistant/components/skybell/ @tkdrob
|
|
|
|
/tests/components/skybell/ @tkdrob
|
2022-05-14 00:05:06 +00:00
|
|
|
/homeassistant/components/slack/ @bachya @tkdrob
|
|
|
|
/tests/components/slack/ @bachya @tkdrob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/sleepiq/ @mfugate1 @kbickar
|
|
|
|
/tests/components/sleepiq/ @mfugate1 @kbickar
|
|
|
|
/homeassistant/components/slide/ @ualex73
|
2022-04-27 06:24:17 +00:00
|
|
|
/homeassistant/components/slimproto/ @marcelveldt
|
|
|
|
/tests/components/slimproto/ @marcelveldt
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/sma/ @kellerza @rklomp
|
|
|
|
/tests/components/sma/ @kellerza @rklomp
|
|
|
|
/homeassistant/components/smappee/ @bsmappee
|
|
|
|
/tests/components/smappee/ @bsmappee
|
|
|
|
/homeassistant/components/smart_meter_texas/ @grahamwetzler
|
|
|
|
/tests/components/smart_meter_texas/ @grahamwetzler
|
|
|
|
/homeassistant/components/smartthings/ @andrewsayre
|
|
|
|
/tests/components/smartthings/ @andrewsayre
|
|
|
|
/homeassistant/components/smarttub/ @mdz
|
|
|
|
/tests/components/smarttub/ @mdz
|
|
|
|
/homeassistant/components/smarty/ @z0mbieprocess
|
|
|
|
/homeassistant/components/smhi/ @gjohansson-ST
|
|
|
|
/tests/components/smhi/ @gjohansson-ST
|
|
|
|
/homeassistant/components/sms/ @ocalvo
|
2022-10-10 23:14:27 +00:00
|
|
|
/homeassistant/components/snooz/ @AustinBrunkhorst
|
|
|
|
/tests/components/snooz/ @AustinBrunkhorst
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/solaredge/ @frenck
|
|
|
|
/tests/components/solaredge/ @frenck
|
|
|
|
/homeassistant/components/solaredge_local/ @drobtravels @scheric
|
|
|
|
/homeassistant/components/solarlog/ @Ernst79
|
|
|
|
/tests/components/solarlog/ @Ernst79
|
|
|
|
/homeassistant/components/solax/ @squishykid
|
|
|
|
/tests/components/solax/ @squishykid
|
|
|
|
/homeassistant/components/soma/ @ratsept @sebfortier2288
|
|
|
|
/tests/components/soma/ @ratsept @sebfortier2288
|
|
|
|
/homeassistant/components/sonarr/ @ctalkington
|
|
|
|
/tests/components/sonarr/ @ctalkington
|
|
|
|
/homeassistant/components/songpal/ @rytilahti @shenxn
|
|
|
|
/tests/components/songpal/ @rytilahti @shenxn
|
|
|
|
/homeassistant/components/sonos/ @cgtobi @jjlawren
|
|
|
|
/tests/components/sonos/ @cgtobi @jjlawren
|
2022-07-01 05:20:00 +00:00
|
|
|
/homeassistant/components/soundtouch/ @kroimon
|
|
|
|
/tests/components/soundtouch/ @kroimon
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/spaceapi/ @fabaff
|
|
|
|
/tests/components/spaceapi/ @fabaff
|
|
|
|
/homeassistant/components/speedtestdotnet/ @rohankapoorcom @engrbm87
|
|
|
|
/tests/components/speedtestdotnet/ @rohankapoorcom @engrbm87
|
|
|
|
/homeassistant/components/spider/ @peternijssen
|
|
|
|
/tests/components/spider/ @peternijssen
|
|
|
|
/homeassistant/components/splunk/ @Bre77
|
|
|
|
/homeassistant/components/spotify/ @frenck
|
|
|
|
/tests/components/spotify/ @frenck
|
2022-04-24 18:50:32 +00:00
|
|
|
/homeassistant/components/sql/ @dgomes @gjohansson-ST
|
|
|
|
/tests/components/sql/ @dgomes @gjohansson-ST
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/squeezebox/ @rajlaud
|
|
|
|
/tests/components/squeezebox/ @rajlaud
|
|
|
|
/homeassistant/components/srp_energy/ @briglx
|
|
|
|
/tests/components/srp_energy/ @briglx
|
|
|
|
/homeassistant/components/starline/ @anonym-tsk
|
|
|
|
/tests/components/starline/ @anonym-tsk
|
|
|
|
/homeassistant/components/statistics/ @fabaff @ThomDietrich
|
|
|
|
/tests/components/statistics/ @fabaff @ThomDietrich
|
2022-04-27 06:07:21 +00:00
|
|
|
/homeassistant/components/steam_online/ @tkdrob
|
|
|
|
/tests/components/steam_online/ @tkdrob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/steamist/ @bdraco
|
|
|
|
/tests/components/steamist/ @bdraco
|
|
|
|
/homeassistant/components/stiebel_eltron/ @fucm
|
|
|
|
/homeassistant/components/stookalert/ @fwestenberg @frenck
|
|
|
|
/tests/components/stookalert/ @fwestenberg @frenck
|
|
|
|
/homeassistant/components/stream/ @hunterjm @uvjustin @allenporter
|
|
|
|
/tests/components/stream/ @hunterjm @uvjustin @allenporter
|
|
|
|
/homeassistant/components/stt/ @pvizeli
|
|
|
|
/tests/components/stt/ @pvizeli
|
|
|
|
/homeassistant/components/subaru/ @G-Two
|
|
|
|
/tests/components/subaru/ @G-Two
|
|
|
|
/homeassistant/components/suez_water/ @ooii
|
|
|
|
/homeassistant/components/sun/ @Swamp-Ig
|
|
|
|
/tests/components/sun/ @Swamp-Ig
|
|
|
|
/homeassistant/components/supla/ @mwegrzynek
|
|
|
|
/homeassistant/components/surepetcare/ @benleb @danielhiversen
|
|
|
|
/tests/components/surepetcare/ @benleb @danielhiversen
|
|
|
|
/homeassistant/components/swiss_hydrological_data/ @fabaff
|
|
|
|
/homeassistant/components/swiss_public_transport/ @fabaff
|
|
|
|
/homeassistant/components/switch/ @home-assistant/core
|
|
|
|
/tests/components/switch/ @home-assistant/core
|
|
|
|
/homeassistant/components/switch_as_x/ @home-assistant/core
|
|
|
|
/tests/components/switch_as_x/ @home-assistant/core
|
2022-09-13 07:01:29 +00:00
|
|
|
/homeassistant/components/switchbee/ @jafar-atili
|
|
|
|
/tests/components/switchbee/ @jafar-atili
|
2022-08-02 02:29:44 +00:00
|
|
|
/homeassistant/components/switchbot/ @bdraco @danielhiversen @RenierM26 @murtas @Eloston
|
|
|
|
/tests/components/switchbot/ @bdraco @danielhiversen @RenierM26 @murtas @Eloston
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/switcher_kis/ @tomerfi @thecode
|
|
|
|
/tests/components/switcher_kis/ @tomerfi @thecode
|
2022-07-26 02:50:04 +00:00
|
|
|
/homeassistant/components/switchmate/ @danielhiversen @qiz-li
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/syncthing/ @zhulik
|
|
|
|
/tests/components/syncthing/ @zhulik
|
|
|
|
/homeassistant/components/syncthru/ @nielstron
|
|
|
|
/tests/components/syncthru/ @nielstron
|
|
|
|
/homeassistant/components/synology_dsm/ @hacf-fr @Quentame @mib1185
|
|
|
|
/tests/components/synology_dsm/ @hacf-fr @Quentame @mib1185
|
|
|
|
/homeassistant/components/synology_srm/ @aerialls
|
|
|
|
/homeassistant/components/system_bridge/ @timmo001
|
|
|
|
/tests/components/system_bridge/ @timmo001
|
2022-03-30 05:59:03 +00:00
|
|
|
/homeassistant/components/tado/ @michaelarnauts @north3221
|
|
|
|
/tests/components/tado/ @michaelarnauts @north3221
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/tag/ @balloob @dmulcahey
|
|
|
|
/tests/components/tag/ @balloob @dmulcahey
|
|
|
|
/homeassistant/components/tailscale/ @frenck
|
|
|
|
/tests/components/tailscale/ @frenck
|
2022-03-30 03:23:30 +00:00
|
|
|
/homeassistant/components/tankerkoenig/ @guillempages @mib1185
|
|
|
|
/tests/components/tankerkoenig/ @guillempages @mib1185
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/tapsaff/ @bazwilliams
|
|
|
|
/homeassistant/components/tasmota/ @emontnemery
|
|
|
|
/tests/components/tasmota/ @emontnemery
|
2022-04-26 23:37:13 +00:00
|
|
|
/homeassistant/components/tautulli/ @ludeeus @tkdrob
|
|
|
|
/tests/components/tautulli/ @ludeeus @tkdrob
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/tellduslive/ @fredrike
|
|
|
|
/tests/components/tellduslive/ @fredrike
|
|
|
|
/homeassistant/components/template/ @PhracturedBlue @tetienne @home-assistant/core
|
|
|
|
/tests/components/template/ @PhracturedBlue @tetienne @home-assistant/core
|
|
|
|
/homeassistant/components/tesla_wall_connector/ @einarhauks
|
|
|
|
/tests/components/tesla_wall_connector/ @einarhauks
|
2022-11-24 19:01:01 +00:00
|
|
|
/homeassistant/components/text/ @home-assistant/core
|
|
|
|
/tests/components/text/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/tfiac/ @fredrike @mellado
|
2022-08-27 02:44:10 +00:00
|
|
|
/homeassistant/components/thermobeacon/ @bdraco
|
|
|
|
/tests/components/thermobeacon/ @bdraco
|
2022-08-25 13:24:55 +00:00
|
|
|
/homeassistant/components/thermopro/ @bdraco
|
|
|
|
/tests/components/thermopro/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/thethingsnetwork/ @fabaff
|
|
|
|
/homeassistant/components/threshold/ @fabaff
|
|
|
|
/tests/components/threshold/ @fabaff
|
|
|
|
/homeassistant/components/tibber/ @danielhiversen
|
|
|
|
/tests/components/tibber/ @danielhiversen
|
|
|
|
/homeassistant/components/tile/ @bachya
|
|
|
|
/tests/components/tile/ @bachya
|
2022-09-07 14:24:21 +00:00
|
|
|
/homeassistant/components/tilt_ble/ @apt-itude
|
|
|
|
/tests/components/tilt_ble/ @apt-itude
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/time_date/ @fabaff
|
|
|
|
/tests/components/time_date/ @fabaff
|
|
|
|
/homeassistant/components/tmb/ @alemuro
|
|
|
|
/homeassistant/components/todoist/ @boralyl
|
|
|
|
/tests/components/todoist/ @boralyl
|
|
|
|
/homeassistant/components/tolo/ @MatthiasLohr
|
|
|
|
/tests/components/tolo/ @MatthiasLohr
|
2022-05-30 22:41:30 +00:00
|
|
|
/homeassistant/components/tomorrowio/ @raman325 @lymanepp
|
|
|
|
/tests/components/tomorrowio/ @raman325 @lymanepp
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/totalconnect/ @austinmroczek
|
|
|
|
/tests/components/totalconnect/ @austinmroczek
|
2022-06-20 07:04:54 +00:00
|
|
|
/homeassistant/components/tplink/ @rytilahti @thegardenmonkey
|
|
|
|
/tests/components/tplink/ @rytilahti @thegardenmonkey
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/traccar/ @ludeeus
|
|
|
|
/tests/components/traccar/ @ludeeus
|
|
|
|
/homeassistant/components/trace/ @home-assistant/core
|
|
|
|
/tests/components/trace/ @home-assistant/core
|
|
|
|
/homeassistant/components/tractive/ @Danielhiversen @zhulik @bieniu
|
|
|
|
/tests/components/tractive/ @Danielhiversen @zhulik @bieniu
|
2022-04-27 05:40:53 +00:00
|
|
|
/homeassistant/components/trafikverket_ferry/ @gjohansson-ST
|
|
|
|
/tests/components/trafikverket_ferry/ @gjohansson-ST
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/trafikverket_train/ @endor-force @gjohansson-ST
|
2022-03-29 18:32:38 +00:00
|
|
|
/tests/components/trafikverket_train/ @endor-force @gjohansson-ST
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/trafikverket_weatherstation/ @endor-force @gjohansson-ST
|
|
|
|
/tests/components/trafikverket_weatherstation/ @endor-force @gjohansson-ST
|
|
|
|
/homeassistant/components/transmission/ @engrbm87 @JPHutchins
|
|
|
|
/tests/components/transmission/ @engrbm87 @JPHutchins
|
|
|
|
/homeassistant/components/tts/ @pvizeli
|
|
|
|
/tests/components/tts/ @pvizeli
|
2022-04-26 12:29:30 +00:00
|
|
|
/homeassistant/components/tuya/ @Tuya @zlinoliver @frenck
|
|
|
|
/tests/components/tuya/ @Tuya @zlinoliver @frenck
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/twentemilieu/ @frenck
|
|
|
|
/tests/components/twentemilieu/ @frenck
|
|
|
|
/homeassistant/components/twinkly/ @dr1rrb @Robbie1221
|
|
|
|
/tests/components/twinkly/ @dr1rrb @Robbie1221
|
2022-05-08 15:22:20 +00:00
|
|
|
/homeassistant/components/ukraine_alarm/ @PaulAnnekov
|
|
|
|
/tests/components/ukraine_alarm/ @PaulAnnekov
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/unifi/ @Kane610
|
|
|
|
/tests/components/unifi/ @Kane610
|
|
|
|
/homeassistant/components/unifiled/ @florisvdk
|
|
|
|
/homeassistant/components/unifiprotect/ @briis @AngellusMortis @bdraco
|
|
|
|
/tests/components/unifiprotect/ @briis @AngellusMortis @bdraco
|
|
|
|
/homeassistant/components/upb/ @gwww
|
|
|
|
/tests/components/upb/ @gwww
|
|
|
|
/homeassistant/components/upc_connect/ @pvizeli @fabaff
|
|
|
|
/homeassistant/components/upcloud/ @scop
|
|
|
|
/tests/components/upcloud/ @scop
|
|
|
|
/homeassistant/components/update/ @home-assistant/core
|
|
|
|
/tests/components/update/ @home-assistant/core
|
2022-10-10 20:15:58 +00:00
|
|
|
/homeassistant/components/upnp/ @StevenLooman
|
|
|
|
/tests/components/upnp/ @StevenLooman
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/uptime/ @frenck
|
|
|
|
/tests/components/uptime/ @frenck
|
|
|
|
/homeassistant/components/uptimerobot/ @ludeeus @chemelli74
|
|
|
|
/tests/components/uptimerobot/ @ludeeus @chemelli74
|
|
|
|
/homeassistant/components/usb/ @bdraco
|
|
|
|
/tests/components/usb/ @bdraco
|
|
|
|
/homeassistant/components/usgs_earthquakes_feed/ @exxamalte
|
|
|
|
/tests/components/usgs_earthquakes_feed/ @exxamalte
|
|
|
|
/homeassistant/components/utility_meter/ @dgomes
|
|
|
|
/tests/components/utility_meter/ @dgomes
|
|
|
|
/homeassistant/components/vacuum/ @home-assistant/core
|
|
|
|
/tests/components/vacuum/ @home-assistant/core
|
|
|
|
/homeassistant/components/vallox/ @andre-richter @slovdahl @viiru-
|
|
|
|
/tests/components/vallox/ @andre-richter @slovdahl @viiru-
|
|
|
|
/homeassistant/components/velbus/ @Cereal2nd @brefra
|
|
|
|
/tests/components/velbus/ @Cereal2nd @brefra
|
|
|
|
/homeassistant/components/velux/ @Julius2342
|
|
|
|
/homeassistant/components/venstar/ @garbled1
|
|
|
|
/tests/components/venstar/ @garbled1
|
|
|
|
/homeassistant/components/verisure/ @frenck
|
|
|
|
/tests/components/verisure/ @frenck
|
|
|
|
/homeassistant/components/versasense/ @flamm3blemuff1n
|
2022-04-15 23:27:09 +00:00
|
|
|
/homeassistant/components/version/ @ludeeus
|
|
|
|
/tests/components/version/ @ludeeus
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/vesync/ @markperdue @webdjoe @thegardenmonkey
|
|
|
|
/tests/components/vesync/ @markperdue @webdjoe @thegardenmonkey
|
|
|
|
/homeassistant/components/vicare/ @oischinger
|
|
|
|
/tests/components/vicare/ @oischinger
|
|
|
|
/homeassistant/components/vilfo/ @ManneW
|
|
|
|
/tests/components/vilfo/ @ManneW
|
|
|
|
/homeassistant/components/vivotek/ @HarlemSquirrel
|
|
|
|
/homeassistant/components/vizio/ @raman325
|
|
|
|
/tests/components/vizio/ @raman325
|
|
|
|
/homeassistant/components/vlc_telnet/ @rodripf @MartinHjelmare
|
|
|
|
/tests/components/vlc_telnet/ @rodripf @MartinHjelmare
|
|
|
|
/homeassistant/components/volumio/ @OnFreund
|
|
|
|
/tests/components/volumio/ @OnFreund
|
2022-08-04 19:37:20 +00:00
|
|
|
/homeassistant/components/volvooncall/ @molobrakos
|
2022-08-23 18:58:17 +00:00
|
|
|
/tests/components/volvooncall/ @molobrakos
|
2022-03-30 15:55:24 +00:00
|
|
|
/homeassistant/components/vulcan/ @Antoni-Czaplicki
|
|
|
|
/tests/components/vulcan/ @Antoni-Czaplicki
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/wake_on_lan/ @ntilley905
|
|
|
|
/tests/components/wake_on_lan/ @ntilley905
|
|
|
|
/homeassistant/components/wallbox/ @hesselonline
|
|
|
|
/tests/components/wallbox/ @hesselonline
|
|
|
|
/homeassistant/components/waqi/ @andrey-git
|
|
|
|
/homeassistant/components/water_heater/ @home-assistant/core
|
|
|
|
/tests/components/water_heater/ @home-assistant/core
|
|
|
|
/homeassistant/components/watson_tts/ @rutkai
|
|
|
|
/homeassistant/components/watttime/ @bachya
|
|
|
|
/tests/components/watttime/ @bachya
|
|
|
|
/homeassistant/components/waze_travel_time/ @eifinger
|
|
|
|
/tests/components/waze_travel_time/ @eifinger
|
2022-06-23 17:50:46 +00:00
|
|
|
/homeassistant/components/weather/ @home-assistant/core
|
|
|
|
/tests/components/weather/ @home-assistant/core
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/webhook/ @home-assistant/core
|
|
|
|
/tests/components/webhook/ @home-assistant/core
|
|
|
|
/homeassistant/components/webostv/ @bendavid @thecode
|
|
|
|
/tests/components/webostv/ @bendavid @thecode
|
|
|
|
/homeassistant/components/websocket_api/ @home-assistant/core
|
|
|
|
/tests/components/websocket_api/ @home-assistant/core
|
|
|
|
/homeassistant/components/wemo/ @esev
|
|
|
|
/tests/components/wemo/ @esev
|
|
|
|
/homeassistant/components/whirlpool/ @abmantis
|
|
|
|
/tests/components/whirlpool/ @abmantis
|
|
|
|
/homeassistant/components/whois/ @frenck
|
|
|
|
/tests/components/whois/ @frenck
|
|
|
|
/homeassistant/components/wiffi/ @mampfes
|
|
|
|
/tests/components/wiffi/ @mampfes
|
|
|
|
/homeassistant/components/wilight/ @leofig-rj
|
|
|
|
/tests/components/wilight/ @leofig-rj
|
|
|
|
/homeassistant/components/wirelesstag/ @sergeymaysak
|
|
|
|
/homeassistant/components/withings/ @vangorra
|
|
|
|
/tests/components/withings/ @vangorra
|
|
|
|
/homeassistant/components/wiz/ @sbidy
|
|
|
|
/tests/components/wiz/ @sbidy
|
|
|
|
/homeassistant/components/wled/ @frenck
|
|
|
|
/tests/components/wled/ @frenck
|
|
|
|
/homeassistant/components/wolflink/ @adamkrol93
|
|
|
|
/tests/components/wolflink/ @adamkrol93
|
|
|
|
/homeassistant/components/workday/ @fabaff
|
|
|
|
/tests/components/workday/ @fabaff
|
|
|
|
/homeassistant/components/worldclock/ @fabaff
|
|
|
|
/tests/components/worldclock/ @fabaff
|
2022-05-08 21:52:39 +00:00
|
|
|
/homeassistant/components/ws66i/ @ssaenger
|
|
|
|
/tests/components/ws66i/ @ssaenger
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/xbox/ @hunterjm
|
|
|
|
/tests/components/xbox/ @hunterjm
|
|
|
|
/homeassistant/components/xbox_live/ @MartinHjelmare
|
|
|
|
/homeassistant/components/xiaomi_aqara/ @danielhiversen @syssi
|
|
|
|
/tests/components/xiaomi_aqara/ @danielhiversen @syssi
|
2022-07-22 22:55:06 +00:00
|
|
|
/homeassistant/components/xiaomi_ble/ @Jc2k @Ernst79
|
|
|
|
/tests/components/xiaomi_ble/ @Jc2k @Ernst79
|
2022-10-22 10:36:52 +00:00
|
|
|
/homeassistant/components/xiaomi_miio/ @rytilahti @syssi @starkillerOG
|
|
|
|
/tests/components/xiaomi_miio/ @rytilahti @syssi @starkillerOG
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/xiaomi_tv/ @simse
|
|
|
|
/homeassistant/components/xmpp/ @fabaff @flowolf
|
|
|
|
/homeassistant/components/yale_smart_alarm/ @gjohansson-ST
|
|
|
|
/tests/components/yale_smart_alarm/ @gjohansson-ST
|
2022-08-10 20:08:02 +00:00
|
|
|
/homeassistant/components/yalexs_ble/ @bdraco
|
|
|
|
/tests/components/yalexs_ble/ @bdraco
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/yamaha_musiccast/ @vigonotion @micha91
|
|
|
|
/tests/components/yamaha_musiccast/ @vigonotion @micha91
|
|
|
|
/homeassistant/components/yandex_transport/ @rishatik92 @devbis
|
|
|
|
/tests/components/yandex_transport/ @rishatik92 @devbis
|
|
|
|
/homeassistant/components/yeelight/ @zewelor @shenxn @starkillerOG @alexyao2015
|
|
|
|
/tests/components/yeelight/ @zewelor @shenxn @starkillerOG @alexyao2015
|
|
|
|
/homeassistant/components/yeelightsunflower/ @lindsaymarkward
|
|
|
|
/homeassistant/components/yi/ @bachya
|
2022-05-20 17:06:47 +00:00
|
|
|
/homeassistant/components/yolink/ @matrixd2
|
|
|
|
/tests/components/yolink/ @matrixd2
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/youless/ @gjong
|
|
|
|
/tests/components/youless/ @gjong
|
2022-10-26 16:35:12 +00:00
|
|
|
/homeassistant/components/zamg/ @killer0071234
|
|
|
|
/tests/components/zamg/ @killer0071234
|
2022-04-01 12:38:34 +00:00
|
|
|
/homeassistant/components/zengge/ @emontnemery
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/zeroconf/ @bdraco
|
|
|
|
/tests/components/zeroconf/ @bdraco
|
|
|
|
/homeassistant/components/zerproc/ @emlove
|
|
|
|
/tests/components/zerproc/ @emlove
|
2022-07-11 18:19:30 +00:00
|
|
|
/homeassistant/components/zha/ @dmulcahey @adminiuga @puddly
|
|
|
|
/tests/components/zha/ @dmulcahey @adminiuga @puddly
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/zodiac/ @JulienTant
|
|
|
|
/tests/components/zodiac/ @JulienTant
|
|
|
|
/homeassistant/components/zone/ @home-assistant/core
|
|
|
|
/tests/components/zone/ @home-assistant/core
|
|
|
|
/homeassistant/components/zoneminder/ @rohankapoorcom
|
|
|
|
/homeassistant/components/zwave_js/ @home-assistant/z-wave
|
|
|
|
/tests/components/zwave_js/ @home-assistant/z-wave
|
|
|
|
/homeassistant/components/zwave_me/ @lawfulchaos @Z-Wave-Me
|
|
|
|
/tests/components/zwave_me/ @lawfulchaos @Z-Wave-Me
|
2019-04-08 04:01:05 +00:00
|
|
|
|
|
|
|
# Individual files
|
2022-03-29 11:17:49 +00:00
|
|
|
/homeassistant/components/demo/weather.py @fabaff
|
|
|
|
|
|
|
|
# Remove codeowners from files
|
2022-04-24 22:59:52 +00:00
|
|
|
/homeassistant/components/*/translations/
|