Compare commits

..

2 Commits

Author SHA1 Message Date
dependabot[bot]
9ad1bf0f1a Bump sentry-sdk from 2.48.0 to 2.49.0 (#6467)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 22:51:15 +01:00
dependabot[bot]
0f30e2cb43 Bump ruff from 0.14.10 to 0.14.11 (#6468)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 22:48:34 +01:00
3 changed files with 5 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ pyudev==0.24.4
PyYAML==6.0.3
requests==2.32.5
securetar==2025.12.0
sentry-sdk==2.48.0
sentry-sdk==2.49.0
setuptools==80.9.0
voluptuous==0.16.0
dbus-fast==3.1.2

View File

@@ -8,7 +8,7 @@ pytest-asyncio==1.3.0
pytest-cov==7.0.0
pytest-timeout==2.4.0
pytest==9.0.2
ruff==0.14.10
ruff==0.14.11
time-machine==3.2.0
types-docker==7.1.0.20260109
types-pyyaml==6.0.12.20250915

View File

@@ -226,19 +226,19 @@ class DockerHomeAssistant(DockerInterface):
source=self.sys_config.path_extern_homeassistant.as_posix(),
target="/config",
read_only=False,
).to_dict(),
),
DockerMount(
type=MountType.BIND,
source=self.sys_config.path_extern_ssl.as_posix(),
target="/ssl",
read_only=True,
).to_dict(),
),
DockerMount(
type=MountType.BIND,
source=self.sys_config.path_extern_share.as_posix(),
target="/share",
read_only=False,
).to_dict(),
),
],
environment={ENV_TIME: self.sys_timezone},
)