From accd80c99e0eb01aeeb79b6b089a1551eaf0ece1 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Fri, 7 Jul 2023 21:12:23 +0200 Subject: [PATCH 1/4] Fix #1377 --- filer/models/foldermodels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filer/models/foldermodels.py b/filer/models/foldermodels.py index a9c1e851e..54fa9c5a4 100644 --- a/filer/models/foldermodels.py +++ b/filer/models/foldermodels.py @@ -6,7 +6,7 @@ from django.urls import reverse from django.utils.functional import cached_property from django.utils.html import format_html, format_html_join -from django.utils.translation import gettext as _ +from django.utils.translation import gettext_lazy as _ from .. import settings as filer_settings from . import mixins From 3a9d5c7ed8103a05648d87fa1e88552f76d8c310 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Thu, 22 Aug 2024 21:00:52 +0200 Subject: [PATCH 2/4] Bump to 3.2.0 --- CHANGELOG.rst | 12 ++++++++++++ filer/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 55b601400..2ddb19915 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +3.2.0 (2024-08-23) +================== + +* feat: Add cache for permission checks by @fsbraun in https://github.com/django-cms/django-filer/pull/1486 +* fix: Reduce number of thumbnails created for admin, avoid admin thumbnails for svg files by @fsbraun in https://github.com/django-cms/django-filer/pull/1490 +* fix: Allow ``Image.MAX_IMAGE_PIXELS`` to be ``None`` by @fsbraun in https://github.com/django-cms/django-filer/pull/1475 +* docs: Update extending_filer.rst by @DmytroLitvinov in https://github.com/django-cms/django-filer/pull/1488 + +**New contributor:** + +* @DmytroLitvinov made their first contribution in https://github.com/django-cms/django-filer/pull/1488 + 3.1.4 (2024-07-15) ================== diff --git a/filer/__init__.py b/filer/__init__.py index 7bd0b5d4e..9208292c2 100644 --- a/filer/__init__.py +++ b/filer/__init__.py @@ -13,4 +13,4 @@ 8. Publish the release and it will automatically release to pypi """ -__version__ = '3.1.4' +__version__ = '3.2.0' From 4e67e6c685faf0cdd4d383b9df10a8274cf71f9e Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Wed, 18 Sep 2024 08:08:06 +0200 Subject: [PATCH 3/4] Bump version --- CHANGELOG.rst | 12 +++++++++++- filer/__init__.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5471da328..3f5cc3b25 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +3.2.3 (2024-09-18) +================== + +* fix: Use TypeVar for type-hinting of the user parameter by @payamnj in https://github.com/django-cms/django-filer/pull/1496 + +** New contributor** + +* @payamnj made their first contribution in https://github.com/django-cms/django-filer/pull/1496 + + 3.2.2 (2024-09-09) ================== @@ -744,7 +754,7 @@ CHANGELOG 0.5.4a1 -======== +======= * Adds description field. diff --git a/filer/__init__.py b/filer/__init__.py index d95c54b30..7dca869a7 100644 --- a/filer/__init__.py +++ b/filer/__init__.py @@ -13,4 +13,4 @@ 8. Publish the release and it will automatically release to pypi """ -__version__ = '3.2.2' +__version__ = '3.2.3' From 5ec08191c0760a5d28f69f32ab3f5ce5166112f3 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Wed, 18 Sep 2024 08:12:14 +0200 Subject: [PATCH 4/4] Fix isort issue --- filer/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filer/cache.py b/filer/cache.py index ee41a0fb6..b5d4fc441 100644 --- a/filer/cache.py +++ b/filer/cache.py @@ -1,7 +1,7 @@ import typing -from django.db.models import Model from django.core.cache import cache +from django.db.models import Model UserModel = typing.TypeVar('UserModel', bound=Model)