-
-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Introduce the new updater data collection #1277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
||
The updater component will collect basic information about Home Assistant and it's environment. The information includes the current Home Assistant version, the timezone, Python version and operating system infomation. No identifyable information (i.e. IP, GPS coordinates) will ever be collected. If you are concerned about your privacy, you are welcome to scrutinize the Python [source code](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/updater.py#L91). | ||
|
||
If you choose not to share any information when checking for updates, you can add `opt_out: True` to the updater section of your configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you check your configuration in three month it will be hard to determine for most users what opt_out: True
is. I suggest that we re-name that variable to something like reporting:
which reflect what the value about.
@@ -34,3 +33,7 @@ automation: | |||
data: | |||
message: 'Update for Home Assistant is available.' | |||
``` | |||
|
|||
The updater component will collect basic information about Home Assistant and it's environment. The information includes the current Home Assistant version, the timezone, Python version and operating system infomation. No identifyable information (i.e. IP, GPS coordinates) will ever be collected. If you are concerned about your privacy, you are welcome to scrutinize the Python [source code](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/updater.py#L91). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Misspelling identifyable -> identifiable.
Description:
New updater component data &
opt_out
featurePull request in home-assistant (if applicable): home-assistant/core#3781