Skip to content

[pull] dev from home-assistant:dev #234

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

Merged
merged 26 commits into from
May 27, 2025
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
848eb79
Add read_only selectors to Filter Options Flow (#145526)
karwosts May 26, 2025
001164c
Remove available property for streaming in Teslemetry (#145352)
Bre77 May 26, 2025
2ef0a85
Bump ical to 9.2.5 (#145636)
allenporter May 26, 2025
db489a5
Improve device tracker platform in Teslemetry (#145268)
Bre77 May 26, 2025
8430556
Add state class measurement to Freebox rate sensors (#142757)
GGI1982 May 26, 2025
9b9d4d7
Set correct state_class for battery_stored and increase timeout to pr…
JasonMahdjoub May 26, 2025
072d0dc
Update coordinator logging levels for Squeezebox (#144620)
peteS-UK May 26, 2025
0ab7d46
Support AprilAire humidifier auto mode (#144647)
chamberlain2007 May 26, 2025
987af8f
squeezebox Better result for testing (#144622)
pssc May 26, 2025
5f63612
Increase resolution of sun updates around sunrise/sundown (#140403)
Hypfer May 26, 2025
e857db2
Set new IOmeter datacoordinator debouncer cooldown (#143665)
MaestroOnICe May 26, 2025
b140383
Add translation string and references for sensor Measurement Angle st…
jbouwh May 26, 2025
1639406
Add additional outlet sensors to NUT (#143309)
tdfountain May 26, 2025
b17d621
Add Air Pollution support to OpenWeatherMap (#137949)
wittypluck May 26, 2025
cdd3ce4
Add select for ventilator's control (#140849)
LG-ThinQ-Integration May 26, 2025
393ea02
Add add_package action to seventeentrack (#144488)
Cerallin May 26, 2025
405725f
Add last update to aquacell (#143661)
ngolf May 26, 2025
a7919c5
Move coordinator and getting data closer together in devolo Home Netw…
Shutgun May 26, 2025
34f92d5
Bump gcal_sync to 7.1.0 (#145642)
allenporter May 26, 2025
8abbd35
Add ability to load test fixtures on the executor (#144534)
epenet May 26, 2025
4aade14
Fix CI (#145644)
joostlek May 26, 2025
9a73006
Simplify Bang & Olufsen testing setup (#139830)
mj23000 May 26, 2025
13a8e5e
Fix Aquacell snapshot (#145651)
joostlek May 26, 2025
2ee6bf7
Add update platform to paperless integration (#145638)
fvgarrel May 26, 2025
1e3d06a
Fix translation for sensor measurement angle state class (#145649)
jbouwh May 26, 2025
df35f30
Handle Google Nest DHCP flows (#145658)
joostlek May 26, 2025
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
Prev Previous commit
Next Next commit
Increase resolution of sun updates around sunrise/sundown (home-assis…
  • Loading branch information
Hypfer authored May 26, 2025
commit 5f63612b6633cc457e7f79777d4e790e88c31dfb
4 changes: 2 additions & 2 deletions homeassistant/components/sun/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
_PHASE_UPDATES = {
PHASE_NIGHT: timedelta(minutes=4 * 5),
PHASE_ASTRONOMICAL_TWILIGHT: timedelta(minutes=4 * 2),
PHASE_NAUTICAL_TWILIGHT: timedelta(minutes=4 * 2),
PHASE_TWILIGHT: timedelta(minutes=4),
PHASE_NAUTICAL_TWILIGHT: timedelta(minutes=4),
PHASE_TWILIGHT: timedelta(minutes=2),
PHASE_SMALL_DAY: timedelta(minutes=2),
PHASE_DAY: timedelta(minutes=4),
}
Expand Down