Compare commits

..

No commits in common. "1d4f070867d02f15722f5e5880a2c61c907cc88b" and "69638b6b6d6985bac75097af9e8383c9f0120cda" have entirely different histories.

4 changed files with 3 additions and 6 deletions

View file

@ -1,9 +1,6 @@
Changelog
=========
* :release:`0.14.3 <2023-07-22>`
* :bug:`-` fix missing permission check on disk space detail view
* :release:`0.14.2 <2023-07-22>`
* :bug:`-` fix division by zero for hosting packages without disk space allocation

View file

@ -1,4 +1,4 @@
# import celery_app to initialize it
from gnuviechadmin.celery import app as celery_app # NOQA
__version__ = "0.14.3"
__version__ = "0.14.2"

View file

@ -321,7 +321,7 @@ class UploadCustomerPackageDiskUsage(APIView):
return Response("Accepted", status=http.HTTPStatus.ACCEPTED)
class CustomerHostingPackageDiskUsageDetails(StaffOrSelfLoginRequiredMixin, DetailView):
class CustomerHostingPackageDiskUsageDetails(DetailView):
template_name_suffix = "_disk_usage_details"
model = CustomerHostingPackage
pk_url_kwarg = "package"

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "gva"
version = "0.14.3"
version = "0.14.2"
description = "gnuviechadmin web interface"
authors = ["Jan Dittberner <jan@dittberner.info>"]
license = "AGPL-3+"