Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 5 additions & 3 deletions tcms_github_marketplace/docker.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright (c) 2022-2024 Alexander Todorov <atodorov@MrSenko.com>

# Licensed under the GPL 3.0: https://www.gnu.org/licenses/gpl-3.0.txt
# Copyright (c) 2022-2026 Alexander Todorov <atodorov@MrSenko.com>
#
# 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
Expand Down Expand Up @@ -42,6 +43,7 @@ def name(self):
.replace(".", "_")
.replace("+", "_")
.replace("-", "_")
.replace("__", "_")
.lower()
)

Expand Down