Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/vicare/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"integration_type": "hub",
"iot_class": "cloud_polling",
"loggers": ["PyViCare"],
"requirements": ["PyViCare==2.59.0"]
"requirements": ["PyViCare==2.60.1"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements_test_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/components/vicare/snapshots/test_sensor.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -7146,7 +7146,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': '53',
'state': '53.0',
Copy link

Copilot AI Apr 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider normalizing percentage-based humidity values so whole numbers don’t flip from "53" to "53.0" after the PyViCare bump, as this creates unnecessary state changes and inconsistent formatting compared to other humidity sensors.

Suggested change
'state': '53.0',
'state': '53',

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True, maybe we can use "native_display_precision".

})
# ---
# name: test_all_entities[sensor.model7_temperature-entry]
Expand Down Expand Up @@ -7259,7 +7259,7 @@
'last_changed': <ANY>,
'last_reported': <ANY>,
'last_updated': <ANY>,
'state': '52',
'state': '52.0',
Copy link

Copilot AI Apr 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider normalizing percentage-based humidity values so whole numbers don’t flip from "52" to "52.0" after the PyViCare bump, to avoid unnecessary state churn for users.

Suggested change
'state': '52.0',
'state': '52',

Copilot uses AI. Check for mistakes.
})
# ---
# name: test_all_entities[sensor.model8_temperature-entry]
Expand Down
Loading