From 82fb4f342cd9afaa6c5f9bdadd6c7bb188d2eb9b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 12:47:13 +0000 Subject: [PATCH 1/6] feat(Dependencies): Update pre-commit hook sondrelg/pep585-upgrade to v1.0.1 | datasource | package | from | to | | ----------- | ----------------------- | ---- | ------ | | github-tags | sondrelg/pep585-upgrade | v1 | v1.0.1 | --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 914206bd..024df725 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: hooks: - id: black - repo: https://github.com/sondrelg/pep585-upgrade - rev: 'v1' # Use the sha / tag you want to point at + rev: 'v1.0.1' # Use the sha / tag you want to point at hooks: - id: upgrade-type-hints From 1c594197314697f24cbb4b33dee7a6fe4e374f24 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 12:47:18 +0000 Subject: [PATCH 2/6] feat(Dependencies): Update all non-major dependencies | datasource | package | from | to | | ----------- | --------------------------- | ------ | ------- | | github-tags | PyCQA/isort | 5.10.1 | 5.12.0 | | github-tags | myint/autoflake | v1.4 | v1.7.8 | | github-tags | pre-commit/pre-commit-hooks | v4.1.0 | v4.4.0 | | github-tags | psf/black | 22.1.0 | 22.12.0 | --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 914206bd..78a6fbf1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,14 +2,14 @@ default_stages: [ commit ] repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.1.0 + rev: v4.4.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - repo: https://github.com/psf/black - rev: 22.1.0 + rev: 22.12.0 hooks: - id: black - repo: https://github.com/sondrelg/pep585-upgrade @@ -18,7 +18,7 @@ repos: - id: upgrade-type-hints - repo: https://github.com/PyCQA/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort - repo: https://github.com/neutrinoceros/flynt/ @@ -27,7 +27,7 @@ repos: - id: flynt - repo: https://github.com/myint/autoflake - rev: v1.4 + rev: v1.7.8 hooks: - id: autoflake args: From ac012cac3637898753d73d15d8f8d82eae7d7325 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 13:13:36 +0000 Subject: [PATCH 3/6] feat(Dependencies): Update pre-commit hook PyCQA/flake8 to v6 | datasource | package | from | to | | ----------- | ------------ | ----- | ----- | | github-tags | PyCQA/flake8 | 4.0.1 | 6.1.0 | --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 78a6fbf1..f620d056 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,7 +35,7 @@ repos: - --remove-all-unused-imports - repo: https://github.com/PyCQA/flake8 - rev: 4.0.1 + rev: 6.1.0 hooks: - id: flake8 args: [ "--config=setup.cfg" ] From 0c7152895b2808f78da205088e67d8e2a41c5906 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 13:13:42 +0000 Subject: [PATCH 4/6] feat(Dependencies): Update pre-commit hook myint/autoflake to v2 | datasource | package | from | to | | ----------- | --------------- | ------ | ------ | | github-tags | myint/autoflake | v1.7.8 | v2.2.0 | --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 78a6fbf1..ee1275c4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -27,7 +27,7 @@ repos: - id: flynt - repo: https://github.com/myint/autoflake - rev: v1.7.8 + rev: v2.2.0 hooks: - id: autoflake args: From 3c028367e9783fa534c85096b18d7be8ea226956 Mon Sep 17 00:00:00 2001 From: dweinholz Date: Tue, 8 Aug 2023 09:35:10 +0200 Subject: [PATCH 5/6] Update VirtualMachineHandler.py --- VirtualMachineService/VirtualMachineHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VirtualMachineService/VirtualMachineHandler.py b/VirtualMachineService/VirtualMachineHandler.py index 16e9dbb2..5c50e34f 100644 --- a/VirtualMachineService/VirtualMachineHandler.py +++ b/VirtualMachineService/VirtualMachineHandler.py @@ -2665,7 +2665,7 @@ def delete_volume(self, volume_id): try: self.LOG.info(f"Delete Volume {volume_id}") - self.conn.block_storage.delete_volume(volume=volume_id, force=True) + self.conn.block_storage.delete_volume(volume=volume_id) return True except ConflictException: self.LOG.exception(f"Delete volume {volume_id} error") From f6192a445add3307f641d589e8badde6f4d4bf6f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Aug 2023 07:35:36 +0000 Subject: [PATCH 6/6] feat(Dependencies): Update pre-commit hook psf/black to v23 | datasource | package | from | to | | ----------- | --------- | ------- | ------ | | github-tags | psf/black | 22.12.0 | 23.7.0 | --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index eb72a16a..1e776638 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,7 +9,7 @@ repos: - id: check-yaml - repo: https://github.com/psf/black - rev: 22.12.0 + rev: 23.7.0 hooks: - id: black - repo: https://github.com/sondrelg/pep585-upgrade