Add "significant change" base (#45555)
This commit is contained in:
parent
38361b134a
commit
d082be787f
7 changed files with 335 additions and 0 deletions
|
@ -35,6 +35,11 @@ DATA = {
|
|||
"docs": "https://developers.home-assistant.io/docs/en/reproduce_state_index.html",
|
||||
"extra": "You will now need to update the code to make sure that every attribute that can occur in the state will cause the right service to be called.",
|
||||
},
|
||||
"significant_change": {
|
||||
"title": "Significant Change",
|
||||
"docs": "https://developers.home-assistant.io/docs/en/significant_change_index.html",
|
||||
"extra": "You will now need to update the code to make sure that entities with different device classes are correctly considered.",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
|
@ -73,4 +78,5 @@ def print_relevant_docs(template: str, info: Info) -> None:
|
|||
)
|
||||
|
||||
if "extra" in data:
|
||||
print()
|
||||
print(data["extra"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue