From 010d9ef1d373837e7bd034ede017f4c1c00cf083 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Tue, 23 Jun 2026 15:46:22 +0300 Subject: [PATCH 1/2] quay.io doesn't apparently like 2 consequtive underscores --- tcms_github_marketplace/docker.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tcms_github_marketplace/docker.py b/tcms_github_marketplace/docker.py index 90ac300..c86517c 100644 --- a/tcms_github_marketplace/docker.py +++ b/tcms_github_marketplace/docker.py @@ -1,6 +1,7 @@ -# Copyright (c) 2022-2024 Alexander Todorov - -# Licensed under the GPL 3.0: https://www.gnu.org/licenses/gpl-3.0.txt +# Copyright (c) 2022-2026 Alexander Todorov +# +# Licensed under GNU Affero General Public License v3 or later (AGPLv3+) +# https://www.gnu.org/licenses/agpl-3.0.html from django.conf import settings from .quay import QuayApiClient @@ -42,6 +43,7 @@ def name(self): .replace(".", "_") .replace("+", "_") .replace("-", "_") + .replace("__", "_") .lower() ) From c3eff8dfe5927737f914b9e6f04f474363271e12 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Tue, 23 Jun 2026 15:54:58 +0300 Subject: [PATCH 2/2] Changelog for v4.8.1 --- README.rst | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4c30da1..b7bdad7 100644 --- a/README.rst +++ b/README.rst @@ -65,6 +65,12 @@ Product configuration Changelog --------- +v4.8.1 (23 Jun 2026) +~~~~~~~~~~~~~~~~~~~~ + +- Convert 2 consequtive underscores into 1 for Quay.io robot accounts + + v4.8.0 (17 Jun 2026) ~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 260c332..e82f375 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_install_requires(path): setup( name="kiwitcms-github-marketplace", - version="4.8.0", + version="4.8.1", description="GitHub Marketplace integration for Kiwi TCMS", long_description=get_long_description(), author="Kiwi TCMS",