From ca18cb2a37c34e27b65cc9be493946ca378bf48e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Fri, 25 Aug 2023 16:10:53 +0200 Subject: [PATCH 01/84] plugin(ifaceerrors): Extend to detect dropped packages and carrier changes --- risuclient/plugins/core/network/interface-errors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/risuclient/plugins/core/network/interface-errors.sh b/risuclient/plugins/core/network/interface-errors.sh index 80ef20f3..a412facc 100755 --- a/risuclient/plugins/core/network/interface-errors.sh +++ b/risuclient/plugins/core/network/interface-errors.sh @@ -38,7 +38,7 @@ IFACES_IN_SYSTEM=$(grep -i "state UP" ${IP_ADDRESS_FILE} | cut -f2 -d ":" | tr - # Check all interfaces for iface in ${IFACES_IN_SYSTEM}; do - IFACEPATH=$(find ${RISU_ROOT}/sys | grep net | grep ${iface} | grep errors) + IFACEPATH=$(find ${RISU_ROOT}/sys | grep net | grep ${iface} | grep -E 'errors|dropped|carrier_changes') for file in ${IFACEPATH}; do CONTENT=$(cat ${file}) From 3fa18c64c37e41ce89d44b8bdd974cb7176b2648 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Aug 2023 13:30:55 +0000 Subject: [PATCH 02/84] build(deps): bump cycjimmy/semantic-release-action from 3 to 4 Bumps [cycjimmy/semantic-release-action](https://github.com/cycjimmy/semantic-release-action) from 3 to 4. - [Release notes](https://github.com/cycjimmy/semantic-release-action/releases) - [Changelog](https://github.com/cycjimmy/semantic-release-action/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/cycjimmy/semantic-release-action/compare/v3...v4) --- updated-dependencies: - dependency-name: cycjimmy/semantic-release-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 d17e041e..88a50661 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,7 @@ jobs: if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi - name: Semantic Release - uses: cycjimmy/semantic-release-action@v3 + uses: cycjimmy/semantic-release-action@v4 id: semantic with: semantic_version: 19.0.5 From 63e65e3dad28523b1ee8e22533231bc89dc61486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Mon, 4 Sep 2023 09:14:21 +0200 Subject: [PATCH 03/84] ci: update precommit --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8cb7a45f..400b56c4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: 3.6.0 + rev: 3.7.0 - hooks: - id: check-useless-excludes repo: meta @@ -14,7 +14,7 @@ repos: - files: \.(css|js|md|markdown|json) id: prettier repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.2 + rev: v3.0.3 - hooks: - id: seed-isort-config repo: https://github.com/asottile/seed-isort-config From 305e7631deabe511662b538f70e1265371b38d42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Mon, 4 Sep 2023 15:24:41 +0200 Subject: [PATCH 04/84] ci: try to fix release GHA --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 88a50661..1f1cbff2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - uses: actions/cache@v3 with: @@ -49,11 +48,15 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi + - uses: actions/setup-node@v2 + with: + node-version: '14' + - name: Semantic Release uses: cycjimmy/semantic-release-action@v4 id: semantic with: - semantic_version: 19.0.5 + semantic_version: 18.0.0 extra_plugins: | @semantic-release/git @semantic-release/changelog From 3b02cbe66b2446a4a1558fb013acdf3b19be2da9 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 4 Sep 2023 13:26:39 +0000 Subject: [PATCH 05/84] chore(release): 1.14.3 [skip ci] ## [1.14.3](https://github.com/risuorg/risu/compare/1.14.2...1.14.3) (2023-09-04) ### Bug Fixes * move egrep -> grep -E ([fcdab4d](https://github.com/risuorg/risu/commit/fcdab4de5afb2c11e8f37a174ff2e04ac078860f)) --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2aba9e87..24926048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.14.3](https://github.com/risuorg/risu/compare/1.14.2...1.14.3) (2023-09-04) + +### Bug Fixes + +- move egrep -> grep -E ([fcdab4d](https://github.com/risuorg/risu/commit/fcdab4de5afb2c11e8f37a174ff2e04ac078860f)) + ## [1.14.2](https://github.com/risuorg/risu/compare/1.14.1...1.14.2) (2023-02-15) ### Bug Fixes From 184e731a3bdc04885545b6074f2b0829842dcad0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:48:22 +0000 Subject: [PATCH 06/84] build(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-merge.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/pre-commit.yml | 2 +- .github/workflows/python-package.yml | 2 +- .github/workflows/python-publish.yml | 2 +- .github/workflows/refresh-authors.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/shiftleft-analysis.yml | 2 +- .github/workflows/size.yaml | 2 +- .github/workflows/update_semver.yml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index c86e434b..ac7dc4c6 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -13,7 +13,7 @@ jobs: auto-merge: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ahmadnassri/action-dependabot-auto-merge@v2.6 if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6d4a2ea7..8d75a262 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index f28bab7b..169a94d3 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -15,7 +15,7 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-python@v4 diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 0041aab3..2a70e55b 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -23,7 +23,7 @@ jobs: python-version: [3.x] # No longer compatible , 2.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 60b25e98..a11b1c06 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index f35b7a9c..632843a9 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest # windows-latest | macos-latest name: Test changed-files steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # OR "2" -> To retrieve the preceding commit. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f1cbff2..def4e351 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: actions/setup-python@v4 - uses: actions/cache@v3 with: diff --git a/.github/workflows/shiftleft-analysis.yml b/.github/workflows/shiftleft-analysis.yml index 445e9a71..e4dd1788 100644 --- a/.github/workflows/shiftleft-analysis.yml +++ b/.github/workflows/shiftleft-analysis.yml @@ -17,7 +17,7 @@ jobs: # Scan runs on ubuntu, mac and windows runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Instructions # 1. Setup JDK, Node.js, Python etc depending on your project type # 2. Compile or build the project before invoking scan diff --git a/.github/workflows/size.yaml b/.github/workflows/size.yaml index 3f77516a..a962dad0 100644 --- a/.github/workflows/size.yaml +++ b/.github/workflows/size.yaml @@ -9,7 +9,7 @@ jobs: update_labels: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-ecosystem/action-size@v2 id: size diff --git a/.github/workflows/update_semver.yml b/.github/workflows/update_semver.yml index 617692de..11c35eaa 100644 --- a/.github/workflows/update_semver.yml +++ b/.github/workflows/update_semver.yml @@ -18,7 +18,7 @@ jobs: update-semver: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: haya14busa/action-update-semver@v1.2.1 with: major_version_tag_only: false # (optional, default is "false") From 9b86f47ef8e6ace895a5c4d2afd7650f004ae936 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:48:29 +0000 Subject: [PATCH 07/84] build(deps): bump actions/setup-node from 2 to 3 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 1f1cbff2..640b2030 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: '14' From c697e45fdcf976d5a5cd3eb050d4ad7937eaf196 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 13:55:50 +0000 Subject: [PATCH 08/84] build(deps): bump tj-actions/changed-files from 38 to 39 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 38 to 39. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v38...v39) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/refresh-authors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index 632843a9..3a7f8f6d 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -24,7 +24,7 @@ jobs: - name: Get changed files in the checks folder id: changed-files-specific - uses: tj-actions/changed-files@v38 + uses: tj-actions/changed-files@v39 with: files: | **/*.py From 4f2d1dc2fd8ab9b685aa5106c4c1c39f398d2f5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:51:19 +0000 Subject: [PATCH 09/84] build(deps): bump actions/first-interaction from 1.1.1 to 1.2.0 Bumps [actions/first-interaction](https://github.com/actions/first-interaction) from 1.1.1 to 1.2.0. - [Release notes](https://github.com/actions/first-interaction/releases) - [Commits](https://github.com/actions/first-interaction/compare/v1.1.1...v1.2.0) --- updated-dependencies: - dependency-name: actions/first-interaction dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/greetings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 1678fc5f..cf0f5b2d 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -12,7 +12,7 @@ jobs: greeting: runs-on: ubuntu-latest steps: - - uses: actions/first-interaction@v1.1.1 + - uses: actions/first-interaction@v1.2.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: 'Thank you for raising this issue' From da6f9f2765f1da72e2dccb6b8660552a04a6dc85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Thu, 5 Oct 2023 05:19:16 +0200 Subject: [PATCH 10/84] ci: Update precommit --- .isort.cfg | 2 +- .pre-commit-config.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.isort.cfg b/.isort.cfg index 0c5b431b..f2cc03f4 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -4,4 +4,4 @@ include_trailing_comma=True force_grid_wrap=0 use_parentheses=True line_length=88 -known_third_party = setuptools +known_third_party = imp,setuptools diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 400b56c4..e39ba2df 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: 3.7.0 + rev: 3.10.0 - hooks: - id: check-useless-excludes repo: meta @@ -26,7 +26,7 @@ repos: - hooks: - id: black repo: https://github.com/python/black - rev: 23.7.0 + rev: 23.9.1 - hooks: - id: check-added-large-files - id: check-ast From 0780470046925c051d5fb038229e4b6ceb6e8285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Thu, 5 Oct 2023 05:23:30 +0200 Subject: [PATCH 11/84] build: Use zombie-imp in case python-3.12 is used --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index f2293605..62fe50e4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ requests +zombie-imp From e1417ba3d1ec2bfe44f48400c69a340f4a7a128c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Thu, 5 Oct 2023 05:31:53 +0200 Subject: [PATCH 12/84] style: sort imports --- risuclient/shell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index c29cce3d..925154af 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -28,13 +28,14 @@ import datetime import gettext import hashlib -import imp import json import logging import os import re import tempfile +import imp + # Do not require everyone to use requests try: import requests From 24634695007d307d50178adfbbe3a67a24748cfc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 13:19:14 +0000 Subject: [PATCH 13/84] build(deps): bump stefanzweifel/git-auto-commit-action from 4 to 5 Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 4 to 5. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4...v5) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/refresh-authors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index 3a7f8f6d..2fef1e7d 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -46,7 +46,7 @@ jobs: - name: Commit back the updated files to the repository if: steps.changed-files-specific.outputs.any_changed == 'true' - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: # Optional. Commit message for the created commit. # Defaults to "Apply automatic changes" From dbd50fa6f23aa9fae769b62bc5ba2409d7c5b2e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 13:37:26 +0000 Subject: [PATCH 14/84] build(deps): bump actions/setup-node from 3 to 4 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 19dc0fab..4fa1efae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '14' From aac897bbb448aff54ee2563b41c23aa607532829 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:23:16 +0000 Subject: [PATCH 15/84] build(deps): bump tj-actions/changed-files from 39 to 40 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 39 to 40. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v39...v40) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/refresh-authors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index 2fef1e7d..cf4c94cc 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -24,7 +24,7 @@ jobs: - name: Get changed files in the checks folder id: changed-files-specific - uses: tj-actions/changed-files@v39 + uses: tj-actions/changed-files@v40 with: files: | **/*.py From 97bbf380e4ae875fbcf0fa0b00d9ee7427ff5974 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 13:55:02 +0000 Subject: [PATCH 16/84] build(deps): bump pypa/gh-action-pypi-publish from 1.8.10 to 1.8.11 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.8.10 to 1.8.11. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.10...v1.8.11) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index a11b1c06..bf68b299 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -43,7 +43,7 @@ jobs: RELEASE_VERSION: ${{ steps.branch_name.outputs.SOURCE_TAG }} - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.10 + uses: pypa/gh-action-pypi-publish@v1.8.11 with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} From f58e191816427c6d35a82a9ab1747880afe8c5d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 13:49:11 +0000 Subject: [PATCH 17/84] build(deps): bump actions/first-interaction from 1.2.0 to 1.3.0 Bumps [actions/first-interaction](https://github.com/actions/first-interaction) from 1.2.0 to 1.3.0. - [Release notes](https://github.com/actions/first-interaction/releases) - [Commits](https://github.com/actions/first-interaction/compare/v1.2.0...v1.3.0) --- updated-dependencies: - dependency-name: actions/first-interaction dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/greetings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index cf0f5b2d..1f0943b8 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -12,7 +12,7 @@ jobs: greeting: runs-on: ubuntu-latest steps: - - uses: actions/first-interaction@v1.2.0 + - uses: actions/first-interaction@v1.3.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: 'Thank you for raising this issue' From 1bf6ed9c9342278a862961f659c9b4f4aca47b26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 13:54:34 +0000 Subject: [PATCH 18/84] build(deps): bump actions/setup-python from 4 to 5 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/python-package.yml | 2 +- .github/workflows/python-publish.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 169a94d3..df4fe306 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 - uses: actions/setup-go@v4 with: go-version: '>=1.18' diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 2a70e55b..2e254a44 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index bf68b299..3f951c6d 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4fa1efae..a86c9651 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 - uses: actions/cache@v3 with: path: | From ad0709271171abe75fe1684ebacf6b14becd86eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 13:12:22 +0000 Subject: [PATCH 19/84] build(deps): bump actions/stale from 8 to 9 Bumps [actions/stale](https://github.com/actions/stale) from 8 to 9. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v8...v9) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 997697ec..fe2a5d5c 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,7 +13,7 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v8 + - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed From 391033a4a280ab58e442da325ff5d2f4a5d703a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 13:12:28 +0000 Subject: [PATCH 20/84] build(deps): bump actions/setup-go from 4 to 5 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index df4fe306..8e9abfd6 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -19,7 +19,7 @@ jobs: with: fetch-depth: 0 - uses: actions/setup-python@v5 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: '>=1.18' - uses: actions/cache@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a86c9651..34da6844 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: ">=1.18" From 44ebdc914362ba63db7e4352c9276e9af14c79e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 13:00:57 +0000 Subject: [PATCH 21/84] build(deps): bump github/codeql-action from 2 to 3 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2...v3) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 6 +++--- .github/workflows/shiftleft-analysis.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8d75a262..9886d498 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -44,14 +44,14 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -65,4 +65,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/shiftleft-analysis.yml b/.github/workflows/shiftleft-analysis.yml index e4dd1788..bfacc1fc 100644 --- a/.github/workflows/shiftleft-analysis.yml +++ b/.github/workflows/shiftleft-analysis.yml @@ -37,6 +37,6 @@ jobs: # type: python - name: Upload report - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: sarif_file: reports From 8d71a90e236116070ee8bba01aafa3bcb19a662e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 13:20:14 +0000 Subject: [PATCH 22/84] build(deps): bump tj-actions/changed-files from 40 to 41 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 40 to 41. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v40...v41) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/refresh-authors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index cf4c94cc..99daf0e1 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -24,7 +24,7 @@ jobs: - name: Get changed files in the checks folder id: changed-files-specific - uses: tj-actions/changed-files@v40 + uses: tj-actions/changed-files@v41 with: files: | **/*.py From 0854bd9b433fa18862945aabc42a0e1ca7dd2a01 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 20:25:50 +0000 Subject: [PATCH 23/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: 3.10.0 → v3.13.0](https://github.com/commitizen-tools/commitizen/compare/3.10.0...v3.13.0) - [github.com/pre-commit/mirrors-prettier: v3.0.3 → v4.0.0-alpha.8](https://github.com/pre-commit/mirrors-prettier/compare/v3.0.3...v4.0.0-alpha.8) - [github.com/python/black: 23.9.1 → 23.12.1](https://github.com/python/black/compare/23.9.1...23.12.1) - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.4.0...v4.5.0) - [github.com/scop/pre-commit-shfmt: v3.7.0-1 → v3.7.0-4](https://github.com/scop/pre-commit-shfmt/compare/v3.7.0-1...v3.7.0-4) --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e39ba2df..d928809b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: 3.10.0 + rev: v3.13.0 - hooks: - id: check-useless-excludes repo: meta @@ -14,7 +14,7 @@ repos: - files: \.(css|js|md|markdown|json) id: prettier repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.3 + rev: v4.0.0-alpha.8 - hooks: - id: seed-isort-config repo: https://github.com/asottile/seed-isort-config @@ -26,7 +26,7 @@ repos: - hooks: - id: black repo: https://github.com/python/black - rev: 23.9.1 + rev: 23.12.1 - hooks: - id: check-added-large-files - id: check-ast @@ -55,13 +55,13 @@ repos: - id: check-byte-order-marker - id: check-docstring-first repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 - hooks: - id: flake8 repo: https://github.com/pycqa/flake8 rev: 6.1.0 - repo: https://github.com/scop/pre-commit-shfmt - rev: v3.7.0-1 + rev: v3.7.0-4 hooks: # Choose one of: - id: shfmt # native (requires/installs Go to build) From d58356a5273f223e4973df11b5622bd667eed24a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 20:26:09 +0000 Subject: [PATCH 24/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .isort.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.isort.cfg b/.isort.cfg index f2cc03f4..0c5b431b 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -4,4 +4,4 @@ include_trailing_comma=True force_grid_wrap=0 use_parentheses=True line_length=88 -known_third_party = imp,setuptools +known_third_party = setuptools From ffe0e834cbf20d0e07132fcf0c5eded39d93f2cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Sun, 31 Dec 2023 09:36:08 +0100 Subject: [PATCH 25/84] ci: fix config for isort --- .isort.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.isort.cfg b/.isort.cfg index 0c5b431b..f2cc03f4 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -4,4 +4,4 @@ include_trailing_comma=True force_grid_wrap=0 use_parentheses=True line_length=88 -known_third_party = setuptools +known_third_party = imp,setuptools From 9e6773d27576ed5af4e005752a2c5c37826ca8e4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 20:26:37 +0000 Subject: [PATCH 26/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pycqa/flake8: 6.1.0 → 7.0.0](https://github.com/pycqa/flake8/compare/6.1.0...7.0.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 d928809b..19ba61ef 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -59,7 +59,7 @@ repos: - hooks: - id: flake8 repo: https://github.com/pycqa/flake8 - rev: 6.1.0 + rev: 7.0.0 - repo: https://github.com/scop/pre-commit-shfmt rev: v3.7.0-4 hooks: From 6e8b2c736f8ecb8be1db888c9012751810ecf9f6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 20:27:11 +0000 Subject: [PATCH 27/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .isort.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.isort.cfg b/.isort.cfg index f2cc03f4..0c5b431b 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -4,4 +4,4 @@ include_trailing_comma=True force_grid_wrap=0 use_parentheses=True line_length=88 -known_third_party = imp,setuptools +known_third_party = setuptools From 2b23f9e0b7cec77cb5266c009910c8c096eb0668 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:10:34 +0000 Subject: [PATCH 28/84] build(deps): bump tj-actions/changed-files from 41 to 42 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 41 to 42. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v41...v42) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/refresh-authors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index 99daf0e1..4690490a 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -24,7 +24,7 @@ jobs: - name: Get changed files in the checks folder id: changed-files-specific - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v42 with: files: | **/*.py From 0ef839fc94c4e2619cafaf283ac81c87262b2e92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:10:40 +0000 Subject: [PATCH 29/84] build(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/python-package.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 8e9abfd6..4f6407cb 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: '>=1.18' - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.cache/pre-commit diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 2e254a44..cb25965a 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -29,7 +29,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34da6844..86067648 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - uses: actions/setup-python@v5 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.cache/pre-commit @@ -30,7 +30,7 @@ jobs: restore-keys: | ${{ runner.os }}-precommit- - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt') }} From f58a4aeab9f805904bbfff0ebdb61c7071792392 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:10:48 +0000 Subject: [PATCH 30/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- risuclient/shell.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index 925154af..c29cce3d 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -28,14 +28,13 @@ import datetime import gettext import hashlib +import imp import json import logging import os import re import tempfile -import imp - # Do not require everyone to use requests try: import requests From 250416c7e55066cca1745bb48a76287be223b15c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:10:59 +0000 Subject: [PATCH 31/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- risuclient/shell.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index 925154af..c29cce3d 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -28,14 +28,13 @@ import datetime import gettext import hashlib +import imp import json import logging import os import re import tempfile -import imp - # Do not require everyone to use requests try: import requests From c644c9743508aaae657d0e53ac4f1bfd3636be9b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" Date: Thu, 18 Jan 2024 13:11:22 +0000 Subject: [PATCH 32/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/risuclient/shell.py b/risuclient/shell.py index c29cce3d..a8875763 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -4,6 +4,7 @@ # Description: Runs set of scripts against system or snapshot to # detect common pitfalls in configuration/status # +# Copyright (C) 2024 # Copyright (C) 2017, 2018 Robin Černín # Copyright (C) 2017 Lars Kellogg-Stedman # Copyright (C) 2017-2023 Pablo Iranzo Gómez From 3cfceeab832cb0c9d0d744d4da4fb10f1564ec19 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" Date: Thu, 18 Jan 2024 13:11:36 +0000 Subject: [PATCH 33/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/risuclient/shell.py b/risuclient/shell.py index c29cce3d..a8875763 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -4,6 +4,7 @@ # Description: Runs set of scripts against system or snapshot to # detect common pitfalls in configuration/status # +# Copyright (C) 2024 # Copyright (C) 2017, 2018 Robin Černín # Copyright (C) 2017 Lars Kellogg-Stedman # Copyright (C) 2017-2023 Pablo Iranzo Gómez From 12e85c0d7f56cf52934caafbff123cb68b332deb Mon Sep 17 00:00:00 2001 From: iranzo Date: Thu, 18 Jan 2024 13:13:16 +0000 Subject: [PATCH 34/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/risuclient/shell.py b/risuclient/shell.py index a8875763..0bb1990e 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -8,6 +8,7 @@ # Copyright (C) 2017, 2018 Robin Černín # Copyright (C) 2017 Lars Kellogg-Stedman # Copyright (C) 2017-2023 Pablo Iranzo Gómez +# Copyright (C) 2024 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by From f0cbe58485ded409c3688b1eae0209800150dd1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 13:45:44 +0000 Subject: [PATCH 35/84] build(deps): bump codecov/codecov-action from 3.1.4 to 3.1.5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.4 to 3.1.5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3.1.4...v3.1.5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index cb25965a..83ae6965 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3.1.4 + uses: codecov/codecov-action@v3.1.5 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 00f1234fc67cccac64be78173c07260beda659f5 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" Date: Fri, 26 Jan 2024 13:46:50 +0000 Subject: [PATCH 36/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index 0bb1990e..17df4d57 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -7,7 +7,7 @@ # Copyright (C) 2024 # Copyright (C) 2017, 2018 Robin Černín # Copyright (C) 2017 Lars Kellogg-Stedman -# Copyright (C) 2017-2023 Pablo Iranzo Gómez +# Copyright (C) 2017-2024 Pablo Iranzo Gómez # Copyright (C) 2024 # # This program is free software: you can redistribute it and/or modify From 9b3ccc719140673e93239eb9d32ed3af68b32e82 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 20:23:07 +0000 Subject: [PATCH 37/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/python/black: 23.12.1 → 24.1.1](https://github.com/python/black/compare/23.12.1...24.1.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 19ba61ef..2efb01ab 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,7 +26,7 @@ repos: - hooks: - id: black repo: https://github.com/python/black - rev: 23.12.1 + rev: 24.1.1 - hooks: - id: check-added-large-files - id: check-ast From 8e71e2e8d8207e152751e508b81e8832b9a3b90e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Mon, 29 Jan 2024 21:47:50 +0100 Subject: [PATCH 38/84] ci: Run precommit --- .isort.cfg | 2 +- risuclient/shell.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.isort.cfg b/.isort.cfg index 0c5b431b..f2cc03f4 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -4,4 +4,4 @@ include_trailing_comma=True force_grid_wrap=0 use_parentheses=True line_length=88 -known_third_party = setuptools +known_third_party = imp,setuptools diff --git a/risuclient/shell.py b/risuclient/shell.py index 17df4d57..8a591c7d 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -30,13 +30,14 @@ import datetime import gettext import hashlib -import imp import json import logging import os import re import tempfile +import imp + # Do not require everyone to use requests try: import requests From baef23b89b29a3fff16669cfb6157190511b2319 Mon Sep 17 00:00:00 2001 From: iranzo Date: Mon, 29 Jan 2024 20:48:29 +0000 Subject: [PATCH 39/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index 8a591c7d..937b906a 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -4,9 +4,9 @@ # Description: Runs set of scripts against system or snapshot to # detect common pitfalls in configuration/status # -# Copyright (C) 2024 # Copyright (C) 2017, 2018 Robin Černín # Copyright (C) 2017 Lars Kellogg-Stedman +# Copyright (C) 2024 # Copyright (C) 2017-2024 Pablo Iranzo Gómez # Copyright (C) 2024 # From a9b57ade221d74bc5b4bbb90895ae93a16fa275e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 13:49:45 +0000 Subject: [PATCH 40/84] build(deps): bump codecov/codecov-action from 3.1.5 to 3.1.6 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.5 to 3.1.6. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3.1.5...v3.1.6) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 83ae6965..b6d2957e 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3.1.5 + uses: codecov/codecov-action@v3.1.6 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 7e4b3ebcf047e1208bbeb2d51ae9a723827fa8c7 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 13:49:59 +0000 Subject: [PATCH 41/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .isort.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.isort.cfg b/.isort.cfg index f2cc03f4..0c5b431b 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -4,4 +4,4 @@ include_trailing_comma=True force_grid_wrap=0 use_parentheses=True line_length=88 -known_third_party = imp,setuptools +known_third_party = setuptools From ce297cddf460c33c69b0dd9f6f834bb8c431ef12 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" Date: Wed, 31 Jan 2024 13:50:55 +0000 Subject: [PATCH 42/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 1 - 1 file changed, 1 deletion(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index 937b906a..8e75b974 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -8,7 +8,6 @@ # Copyright (C) 2017 Lars Kellogg-Stedman # Copyright (C) 2024 # Copyright (C) 2017-2024 Pablo Iranzo Gómez -# Copyright (C) 2024 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by From 7d181a711961734848d945f0e15573c051f6d614 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 13:36:06 +0000 Subject: [PATCH 43/84] build(deps): bump codecov/codecov-action from 3.1.6 to 4.0.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.6 to 4.0.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3.1.6...v4.0.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index b6d2957e..547cb508 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3.1.6 + uses: codecov/codecov-action@v4.0.0 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 8d7c337b2f389b00c1a3e5048ba8d36a2c9ed342 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 13:37:26 +0000 Subject: [PATCH 44/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- risuclient/shell.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index 8e75b974..c792d4fb 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -29,14 +29,13 @@ import datetime import gettext import hashlib +import imp import json import logging import os import re import tempfile -import imp - # Do not require everyone to use requests try: import requests From fb66c94fefa83c8deb5e61d9b76461b8fe660e80 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" Date: Thu, 1 Feb 2024 13:38:00 +0000 Subject: [PATCH 45/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/risuclient/shell.py b/risuclient/shell.py index c792d4fb..fe7f73ef 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -4,6 +4,7 @@ # Description: Runs set of scripts against system or snapshot to # detect common pitfalls in configuration/status # +# Copyright (C) 2024 # Copyright (C) 2017, 2018 Robin Černín # Copyright (C) 2017 Lars Kellogg-Stedman # Copyright (C) 2024 From c59cb695c88a0743e976cdda89f5741055549d9c Mon Sep 17 00:00:00 2001 From: iranzo Date: Thu, 1 Feb 2024 13:40:32 +0000 Subject: [PATCH 46/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/risuclient/shell.py b/risuclient/shell.py index fe7f73ef..df324a76 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -9,6 +9,7 @@ # Copyright (C) 2017 Lars Kellogg-Stedman # Copyright (C) 2024 # Copyright (C) 2017-2024 Pablo Iranzo Gómez +# Copyright (C) 2024 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by From bc44040aeaf78cde0d0e23e63255307816f54d18 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:13:59 +0000 Subject: [PATCH 47/84] build(deps): bump codecov/codecov-action from 4.0.0 to 4.0.1 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.0.0 to 4.0.1. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.0.0...v4.0.1) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 547cb508..3931da7d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.0.0 + uses: codecov/codecov-action@v4.0.1 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From b7108340d54757aa421f7dfd6a1266eefc042b39 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 20:13:03 +0000 Subject: [PATCH 48/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.13.0 → v3.14.1](https://github.com/commitizen-tools/commitizen/compare/v3.13.0...v3.14.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 2efb01ab..60c0ffbb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.13.0 + rev: v3.14.1 - hooks: - id: check-useless-excludes repo: meta From 1d79b61d9fe7ac92c86ddf709033cf2ef6787330 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 13:27:34 +0000 Subject: [PATCH 49/84] build(deps): bump pre-commit/action from 3.0.0 to 3.0.1 Bumps [pre-commit/action](https://github.com/pre-commit/action) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](https://github.com/pre-commit/action/compare/v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: pre-commit/action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/pre-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 4f6407cb..18de9f48 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -30,6 +30,6 @@ jobs: restore-keys: | ${{ runner.os }}-precommit- - - uses: pre-commit/action@v3.0.0 + - uses: pre-commit/action@v3.0.1 with: token: ${{ secrets.GITHUB_TOKEN }} From d8317ecaab90e5ee411f1cf6aae75e9505b77e6f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 23:49:08 +0000 Subject: [PATCH 50/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/python/black: 24.1.1 → 24.2.0](https://github.com/python/black/compare/24.1.1...24.2.0) - [github.com/scop/pre-commit-shfmt: v3.7.0-4 → v3.8.0-1](https://github.com/scop/pre-commit-shfmt/compare/v3.7.0-4...v3.8.0-1) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 60c0ffbb..ac242b73 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,7 +26,7 @@ repos: - hooks: - id: black repo: https://github.com/python/black - rev: 24.1.1 + rev: 24.2.0 - hooks: - id: check-added-large-files - id: check-ast @@ -61,7 +61,7 @@ repos: repo: https://github.com/pycqa/flake8 rev: 7.0.0 - repo: https://github.com/scop/pre-commit-shfmt - rev: v3.7.0-4 + rev: v3.8.0-1 hooks: # Choose one of: - id: shfmt # native (requires/installs Go to build) From e7fedc7a4a6f5259df250ca5d077bf50fcf29782 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 00:07:50 +0000 Subject: [PATCH 51/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.14.1 → v3.15.0](https://github.com/commitizen-tools/commitizen/compare/v3.14.1...v3.15.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 ac242b73..48ee722f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.14.1 + rev: v3.15.0 - hooks: - id: check-useless-excludes repo: meta From 9a55427d5521f497e075322a033e40641e2d6d9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:13:11 +0000 Subject: [PATCH 52/84] build(deps): bump codecov/codecov-action from 4.0.1 to 4.0.2 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.0.1 to 4.0.2. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.0.1...v4.0.2) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 3931da7d..5c828b1f 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.0.1 + uses: codecov/codecov-action@v4.0.2 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From e0fb7641c78a7a6e6f554d28e52642b64430513e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 13:04:38 +0000 Subject: [PATCH 53/84] build(deps): bump codecov/codecov-action from 4.0.2 to 4.1.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.0.2 to 4.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.0.2...v4.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5c828b1f..c3c7dcfa 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.0.2 + uses: codecov/codecov-action@v4.1.0 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 1143a14d4f727020cd507a3f80a347d630c07241 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 13:04:42 +0000 Subject: [PATCH 54/84] build(deps): bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.8.11 to 1.8.12. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.11...v1.8.12) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 3f951c6d..56c5fcaf 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -43,7 +43,7 @@ jobs: RELEASE_VERSION: ${{ steps.branch_name.outputs.SOURCE_TAG }} - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.11 + uses: pypa/gh-action-pypi-publish@v1.8.12 with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} From 31298335f2698b8b3ab6e64b01fdf8153d43e69c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 13:08:06 +0000 Subject: [PATCH 55/84] build(deps): bump pypa/gh-action-pypi-publish from 1.8.12 to 1.8.14 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.8.12 to 1.8.14. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.12...v1.8.14) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 56c5fcaf..a9e00e19 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -43,7 +43,7 @@ jobs: RELEASE_VERSION: ${{ steps.branch_name.outputs.SOURCE_TAG }} - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.12 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} From 687ec66617a8e4edc8709934527da16996dfe91b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 00:21:29 +0000 Subject: [PATCH 56/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.15.0 → v3.18.3](https://github.com/commitizen-tools/commitizen/compare/v3.15.0...v3.18.3) --- .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 48ee722f..02bab722 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.15.0 + rev: v3.18.3 - hooks: - id: check-useless-excludes repo: meta From 6bec018625ebc22803f5d8d518fddb11b5b2856b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 13:31:08 +0000 Subject: [PATCH 57/84] build(deps): bump tj-actions/changed-files from 42 to 43 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 42 to 43. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v42...v43) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/refresh-authors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index 4690490a..b0dafd41 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -24,7 +24,7 @@ jobs: - name: Get changed files in the checks folder id: changed-files-specific - uses: tj-actions/changed-files@v42 + uses: tj-actions/changed-files@v43 with: files: | **/*.py From 8e48e78f0b8c12863f1fb52c5db01ec12e2ea581 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:53:44 +0000 Subject: [PATCH 58/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.18.3 → v3.18.4](https://github.com/commitizen-tools/commitizen/compare/v3.18.3...v3.18.4) - [github.com/python/black: 24.2.0 → 24.3.0](https://github.com/python/black/compare/24.2.0...24.3.0) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 02bab722..ce7fa309 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.18.3 + rev: v3.18.4 - hooks: - id: check-useless-excludes repo: meta @@ -26,7 +26,7 @@ repos: - hooks: - id: black repo: https://github.com/python/black - rev: 24.2.0 + rev: 24.3.0 - hooks: - id: check-added-large-files - id: check-ast From d7bd4f1e5e5476ae4405c0795cd6052ebd6748dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 13:08:51 +0000 Subject: [PATCH 59/84] build(deps): bump tj-actions/changed-files from 43 to 44 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 43 to 44. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v43...v44) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/refresh-authors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/refresh-authors.yml b/.github/workflows/refresh-authors.yml index b0dafd41..e8891431 100644 --- a/.github/workflows/refresh-authors.yml +++ b/.github/workflows/refresh-authors.yml @@ -24,7 +24,7 @@ jobs: - name: Get changed files in the checks folder id: changed-files-specific - uses: tj-actions/changed-files@v43 + uses: tj-actions/changed-files@v44 with: files: | **/*.py From 8d95039939e9e6d73809f34a56f2a59a0f0d8987 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 13:08:56 +0000 Subject: [PATCH 60/84] build(deps): bump codecov/codecov-action from 4.1.0 to 4.1.1 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index c3c7dcfa..6e4fe6c8 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.1.0 + uses: codecov/codecov-action@v4.1.1 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From f495c615d2ef643ced7e95f12cf2fe6fac161746 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 21:54:01 +0000 Subject: [PATCH 61/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.18.4 → v3.21.3](https://github.com/commitizen-tools/commitizen/compare/v3.18.4...v3.21.3) --- .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 ce7fa309..14884cc7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.18.4 + rev: v3.21.3 - hooks: - id: check-useless-excludes repo: meta From 828138443766bfbfe4dfda093350cc36994ba43a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 13:45:37 +0000 Subject: [PATCH 62/84] build(deps): bump codecov/codecov-action from 4.1.1 to 4.2.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.1.1 to 4.2.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.1.1...v4.2.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 6e4fe6c8..4c670369 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.1.1 + uses: codecov/codecov-action@v4.2.0 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 4be5c49cbef436725a402a21ad885953d3a48119 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 13:09:31 +0000 Subject: [PATCH 63/84] build(deps): bump codecov/codecov-action from 4.2.0 to 4.3.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.2.0 to 4.3.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.2.0...v4.3.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4c670369..6d2a1196 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.2.0 + uses: codecov/codecov-action@v4.3.0 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 6c023d7985d6edc373a7b0421446ef889b80cf85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 13:57:43 +0000 Subject: [PATCH 64/84] build(deps): bump codecov/codecov-action from 4.3.0 to 4.3.1 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.3.0 to 4.3.1. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.3.0...v4.3.1) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 6d2a1196..1b7ee3e2 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.3.0 + uses: codecov/codecov-action@v4.3.1 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 1e3896770c4c5a334b788fdb656f9a98ffe4e90f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 13:58:03 +0000 Subject: [PATCH 65/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .isort.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.isort.cfg b/.isort.cfg index 0c5b431b..f2cc03f4 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -4,4 +4,4 @@ include_trailing_comma=True force_grid_wrap=0 use_parentheses=True line_length=88 -known_third_party = setuptools +known_third_party = imp,setuptools From c9ccdaefe0973d981db50ff635e57c3c8fbf79df Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 21:46:29 +0000 Subject: [PATCH 66/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.21.3 → v3.25.0](https://github.com/commitizen-tools/commitizen/compare/v3.21.3...v3.25.0) - [github.com/python/black: 24.3.0 → 24.4.2](https://github.com/python/black/compare/24.3.0...24.4.2) - [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v4.6.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.5.0...v4.6.0) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 14884cc7..b409ca3b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.21.3 + rev: v3.25.0 - hooks: - id: check-useless-excludes repo: meta @@ -26,7 +26,7 @@ repos: - hooks: - id: black repo: https://github.com/python/black - rev: 24.3.0 + rev: 24.4.2 - hooks: - id: check-added-large-files - id: check-ast @@ -55,7 +55,7 @@ repos: - id: check-byte-order-marker - id: check-docstring-first repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v4.6.0 - hooks: - id: flake8 repo: https://github.com/pycqa/flake8 From 2c54944f079fd51c94b8921794264d861367d063 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 21:46:43 +0000 Subject: [PATCH 67/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- risuclient/shell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index df324a76..2c263750 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -31,13 +31,14 @@ import datetime import gettext import hashlib -import imp import json import logging import os import re import tempfile +import imp + # Do not require everyone to use requests try: import requests From e3c98df15c9f0b482e201c2cded072579f1be2db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 13:06:46 +0000 Subject: [PATCH 68/84] build(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.3.1 to 4.4.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.3.1...v4.4.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1b7ee3e2..4f956045 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.3.1 + uses: codecov/codecov-action@v4.4.0 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From b4e8baa6654c95ebd9348766234eaa262034a3f1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 13:07:12 +0000 Subject: [PATCH 69/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- risuclient/shell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/risuclient/shell.py b/risuclient/shell.py index df324a76..2c263750 100755 --- a/risuclient/shell.py +++ b/risuclient/shell.py @@ -31,13 +31,14 @@ import datetime import gettext import hashlib -import imp import json import logging import os import re import tempfile +import imp + # Do not require everyone to use requests try: import requests From aec8e5997d5adf5c17ba94f78b468a527abfebb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 May 2024 13:59:27 +0000 Subject: [PATCH 70/84] --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4f956045..04953e80 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.4.0 + uses: codecov/codecov-action@v4.4.1 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 205506d91089b44951c95f6c1e7bacf4b63294ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Jun 2024 13:52:54 +0000 Subject: [PATCH 71/84] build(deps): bump codecov/codecov-action from 4.4.1 to 4.5.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.4.1 to 4.5.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.4.1...v4.5.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 04953e80..9b74415f 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: pytest --cov-report=xml --cov=risuclient --cov=maguiclient - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.4.1 + uses: codecov/codecov-action@v4.5.0 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 391c9ffd8fc21162668b4b41d50aa6bd23e3ee16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 13:27:17 +0000 Subject: [PATCH 72/84] build(deps): bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.8.14 to 1.9.0. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.14...v1.9.0) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index a9e00e19..75f5c544 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -43,7 +43,7 @@ jobs: RELEASE_VERSION: ${{ steps.branch_name.outputs.SOURCE_TAG }} - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.14 + uses: pypa/gh-action-pypi-publish@v1.9.0 with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} From 4ce17566af4b9e8b4003d6dda0acaa21a775b977 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 22:03:38 +0000 Subject: [PATCH 73/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.25.0 → v3.27.0](https://github.com/commitizen-tools/commitizen/compare/v3.25.0...v3.27.0) - [github.com/pycqa/flake8: 7.0.0 → 7.1.0](https://github.com/pycqa/flake8/compare/7.0.0...7.1.0) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b409ca3b..4909558a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.25.0 + rev: v3.27.0 - hooks: - id: check-useless-excludes repo: meta @@ -59,7 +59,7 @@ repos: - hooks: - id: flake8 repo: https://github.com/pycqa/flake8 - rev: 7.0.0 + rev: 7.1.0 - repo: https://github.com/scop/pre-commit-shfmt rev: v3.8.0-1 hooks: From 4888be9b8478c08765aea8b3ad17e95abc2be542 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 18 Jun 2024 18:45:49 +0000 Subject: [PATCH 74/84] fix: requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-7267250 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 62fe50e4..3ac98c31 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ requests zombie-imp +urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability From 47afc1131dfbb2b28c2535040598f6e28c9e7560 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 18:46:07 +0000 Subject: [PATCH 75/84] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3ac98c31..509c2c0b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ requests -zombie-imp urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability +zombie-imp From a3f8868843fb3bce3641cbbe5afc0004e1c6c6a6 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 18 Jun 2024 21:28:54 +0000 Subject: [PATCH 76/84] fix: test-requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-7267250 --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index 4b3108a9..f87744ac 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -8,3 +8,4 @@ PyYAML requests setuptools>=30 tox +urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability From 39de13e639ff3db302ce2b4767962f125db2b329 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 9 Jul 2024 16:01:31 +0000 Subject: [PATCH 77/84] fix: test-requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-ZIPP-7430899 --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index f87744ac..a5e65b38 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -9,3 +9,4 @@ requests setuptools>=30 tox urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability +zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability From 6cad7641be8c83bfa7c31b723624441b6775af43 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 15 Jul 2024 21:13:25 +0000 Subject: [PATCH 78/84] fix: test-requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-SETUPTOOLS-7448482 --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index f87744ac..85e463d5 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -6,6 +6,6 @@ pytest>=3.2.0 # MIT pytest-cov>=2.5.1 # MIT PyYAML requests -setuptools>=30 +setuptools>=70.0.0 tox urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability From 5c949e322068c24adbddcfc561156c451c2bb5ac Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 22:10:08 +0000 Subject: [PATCH 79/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.27.0 → v3.28.0](https://github.com/commitizen-tools/commitizen/compare/v3.27.0...v3.28.0) - [github.com/asottile/blacken-docs: 1.16.0 → 1.18.0](https://github.com/asottile/blacken-docs/compare/1.16.0...1.18.0) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4909558a..eb2bc104 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.27.0 + rev: v3.28.0 - hooks: - id: check-useless-excludes repo: meta @@ -76,7 +76,7 @@ repos: - hooks: - id: blacken-docs repo: https://github.com/asottile/blacken-docs - rev: 1.16.0 + rev: 1.18.0 # - repo: https://github.com/asottile/pyupgrade # rev: v2.38.0 From f0aa919a4a1aec0092380760bfb85c6fdbda2db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Mon, 5 Aug 2024 16:52:34 +0200 Subject: [PATCH 80/84] Detect linux16 used in some grub configurations --- .../plugins/core/informative/linux16.sh | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 risuclient/plugins/core/informative/linux16.sh diff --git a/risuclient/plugins/core/informative/linux16.sh b/risuclient/plugins/core/informative/linux16.sh new file mode 100755 index 00000000..5470842a --- /dev/null +++ b/risuclient/plugins/core/informative/linux16.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +# Copyright (C) 2023 Pablo Iranzo Gómez + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# long_name: Detects if system is using linux16 and/or initd16 instead of regular descriptions +# description: Reports if system is using linux16 or initrd16 +# priority: 100 +# kb: + +# Load common functions +[[ -f "${RISU_BASE}/common-functions.sh" ]] && . "${RISU_BASE}/common-functions.sh" + +MYFILE="${RISU_ROOT}/etc/grub2.cfg" + +is_required_file ${MYFILE} + +RC=${RC_OKAY} + +if is_lineinfile ^linux16.* ${MYFILE}; then + RC=${RC_INFO} + echo "linux16 entry detected in ${MYFILE}" >&2 +fi +if is_lineinfile ^initrd16.* ${MYFILE}; then + RC=${RC_INFO} + echo "initrd16 entry detected in ${MYFILE}" >&2 +fi +exit ${RC} From 66fbefa4bf9f1c35e5cec8200ffdb8b230263877 Mon Sep 17 00:00:00 2001 From: iranzo Date: Mon, 5 Aug 2024 14:53:33 +0000 Subject: [PATCH 81/84] [skip ci] Autoupdate (C) on script change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- risuclient/plugins/core/informative/linux16.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/risuclient/plugins/core/informative/linux16.sh b/risuclient/plugins/core/informative/linux16.sh index 5470842a..ba5c7c4d 100755 --- a/risuclient/plugins/core/informative/linux16.sh +++ b/risuclient/plugins/core/informative/linux16.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (C) 2023 Pablo Iranzo Gómez +# Copyright (C) 2024 Pablo Iranzo Gómez # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by From 6347613ecc8d5297d78d3775ac9a646681e40e9a Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 5 Aug 2024 16:30:50 +0000 Subject: [PATCH 82/84] fix: test-requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-ZIPP-7430899 From 523f79478a8e8438d75f392b63806c8ecea5bc19 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 5 Aug 2024 22:44:30 +0000 Subject: [PATCH 83/84] fix: test-requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-ZIPP-7430899 From cc9f0ed81885e5df23525408c036e1f14b00170b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 22:05:43 +0000 Subject: [PATCH 84/84] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v3.28.0 → v3.29.0](https://github.com/commitizen-tools/commitizen/compare/v3.28.0...v3.29.0) - [github.com/python/black: 24.4.2 → 24.8.0](https://github.com/python/black/compare/24.4.2...24.8.0) - [github.com/pycqa/flake8: 7.1.0 → 7.1.1](https://github.com/pycqa/flake8/compare/7.1.0...7.1.1) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index eb2bc104..ae23aa08 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: stages: - commit-msg repo: https://github.com/commitizen-tools/commitizen - rev: v3.28.0 + rev: v3.29.0 - hooks: - id: check-useless-excludes repo: meta @@ -26,7 +26,7 @@ repos: - hooks: - id: black repo: https://github.com/python/black - rev: 24.4.2 + rev: 24.8.0 - hooks: - id: check-added-large-files - id: check-ast @@ -59,7 +59,7 @@ repos: - hooks: - id: flake8 repo: https://github.com/pycqa/flake8 - rev: 7.1.0 + rev: 7.1.1 - repo: https://github.com/scop/pre-commit-shfmt rev: v3.8.0-1 hooks: