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
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.19.x]
node-version: [24.2.x]

steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
24
21 changes: 21 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@
CHANGELOG
=========

3.3.2 (2025-09-01)
==================

* fix: add filename length safety check with random suffix by @Baraff24 in https://github.com/django-cms/django-filer/pull/1515
* fix: Remove user from autocomplete fields if (swapped) user model does not have search fields by @fsbraun in https://github.com/django-cms/django-filer/pull/1517
* Fix: Include Private Storage in Orphan File Scanning for filer_check Command by @Baraff24 in https://github.com/django-cms/django-filer/pull/1518
* fix: Relect template block structure of Django 5.2+ by @fsbraun in https://github.com/django-cms/django-filer/pull/1523
* chore: Added Full Persian (Farsi) Translate by @dimacodev in https://github.com/django-cms/django-filer/pull/1524
* fix: Update directory_table_list.html by @AliAkbarSobhanpoor in https://github.com/django-cms/django-filer/pull/1528
* fix: Avoid locale-dependent ratio by @albanbochsler in https://github.com/django-cms/django-filer/pull/1536
* fix: docs GitHub action built by @fsbraun in https://github.com/django-cms/django-filer/pull/1540
* fix: Folder permission cache update sometimes raised TypeError by @fsbraun in https://github.com/django-cms/django-filer/pull/1539
* fix: Failed to install submodules of filer by @fsbraun in https://github.com/django-cms/django-filer/pull/1544

**New Contributors**

* @Baraff24 made their first contribution in https://github.com/django-cms/django-filer/pull/1515
* @dimacodev made their first contribution in https://github.com/django-cms/django-filer/pull/1524
* @AliAkbarSobhanpoor made their first contribution in https://github.com/django-cms/django-filer/pull/1528
* @albanbochsler made their first contribution in https://github.com/django-cms/django-filer/pull/1536

3.3.1 (2024-12-07)
==================

Expand Down
2 changes: 1 addition & 1 deletion filer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
8. Publish the release and it will automatically release to pypi
"""

__version__ = '3.3.1'
__version__ = '3.3.2'
2 changes: 1 addition & 1 deletion filer/static/filer/css/admin_filer.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion filer/static/filer/css/maps/admin_filer.css.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"devDependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-autoprefixer": "^8.0.0",
"gulp-iconfont": "^11.0.1",
"gulp-iconfont-css": "^3.0.0",
"gulp-jscs": "^4.1.0",
Expand All @@ -12,13 +12,13 @@
"gulp-sourcemaps": "^2.6.5",
"gulp-sync": "^0.1.4",
"gulp-util": "^3.0.6",
"jasmine-core": "^2.3.2",
"jasmine-core": "^5.9.0",
"jshint-stylish": "^2.2.1",
"karma": "^0.13.22",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^0.1.0",
"karma-jasmine": "^0.3.8",
"karma-html2js-preprocessor": "^1.1.0",
"karma-jasmine": "^5.1.0",
"karma-json-fixtures-preprocessor": "^0.0.6",
"request": "^2.88.2",
"sass": "^1.63.4"
Expand Down
Loading