From 0fd00eac5aa0af128d697cc85ae63593f9247579 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 29 Dec 2023 12:44:38 +0000 Subject: [PATCH 01/19] Updated manifest.json --- custom_components/webastoconnect/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/webastoconnect/manifest.json b/custom_components/webastoconnect/manifest.json index 2507d8c..3e58b7d 100644 --- a/custom_components/webastoconnect/manifest.json +++ b/custom_components/webastoconnect/manifest.json @@ -14,5 +14,5 @@ "requirements": [ "pywebasto==1.0.0" ], - "version": "0.1.1" + "version": "0.2.0" } \ No newline at end of file From 71a920cbe35ae7d874ae8100be1f819ff5b96b74 Mon Sep 17 00:00:00 2001 From: Malene Trab Date: Fri, 29 Dec 2023 13:54:50 +0100 Subject: [PATCH 02/19] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cd1676..d0a31a9 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Webasto DOES NOT provide any public API or documentation of such, so I ca ### Option 1 (easy) - HACS: - Ensure that HACS is installed. -- Search for and install the "Energi Data Service" integration. +- Search for and install the "Webasto Connect" integration. - Restart Home Assistant. ### Option 2 - Manual installation: From 2adf9a8f29d6cb9952d9a3cb969374b3ad60f7d7 Mon Sep 17 00:00:00 2001 From: Malene Trab Date: Tue, 2 Jan 2024 09:23:04 +0100 Subject: [PATCH 03/19] Add HACS default description and shield This repo is now a part of HACS defaults --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d0a31a9..7f63197 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Current Release](https://img.shields.io/github/release/mtrab/webastoconnect/all.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) [![Github All Releases](https://img.shields.io/github/downloads/mtrab/webastoconnect/total.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) +[![Current Release](https://img.shields.io/github/release/mtrab/webastoconnect/all.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) [![Github All Releases](https://img.shields.io/github/downloads/mtrab/webastoconnect/total.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) [![hacs_badge](https://img.shields.io/badge/HACS-Default-41BDF5.svg?style=plastic)](https://github.com/hacs/integration) Buy Me A Coffee @@ -14,11 +14,11 @@ Webasto DOES NOT provide any public API or documentation of such, so I ca # Installation: -### Option 1 (easy) - HACS: +### Option 1 (easy) - HACS: -- Ensure that HACS is installed. -- Search for and install the "Webasto Connect" integration. -- Restart Home Assistant. +- Ensure that HACS is installed. +- Search for and install the "Webasto Connect" integration. +- Restart Home Assistant. ### Option 2 - Manual installation: @@ -36,4 +36,3 @@ Or go to Home Assistant > Settings > Integrations Add "Webasto Connect (ThermoConnect)" integration *(If it doesn't show, try CTRL+F5 to force a refresh of the page)* Enter your Webasto account email and password - From 91b0a75784eea86425b4f7692abe0ff95ef3108b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 04:38:03 +0000 Subject: [PATCH 04/19] Bump ruff from 0.1.9 to 0.1.11 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.9 to 0.1.11. - [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/v0.1.9...v0.1.11) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8c9c2a0..3c7151d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.8.0 homeassistant==2023.12.4 pip>=21.0,<23.4 -ruff==0.1.9 \ No newline at end of file +ruff==0.1.11 \ No newline at end of file From be7d8d591b0e77f6dbf1453817ab11fe54e1fa8f Mon Sep 17 00:00:00 2001 From: Malene Trab Date: Thu, 11 Jan 2024 13:10:56 +0100 Subject: [PATCH 05/19] Language Update --- .../webastoconnect/translations/da.json | 19 +++++++++++++++++++ .../webastoconnect/translations/en.json | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 custom_components/webastoconnect/translations/da.json diff --git a/custom_components/webastoconnect/translations/da.json b/custom_components/webastoconnect/translations/da.json new file mode 100644 index 0000000..1ea55f3 --- /dev/null +++ b/custom_components/webastoconnect/translations/da.json @@ -0,0 +1,19 @@ +{ + "config": { + "abort": { + "already_configured": "Enheden er allerede konfigureret" + }, + "error": { + "invalid_auth": "Ugyldig autentificering" + }, + "step": { + "user": { + "data": { + "email": "Email", + "password": "Kodeord" + } + } + }, + "title": "Webasto Connect (ThermoConnect)" + } +} \ No newline at end of file diff --git a/custom_components/webastoconnect/translations/en.json b/custom_components/webastoconnect/translations/en.json index fa3fbb9..e065b48 100644 --- a/custom_components/webastoconnect/translations/en.json +++ b/custom_components/webastoconnect/translations/en.json @@ -1,6 +1,5 @@ { "config": { - "title": "Webasto Connect (ThermoConnect)", "abort": { "already_configured": "Device is already configured" }, @@ -14,6 +13,7 @@ "password": "Password" } } - } + }, + "title": "Webasto Connect (ThermoConnect)" } } \ No newline at end of file From d2d68a494ad5e620b9f0aeb8d3d0bbd94e12f56b Mon Sep 17 00:00:00 2001 From: Malene Trab Date: Thu, 11 Jan 2024 13:21:07 +0100 Subject: [PATCH 06/19] Add Lokalise badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f63197..69a62ab 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Current Release](https://img.shields.io/github/release/mtrab/webastoconnect/all.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) [![Github All Releases](https://img.shields.io/github/downloads/mtrab/webastoconnect/total.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) [![hacs_badge](https://img.shields.io/badge/HACS-Default-41BDF5.svg?style=plastic)](https://github.com/hacs/integration) +[![Current Release](https://img.shields.io/github/release/mtrab/webastoconnect/all.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) [![Github All Releases](https://img.shields.io/github/downloads/mtrab/webastoconnect/total.svg?style=plastic)](https://github.com/mtrab/webastoconnect/releases) [![hacs_badge](https://img.shields.io/badge/HACS-Default-41BDF5.svg?style=plastic)](https://github.com/hacs/integration) [![Lokalize translation](https://img.shields.io/static/v1?label=Help%20translate&message=using%20Lokalize&color=green&style=plastic)](https://app.lokalise.com/public/25546617659fd91f4f8358.30009801/) Buy Me A Coffee From c206091b904aafd2d5bb6fe0f29684548e4cb8fd Mon Sep 17 00:00:00 2001 From: Malene Trab Date: Thu, 11 Jan 2024 13:24:15 +0100 Subject: [PATCH 07/19] Update release-drafter.yml --- .github/workflows/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index c391d2c..4e8ad0b 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: branches: - - master + - main pull_request: types: [opened, reopened, synchronize] From 1662e6a7cbafae2a891a7ef380213030c19f6311 Mon Sep 17 00:00:00 2001 From: Malene Trab Date: Thu, 11 Jan 2024 13:28:00 +0100 Subject: [PATCH 08/19] Update release-drafter.yml --- .github/release-drafter.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index d49c12f..dcc8a5e 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -20,14 +20,9 @@ categories: - 'bugfix' - 'bug' - - title: '🧬 Changes to Charge Owner informations' + - title: '🔈 Translations update' labels: - - chargeowner - - chargeowners - - - title: '🧬 New Charge Owner(s) added' - labels: - - 'new chargeowner' + - 'translations' - title: '🧰 Maintenance' label: 'chore' From 1fb70b5efcee776d8cddbfaed45e193ac354bcec Mon Sep 17 00:00:00 2001 From: Malene Trab Date: Thu, 11 Jan 2024 13:28:28 +0100 Subject: [PATCH 09/19] Update release-drafter.yml --- .github/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index dcc8a5e..43b6cc8 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -22,7 +22,7 @@ categories: - title: '🔈 Translations update' labels: - - 'translations' + - 'translation' - title: '🧰 Maintenance' label: 'chore' From 2ba64c3afcde48975e91a785171514e4269b7bd6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:09:04 +0000 Subject: [PATCH 10/19] Bump actions/cache from 3.3.2 to 3.3.3 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 3.3.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.2...v3.3.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/format-code.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format-code.yml b/.github/workflows/format-code.yml index 3d6eea1..09fb3e3 100644 --- a/.github/workflows/format-code.yml +++ b/.github/workflows/format-code.yml @@ -19,7 +19,7 @@ jobs: with: python-version: 3.8 - name: Cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v3.3.3 with: path: ~/.cache/pip key: pip-format From 5580c6fac7a123e713b41ffd1280f4bb6a78f2bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 05:05:00 +0000 Subject: [PATCH 11/19] Bump ruff from 0.1.11 to 0.1.13 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.11 to 0.1.13. - [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/v0.1.11...v0.1.13) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3c7151d..3f4dc15 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.8.0 homeassistant==2023.12.4 pip>=21.0,<23.4 -ruff==0.1.11 \ No newline at end of file +ruff==0.1.13 \ No newline at end of file From b1fb90d930caa7c7a035fee5a4a6206a4ad7a23f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 15:33:05 +0000 Subject: [PATCH 12/19] Bump actions/cache from 3.3.3 to 4.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.3 to 4.0.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.3...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/format-code.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format-code.yml b/.github/workflows/format-code.yml index 09fb3e3..aefc8a7 100644 --- a/.github/workflows/format-code.yml +++ b/.github/workflows/format-code.yml @@ -19,7 +19,7 @@ jobs: with: python-version: 3.8 - name: Cache - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.0 with: path: ~/.cache/pip key: pip-format From 63440fa960e8458ece2a3e383b5f65d0bcaa976e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 04:09:07 +0000 Subject: [PATCH 13/19] Bump ruff from 0.1.13 to 0.1.14 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.13 to 0.1.14. - [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/v0.1.13...v0.1.14) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3f4dc15..d9cc25f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.8.0 homeassistant==2023.12.4 pip>=21.0,<23.4 -ruff==0.1.13 \ No newline at end of file +ruff==0.1.14 \ No newline at end of file From 022a052fc9b3fcb5fe4599a21f1dee95284de13f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 04:54:12 +0000 Subject: [PATCH 14/19] Bump colorlog from 6.8.0 to 6.8.2 Bumps [colorlog](https://github.com/borntyping/python-colorlog) from 6.8.0 to 6.8.2. - [Release notes](https://github.com/borntyping/python-colorlog/releases) - [Commits](https://github.com/borntyping/python-colorlog/compare/v6.8.0...v6.8.2) --- updated-dependencies: - dependency-name: colorlog dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3f4dc15..572fa83 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -colorlog==6.8.0 +colorlog==6.8.2 homeassistant==2023.12.4 pip>=21.0,<23.4 ruff==0.1.13 \ No newline at end of file From 36b30a8bf49069b40dfd4c5e37328fe79f88cf14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 15:15:11 +0000 Subject: [PATCH 15/19] Bump release-drafter/release-drafter from 5 to 6 Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5 to 6. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v5...v6) --- updated-dependencies: - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 4e8ad0b..2889ff3 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -18,7 +18,7 @@ jobs: with: fetch-depth: 0 - name: Create Release - uses: release-drafter/release-drafter@v5 + uses: release-drafter/release-drafter@v6 with: disable-releaser: github.ref != 'refs/heads/main' env: From e327e53f35b7318c48f65b9186d1adc2ab87ac23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 04:14:02 +0000 Subject: [PATCH 16/19] Update pip requirement from <23.4,>=21.0 to >=21.0,<24.1 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/compare/21.0...24.0) --- 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 2954e3e..bbf82f9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.8.2 homeassistant==2023.12.4 -pip>=21.0,<23.4 +pip>=21.0,<24.1 ruff==0.1.14 \ No newline at end of file From 68515d65a8b2acb4c06896037ebbce33efab6ca5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 04:14:44 +0000 Subject: [PATCH 17/19] Bump ruff from 0.1.14 to 0.2.1 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.14 to 0.2.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/v0.1.14...v0.2.1) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2954e3e..cd8a5d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.8.2 homeassistant==2023.12.4 pip>=21.0,<23.4 -ruff==0.1.14 \ No newline at end of file +ruff==0.2.1 \ No newline at end of file From 3968cb19f53f9d1bc5f6941604e9ea76a491f9bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 04:37:36 +0000 Subject: [PATCH 18/19] Update pip requirement from <23.4,>=21.0 to >=21.0,<24.1 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/compare/21.0...24.0) --- 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 2249011..18ef85c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.8.2 homeassistant==2023.12.4 -pip>=21.0,<23.4 +pip>=21.0,<24.1 ruff==0.2.1 From 09296d2ada3630ca6411df5749d875e0f649212e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 04:14:55 +0000 Subject: [PATCH 19/19] Bump ruff from 0.2.1 to 0.2.2 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.2.1 to 0.2.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/v0.2.1...v0.2.2) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 18ef85c..c749e4f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.8.2 homeassistant==2023.12.4 pip>=21.0,<24.1 -ruff==0.2.1 +ruff==0.2.2