From 821ce0f334cb9da17e4c7ae0399313d5110c0c43 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Sat, 19 Oct 2024 08:44:42 -0600 Subject: [PATCH 1/3] Update to 0.16.0 - Include select, image and camera entities from #264 - Add ability to use an existing MQTT connection from #263 - A lot of dependency updates - Remmove `thelogrus` from dependencies - it wwas only needed in the cli tools which have been moved to the ha-mqtt-discoverable-cli module Signed-off-by: Joe Block --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index aaf44bd..259db16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "ha-mqtt-discoverable" -version = "0.15.0" -description = "" +version = "0.16.0" +description = "Python library for creating MQTT entities compatible with Home Assistant" authors = ["Joe Block "] readme = "README.md" packages = [{include = "ha_mqtt_discoverable"}] From 5901119762f774cfb47518913698d4dd726415cd Mon Sep 17 00:00:00 2001 From: Joe Block Date: Sat, 19 Oct 2024 08:47:49 -0600 Subject: [PATCH 2/3] Update dependencies Signed-off-by: Joe Block --- poetry.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/poetry.lock b/poetry.lock index 8e97956..f05718f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -35,13 +35,13 @@ files = [ [[package]] name = "distlib" -version = "0.3.8" +version = "0.3.9" description = "Distribution utilities" optional = false python-versions = "*" files = [ - {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"}, - {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"}, + {file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"}, + {file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"}, ] [[package]] @@ -533,13 +533,13 @@ files = [ [[package]] name = "virtualenv" -version = "20.26.6" +version = "20.27.0" description = "Virtual Python Environment builder" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "virtualenv-20.26.6-py3-none-any.whl", hash = "sha256:7345cc5b25405607a624d8418154577459c3e0277f5466dd79c49d5e492995f2"}, - {file = "virtualenv-20.26.6.tar.gz", hash = "sha256:280aede09a2a5c317e409a00102e7077c6432c5a38f0ef938e643805a7ad2c48"}, + {file = "virtualenv-20.27.0-py3-none-any.whl", hash = "sha256:44a72c29cceb0ee08f300b314848c86e57bf8d1f13107a5e671fb9274138d655"}, + {file = "virtualenv-20.27.0.tar.gz", hash = "sha256:2ca56a68ed615b8fe4326d11a0dca5dfbe8fd68510fb6c6349163bed3c15f2b2"}, ] [package.dependencies] From 578cab215153a42cac2117aebec13618bf40a0f8 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Sat, 19 Oct 2024 08:53:47 -0600 Subject: [PATCH 3/3] Whitelist http://camera.local/latest.jpg http://camera.local/latest.jpg rightfully causes a complaint in the awesomebot check, whitelist it. Signed-off-by: Joe Block --- .github/workflows/awesomebot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/awesomebot.yml b/.github/workflows/awesomebot.yml index a9c311f..1f5eaf4 100644 --- a/.github/workflows/awesomebot.yml +++ b/.github/workflows/awesomebot.yml @@ -20,4 +20,4 @@ jobs: fetch-depth: 0 - uses: docker://dkhamsing/awesome_bot:latest with: - args: /github/workspace/README.md --allow-ssl --allow 500,501,502,503,504,509,521 --allow-dupe --allow-redirect --request-delay 1 --white-list https://github,https://img.shields.io + args: /github/workspace/README.md --allow-ssl --allow 500,501,502,503,504,509,521 --allow-dupe --allow-redirect --request-delay 1 --white-list https://github,https://img.shields.io,http://camera.local/latest.jpg