From f438233263947dacc923f18b766bc5abc304a00c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 01:09:23 +0000 Subject: [PATCH 01/19] Bump actions/checkout from 4.2.1 to 4.2.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.1...v4.2.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/validate.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 65befc0..83739d8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: steps: - name: "Checkout the repository" - uses: "actions/checkout@v4.2.1" + uses: "actions/checkout@v4.2.2" with: token: ${{ secrets.WORKFLOW_PAT || github.token }} ref: ${{ github.head_ref }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1083189..2a7df7b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: contents: write steps: - name: "Checkout the repository" - uses: "actions/checkout@v4.2.1" + uses: "actions/checkout@v4.2.2" with: token: ${{ secrets.WORKFLOW_PAT || github.token }} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 45dc37c..a0c3311 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -13,7 +13,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout the repository" - uses: "actions/checkout@v4.2.1" + uses: "actions/checkout@v4.2.2" with: token: ${{ secrets.WORKFLOW_PAT || github.token }} ref: ${{ github.head_ref }} @@ -26,7 +26,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout the repository" - uses: "actions/checkout@v4.2.1" + uses: "actions/checkout@v4.2.2" with: token: ${{ secrets.WORKFLOW_PAT || github.token }} ref: ${{ github.head_ref }} From bc5604f3cf2c96e3ec407568105ce762f4b2eea1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 02:01:03 +0000 Subject: [PATCH 02/19] Bump actions/setup-python from 5.2.0 to 5.3.0 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.2.0 to 5.3.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5.2.0...v5.3.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 65befc0..d93f6ea 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: ref: ${{ github.head_ref }} - name: "Set up Python" - uses: actions/setup-python@v5.2.0 + uses: actions/setup-python@v5.3.0 with: python-version: "3.11" cache: "pip" From defe59a9eda0542239a2d039a0c0268abc5abb27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 01:33:22 +0000 Subject: [PATCH 03/19] Update pip requirement from <24.3,>=21.0 to >=21.0,<24.4 Updates the requirements on [pip](https://github.com/pypa/pip) to permit the latest version. - [Changelog](https://github.com/pypa/pip/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/pip/commits) --- updated-dependencies: - dependency-name: pip dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6a16a3c..7246d70 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.8.2 homeassistant==2024.1.2 -pip>=21.0,<24.3 +pip>=21.0,<24.4 ruff==0.6.9 telnetlib3>=2.0.4 \ No newline at end of file From f04aada48740301cf4fbad4d5043f1024efb3033 Mon Sep 17 00:00:00 2001 From: Alessandro Del Prete Date: Thu, 12 Dec 2024 10:58:59 +0100 Subject: [PATCH 04/19] Update .ruff.toml --- .ruff.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.ruff.toml b/.ruff.toml index 52bd904..9e79639 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -2,6 +2,7 @@ target-version = "py311" +[lint] select = [ "B007", # Loop control variable {name} not used within loop body "B014", # Exception handler with duplicate exception @@ -57,11 +58,11 @@ ignore = [ "PLE0605", ] -[flake8-pytest-style] +[lint.flake8-pytest-style] fixture-parentheses = false -[pyupgrade] +[lint.pyupgrade] keep-runtime-typing = true -[mccabe] -max-complexity = 25 \ No newline at end of file +[lint.mccabe] +max-complexity = 25 From 1d35749061303c5f5d0ad7e38e880219d7e14911 Mon Sep 17 00:00:00 2001 From: Alessandro Del Prete Date: Thu, 12 Dec 2024 11:49:13 +0100 Subject: [PATCH 05/19] Solved ruff UP031 warning --- custom_components/4noks_elios4you/telnetlib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/4noks_elios4you/telnetlib/__init__.py b/custom_components/4noks_elios4you/telnetlib/__init__.py index b8eac9c..6c6b798 100644 --- a/custom_components/4noks_elios4you/telnetlib/__init__.py +++ b/custom_components/4noks_elios4you/telnetlib/__init__.py @@ -464,7 +464,7 @@ def process_rawq(self): # We can't offer automatic processing of # suboptions. Alas, we should not get any # unless we did a WILL/DO before. - self.msg("IAC %d not recognized" % ord(c)) + self.msg(f"IAC {ord(c)} not recognized") elif len(self.iacseq) == 2: cmd = self.iacseq[1:2] self.iacseq = b"" From 2dc85aeae87d78d39137732570bef28e3d9a288a Mon Sep 17 00:00:00 2001 From: Alessandro Del Prete Date: Thu, 12 Dec 2024 11:54:02 +0100 Subject: [PATCH 06/19] Fixed ruff UP031 warning --- e4u-client/lib/telnetlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e4u-client/lib/telnetlib.py b/e4u-client/lib/telnetlib.py index b8eac9c..6c6b798 100644 --- a/e4u-client/lib/telnetlib.py +++ b/e4u-client/lib/telnetlib.py @@ -464,7 +464,7 @@ def process_rawq(self): # We can't offer automatic processing of # suboptions. Alas, we should not get any # unless we did a WILL/DO before. - self.msg("IAC %d not recognized" % ord(c)) + self.msg(f"IAC {ord(c)} not recognized") elif len(self.iacseq) == 2: cmd = self.iacseq[1:2] self.iacseq = b"" From db05744417c5306d71ef736f14c5879c520cac91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:02:29 +0100 Subject: [PATCH 07/19] Bump ruff from 0.6.9 to 0.8.2 (#71) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.6.9 to 0.8.2. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.6.9...0.8.2) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alessandro Del Prete --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7246d70..baa9ecf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.8.2 homeassistant==2024.1.2 pip>=21.0,<24.4 -ruff==0.6.9 +ruff==0.8.2 telnetlib3>=2.0.4 \ No newline at end of file From 82fe13b640e65293eabd2f30fae52c6ec9895ff4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:02:43 +0100 Subject: [PATCH 08/19] Bump colorlog from 6.8.2 to 6.9.0 (#63) Bumps [colorlog](https://github.com/borntyping/python-colorlog) from 6.8.2 to 6.9.0. - [Release notes](https://github.com/borntyping/python-colorlog/releases) - [Commits](https://github.com/borntyping/python-colorlog/compare/v6.8.2...v6.9.0) --- updated-dependencies: - dependency-name: colorlog dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index baa9ecf..69ed61f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -colorlog==6.8.2 +colorlog==6.9.0 homeassistant==2024.1.2 pip>=21.0,<24.4 ruff==0.8.2 From bd8611a3fa452897a34059f123fa8e4bd76a3f9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:03:08 +0100 Subject: [PATCH 09/19] Bump dependabot/fetch-metadata from 1 to 2 (#75) Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1 to 2. - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](https://github.com/dependabot/fetch-metadata/compare/v1...v2) --- updated-dependencies: - dependency-name: dependabot/fetch-metadata dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alessandro Del Prete --- .github/workflows/dependabot-auto-merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index e150c2f..516dbfb 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1 + uses: dependabot/fetch-metadata@v2 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Auto-merge changes from Dependabot From 2eaef80dea2f428bc56a09dc557aed6d03075392 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:03:26 +0100 Subject: [PATCH 10/19] Bump softprops/action-gh-release from 2.0.8 to 2.2.0 (#74) Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2.0.8 to 2.2.0. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2.0.8...v2.2.0) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alessandro Del Prete --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a7df7b..b5a76a9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,6 +32,6 @@ jobs: zip 4noks_elios4you.zip -r ./ - name: "Upload the ZIP file to the release" - uses: softprops/action-gh-release@v2.0.8 + uses: softprops/action-gh-release@v2.2.0 with: files: ${{ github.workspace }}/custom_components/4noks_elios4you/4noks_elios4you.zip From 1bebd52ed9057d9bb7ee723fa7813625bc80c7cd Mon Sep 17 00:00:00 2001 From: Rui Melo Date: Thu, 12 Dec 2024 11:04:55 +0000 Subject: [PATCH 11/19] add pt.json (#72) * Create pt.json * Update pt.json --- .../4noks_elios4you/translations/pt.json | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 custom_components/4noks_elios4you/translations/pt.json diff --git a/custom_components/4noks_elios4you/translations/pt.json b/custom_components/4noks_elios4you/translations/pt.json new file mode 100644 index 0000000..20c656c --- /dev/null +++ b/custom_components/4noks_elios4you/translations/pt.json @@ -0,0 +1,35 @@ +{ + "config": { + "step": { + "user": { + "title": "Configuração de Ligação do Elios4You", + "description": "Se precisar de ajuda com a configuração, visite: https://github.com/alexdelprete/ha-4noks-elios4you", + "data": { + "name": "Nome personalizado do dispositivo (usado como prefixo dos sensores)", + "host": "IP ou nome do host", + "port": "Porta TCP", + "scan_interval": "Período de consulta (mín: 30s máx: 600s)" + } + } + }, + "error": { + "already_configured": "O dispositivo já está configurado" + }, + "abort": { + "already_configured": "O dispositivo já está configurado" + } + }, + "options": { + "step": { + "init": { + "title": "Opções de Ligação do Elios4You", + "description": "Definir opções de ligação", + "data": { + "host": "IP ou nome do host", + "port": "Porta TCP", + "scan_interval": "Período de consulta (mín: 30s máx: 600s)" + } + } + } + } +} From f1dba24b0dbd0ae404014b34cfc3d701a9fad14a Mon Sep 17 00:00:00 2001 From: Denis Lucietto <137226040+Dennyer@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:09:02 +0100 Subject: [PATCH 12/19] Fix: Improper parsing of data in case of errors (#73) --- custom_components/4noks_elios4you/api.py | 25 +++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/custom_components/4noks_elios4you/api.py b/custom_components/4noks_elios4you/api.py index 7ce723a..ad85d6e 100644 --- a/custom_components/4noks_elios4you/api.py +++ b/custom_components/4noks_elios4you/api.py @@ -194,13 +194,17 @@ async def async_get_data(self): for key, value in dat_parsed.items(): # @dat returns only numbers as strings # power/energy as float all others as int - if ("energy" in key) or ("power" in key): - self.data[key] = round(float(value), 2) - # don't create a utc_time sensor - elif key == "utc_time": - pass - else: - self.data[key] = int(value) + try: + if ("energy" in key) or ("power" in key): + self.data[key] = round(float(value), 2) + elif key == "utc_time": + pass + else: + self.data[key] = int(value) + except ValueError: + # If the value cannot be converted to int, log it and skip + _LOGGER.debug(f"async_get_data: Value for {key} could not be parsed to int: {value}") + continue # Skip the invalid value else: _LOGGER.debug("async_get_data (ERROR): @dat data is None") @@ -209,7 +213,10 @@ async def async_get_data(self): _LOGGER.debug("async_get_data (WARNING): parsing @sta data") for key, value in sta_parsed.items(): # @sta returns only float numbers as strings - self.data[key] = round(float(value), 2) + try: + self.data[key] = round(float(value), 2) + except ValueError: + _LOGGER.debug(f"async_get_data: Value for {key} could not be parsed to float: {value}") else: _LOGGER.debug("async_get_data (ERROR): @sta data is None") @@ -223,7 +230,7 @@ async def async_get_data(self): _LOGGER.debug("async_get_data (ERROR): @inf data is None") # Calculated sensor to combine TOP/BOTTOM fw versions - self.data["swver"] = f"{self.data["fwtop"]} / {self.data["fwbtm"]}" + self.data["swver"] = f"{self.data['fwtop']} / {self.data['fwbtm']}" # Calculated sensors for self-consumption sensors self.data["self_consumed_power"] = round( From 442d5548a172dbf4f55fe479cd669acd65f85efc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 20:49:44 +0000 Subject: [PATCH 13/19] Bump ruff from 0.8.2 to 0.8.3 (#76) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.2 to 0.8.3. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.8.2...0.8.3) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 69ed61f..807ef85 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.9.0 homeassistant==2024.1.2 pip>=21.0,<24.4 -ruff==0.8.2 +ruff==0.8.3 telnetlib3>=2.0.4 \ No newline at end of file From ea32e4bde84a85ac33889367886d83cbc7dafac9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 20:21:59 +0000 Subject: [PATCH 14/19] Bump ruff from 0.8.3 to 0.8.4 (#77) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.3 to 0.8.4. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.8.3...0.8.4) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 807ef85..dff6a21 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.9.0 homeassistant==2024.1.2 pip>=21.0,<24.4 -ruff==0.8.3 +ruff==0.8.4 telnetlib3>=2.0.4 \ No newline at end of file From 79d58fa7ae540e612a5e722795c667093c4157b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 20:26:15 +0000 Subject: [PATCH 15/19] Bump ruff from 0.8.4 to 0.8.5 (#78) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.4 to 0.8.5. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.8.4...0.8.5) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index dff6a21..e44d3e1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.9.0 homeassistant==2024.1.2 pip>=21.0,<24.4 -ruff==0.8.4 +ruff==0.8.5 telnetlib3>=2.0.4 \ No newline at end of file From c716bdc3789b869b8b27bf92b1203f793f80a428 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 20:24:20 +0000 Subject: [PATCH 16/19] Bump ruff from 0.8.5 to 0.8.6 (#79) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.5 to 0.8.6. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.8.5...0.8.6) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e44d3e1..d1cbd59 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.9.0 homeassistant==2024.1.2 pip>=21.0,<24.4 -ruff==0.8.5 +ruff==0.8.6 telnetlib3>=2.0.4 \ No newline at end of file From 31dfead899e79513d1175709717e62b56e6b89a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 20:31:15 +0000 Subject: [PATCH 17/19] Bump softprops/action-gh-release from 2.2.0 to 2.2.1 (#80) Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2.2.0 to 2.2.1. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2.2.0...v2.2.1) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5a76a9..4e755f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,6 +32,6 @@ jobs: zip 4noks_elios4you.zip -r ./ - name: "Upload the ZIP file to the release" - uses: softprops/action-gh-release@v2.2.0 + uses: softprops/action-gh-release@v2.2.1 with: files: ${{ github.workspace }}/custom_components/4noks_elios4you/4noks_elios4you.zip From 8dded52be533f74d480919511c4f2f8197d4b35b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 20:14:29 +0000 Subject: [PATCH 18/19] Bump ruff from 0.8.6 to 0.9.0 (#81) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.6 to 0.9.0. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.8.6...0.9.0) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d1cbd59..2cfb1a2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.9.0 homeassistant==2024.1.2 pip>=21.0,<24.4 -ruff==0.8.6 +ruff==0.9.0 telnetlib3>=2.0.4 \ No newline at end of file From 89e6a7c3eb24bd659ee7b8e705dd7cc336ce894a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 20:48:12 +0000 Subject: [PATCH 19/19] Bump ruff from 0.9.0 to 0.9.1 (#82) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.9.0 to 0.9.1. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.9.0...0.9.1) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2cfb1a2..d4da39c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.9.0 homeassistant==2024.1.2 pip>=21.0,<24.4 -ruff==0.9.0 +ruff==0.9.1 telnetlib3>=2.0.4 \ No newline at end of file