From e3c2672ea902be41f24a8ca3beed47f204b813d5 Mon Sep 17 00:00:00 2001 From: Stefan Allius <122395479+s-allius@users.noreply.github.com> Date: Sun, 13 Apr 2025 20:37:34 +0200 Subject: [PATCH 1/2] Fix rel build (#369) * disable cache for rc build * bump python version to 3.12.10-r0 --- ha_addons/docker-bake.hcl | 1 + ha_addons/ha_addon/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ha_addons/docker-bake.hcl b/ha_addons/docker-bake.hcl index 9c87499..32cbf6c 100644 --- a/ha_addons/docker-bake.hcl +++ b/ha_addons/docker-bake.hcl @@ -90,6 +90,7 @@ target "preview" { target "rc" { inherits = ["_common", "_prod"] tags = ["${IMAGE}:rc", "${IMAGE}:${VERSION}"] + no-cache = true } target "rel" { diff --git a/ha_addons/ha_addon/Dockerfile b/ha_addons/ha_addon/Dockerfile index 9d3ecdb..ae45569 100755 --- a/ha_addons/ha_addon/Dockerfile +++ b/ha_addons/ha_addon/Dockerfile @@ -18,7 +18,7 @@ ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.3" FROM $BUILD_FROM AS base # Installiere Python, pip und virtuelle Umgebungstools -RUN apk add --no-cache python3=3.12.9-r0 py3-pip=24.3.1-r0 && \ +RUN apk add --no-cache python3=3.12.10-r0 py3-pip=24.3.1-r0 && \ python -m venv /opt/venv && \ . /opt/venv/bin/activate From 22ebad2edb7c9a57879c9bc8ad4b9e00680eac07 Mon Sep 17 00:00:00 2001 From: Stefan Allius <122395479+s-allius@users.noreply.github.com> Date: Sun, 13 Apr 2025 20:57:31 +0200 Subject: [PATCH 2/2] Update rel 0.13.0 (#371) * update compose help link (cherry picked from commit 6d4ff0d5089bec6dbb6ae2d37aa3a4db80ef1f25) * fix link (cherry picked from commit 3d422f924957dd860f1f03599bb8d3b70428e32b) * retrigger sonar qube test run * fix rel build run * bump version --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31ac310..6f194c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.13.0] - 2025-04-13 + - update dependency python to 3.13 - add initial support for TSUN MS-3000 - add initial apparmor support [#293](https://github.com/s-allius/tsun-gen3-proxy/issues/293)