From 72d9632f2da86418b5d6a41f57e65ae5940ffc84 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Thu, 30 Jun 2022 20:18:53 +0100 Subject: [PATCH 1/4] Add code owners and reconfigure Renovate (#9) --- .github/workflows/ci-branch-main.yml | 1 + .github/workflows/ci-development.yml | 1 + .github/workflows/ci-pull-request.yml | 1 + CODEOWNERS | 1 + renovate.json | 12 +++++++----- 5 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 CODEOWNERS diff --git a/.github/workflows/ci-branch-main.yml b/.github/workflows/ci-branch-main.yml index 6040e95..194d4a6 100644 --- a/.github/workflows/ci-branch-main.yml +++ b/.github/workflows/ci-branch-main.yml @@ -10,6 +10,7 @@ on: - 'CHANGELOG.md' - '.gitignore' - 'renovate.json' + - 'CODEOWNERS' jobs: lint: diff --git a/.github/workflows/ci-development.yml b/.github/workflows/ci-development.yml index 382f942..7a2b518 100644 --- a/.github/workflows/ci-development.yml +++ b/.github/workflows/ci-development.yml @@ -10,6 +10,7 @@ on: - 'CHANGELOG.md' - '.gitignore' - 'renovate.json' + - 'CODEOWNERS' jobs: skip_duplicate: diff --git a/.github/workflows/ci-pull-request.yml b/.github/workflows/ci-pull-request.yml index c4728b2..fea92c5 100644 --- a/.github/workflows/ci-pull-request.yml +++ b/.github/workflows/ci-pull-request.yml @@ -7,6 +7,7 @@ on: - 'CHANGELOG.md' - '.gitignore' - 'renovate.json' + - 'CODEOWNERS' jobs: analyze: diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..0d35f6e --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @luketainton \ No newline at end of file diff --git a/renovate.json b/renovate.json index 8b6dd1e..cfd2ee3 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,8 @@ { - "extends": [ - "config:base" - ] - } - \ No newline at end of file + "labels": ["dependencies"], + "assignAutomerge": true, + "assigneesFromCodeOwners": true, + "extends": [ + "config:base" + ] +} From 8f1a82f113df8b1cbe08371f3e4495e36a6353ec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 30 Jun 2022 20:25:31 +0100 Subject: [PATCH 2/4] Update dependency requests to v2.28.1 (#8) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cad61e9..679ec2d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ certifi==2022.6.15 charset-normalizer==2.0.12 idna==3.3 -requests==2.28.0 +requests==2.28.1 tabulate==0.8.10 urllib3==1.26.9 From 50b7bfefbbc931fd452547fff490ba7231e07649 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 30 Jun 2022 20:29:27 +0100 Subject: [PATCH 3/4] Update dependency charset-normalizer to v2.1.0 (#5) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 679ec2d..7c4e39c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ certifi==2022.6.15 -charset-normalizer==2.0.12 +charset-normalizer==2.1.0 idna==3.3 requests==2.28.1 tabulate==0.8.10 From 88cd116781ca21060325e29a0184a223c99a7f4d Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Thu, 30 Jun 2022 20:51:25 +0100 Subject: [PATCH 4/4] Bump version to 1.2 (#10) --- CHANGELOG.md | 4 ++++ app/_version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6cc0c3..75ab3e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.2 +- Dependency: Update charset-normalizer ~~2.0.12~~ to 2.1.0 +- Dependency: Update requests ~~2.28.0~~ to 2.28.1 + # 1.1 - Added checks to ensure API responses are as expected diff --git a/app/_version.py b/app/_version.py index 71a2ee0..bb07901 100644 --- a/app/_version.py +++ b/app/_version.py @@ -2,4 +2,4 @@ """MODULE: Specifies app version.""" -VERSION = "1.1" +VERSION = "1.2"