Compare commits
10 Commits
renovate/p
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1ed32af740 | |||
|
|
997245429e | ||
|
|
d8a04fedb8 | ||
|
|
d83d6b2caa | ||
|
|
9e9451b5e8 | ||
|
|
f9df7a1dad | ||
|
|
f9cadf0f1d | ||
|
|
783c1fd31e | ||
|
|
471c4412e5 | ||
|
|
bf27f40375 |
6
.github/workflows/python-app.yml
vendored
6
.github/workflows/python-app.yml
vendored
@@ -34,11 +34,11 @@ jobs:
|
|||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
- name: Set up Python 3.13
|
- name: Set up Python 3.13
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.13"
|
python-version: "3.13"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@@ -58,7 +58,7 @@ jobs:
|
|||||||
coverage report
|
coverage report
|
||||||
- name: Analyze with SonarCloud
|
- name: Analyze with SonarCloud
|
||||||
if: ${{ env.SONAR_TOKEN != 0 }}
|
if: ${{ env.SONAR_TOKEN != 0 }}
|
||||||
uses: SonarSource/sonarqube-scan-action@v5
|
uses: SonarSource/sonarqube-scan-action@v6
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
3.13.7
|
3.14.0
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [unreleased]
|
## [unreleased]
|
||||||
|
|
||||||
|
- Update ghcr.io/hassio-addons/base Docker tag to v18.1.4
|
||||||
- Update dependency pytest-asyncio to v1.1.0
|
- Update dependency pytest-asyncio to v1.1.0
|
||||||
- save task references, to avoid a task disappearing mid-execution
|
- save task references, to avoid a task disappearing mid-execution
|
||||||
- catch socket.gaierror exception and log this with info level
|
- catch socket.gaierror exception and log this with info level
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<p align="center">integration</p>
|
<p align="center">integration</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://opensource.org/licenses/BSD-3-Clause"><img alt="License: BSD-3-Clause" src="https://img.shields.io/badge/License-BSD_3--Clause-green.svg"></a>
|
<a href="https://opensource.org/licenses/BSD-3-Clause"><img alt="License: BSD-3-Clause" src="https://img.shields.io/badge/License-BSD_3--Clause-green.svg"></a>
|
||||||
<a href="https://www.python.org/downloads/release/python-3130/"><img alt="Supported Python versions" src="https://img.shields.io/badge/python-3.13-blue.svg"></a>
|
<a href="https://www.python.org/downloads/release/python-3140/"><img alt="Supported Python versions" src="https://img.shields.io/badge/python-3.14-blue.svg"></a>
|
||||||
<a href="https://aiomqtt.bo3hm.com/introduction.html"><img alt="Supported aiomqtt versions" src="https://img.shields.io/badge/aiomqtt-2.3.1-lightblue.svg"></a>
|
<a href="https://aiomqtt.bo3hm.com/introduction.html"><img alt="Supported aiomqtt versions" src="https://img.shields.io/badge/aiomqtt-2.3.1-lightblue.svg"></a>
|
||||||
<a href="https://libraries.io/pypi/aiocron"><img alt="Supported aiocron versions" src="https://img.shields.io/badge/aiocron-1.8-lightblue.svg"></a>
|
<a href="https://libraries.io/pypi/aiocron"><img alt="Supported aiocron versions" src="https://img.shields.io/badge/aiocron-1.8-lightblue.svg"></a>
|
||||||
<a href="https://toml.io/en/v1.0.0"><img alt="Supported toml versions" src="https://img.shields.io/badge/toml-1.0.0-lightblue.svg"></a>
|
<a href="https://toml.io/en/v1.0.0"><img alt="Supported toml versions" src="https://img.shields.io/badge/toml-1.0.0-lightblue.svg"></a>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ ARG GID=1000
|
|||||||
|
|
||||||
#
|
#
|
||||||
# first stage for our base image
|
# first stage for our base image
|
||||||
FROM python:3.13-alpine AS base
|
FROM python:3.14-alpine AS base
|
||||||
|
|
||||||
COPY --chmod=0700 ./hardening_base.sh /
|
COPY --chmod=0700 ./hardening_base.sh /
|
||||||
RUN apk upgrade --no-cache && \
|
RUN apk upgrade --no-cache && \
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
flake8==7.3.0
|
flake8==7.3.0
|
||||||
pytest==8.4.2
|
pytest==8.4.2
|
||||||
pytest-asyncio==1.2.0
|
pytest-asyncio==1.2.0
|
||||||
pytest-cov==6.3.0
|
pytest-cov==7.0.0
|
||||||
python-dotenv==1.1.1
|
python-dotenv==1.1.1
|
||||||
mock==5.2.0
|
mock==5.2.0
|
||||||
coverage==7.10.6
|
coverage==7.10.7
|
||||||
jinja2-cli==0.8.2
|
jinja2-cli==0.8.2
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
# 1 Build Base Image #
|
# 1 Build Base Image #
|
||||||
######################
|
######################
|
||||||
|
|
||||||
ARG BUILD_FROM="ghcr.io/hassio-addons/base:18.1.1"
|
ARG BUILD_FROM="ghcr.io/hassio-addons/base:18.1.4"
|
||||||
# hadolint ignore=DL3006
|
# hadolint ignore=DL3006
|
||||||
FROM $BUILD_FROM AS base
|
FROM $BUILD_FROM AS base
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ profile {{slug}} flags=(attach_disconnected,mediate_deleted) {
|
|||||||
# Capabilities
|
# Capabilities
|
||||||
file,
|
file,
|
||||||
signal (send) set=(kill,term,int,hup,cont),
|
signal (send) set=(kill,term,int,hup,cont),
|
||||||
|
network,
|
||||||
|
|
||||||
# S6-Overlay
|
# S6-Overlay
|
||||||
/init ix,
|
/init ix,
|
||||||
|
|||||||
Reference in New Issue
Block a user