summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/django
AgeCommit message (Collapse)Author
2026-05-05Merge staging-next into stagingnixpkgs-ci[bot]
2026-05-05python3Packages.django_6: 6.0.4 -> 6.0.5Martin Weinelt
https://docs.djangoproject.com/en/6.0/releases/6.0.5/ https://www.djangoproject.com/weblog/2026/may/05/security-releases/ Fixes: CVE-2026-576, CVE-2026-35192, CVE-2026-6907
2026-05-05python3Packages.django_5: 5.2.13 -> 5.2.14Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.14/ https://www.djangoproject.com/weblog/2026/may/05/security-releases/ Fixes: CVE-2026-576, CVE-2026-35192, CVE-2026-6907,
2026-04-07Merge master into staging-nextnixpkgs-ci[bot]
2026-04-07python3Packages.django_5: 5.2.12 -> 5.2.13Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.13/ https://www.djangoproject.com/weblog/2026/apr/07/security-releases/ Fixes: CVE-2026-3902, CVE-2026-4277, CVE-2026-4292, CVE-2026-33033, CVE-2026-33034
2026-04-07python3Packages.django_6: 6.0.3 -> 6.0.4Martin Weinelt
https://docs.djangoproject.com/en/6.0/releases/6.0.4/ https://www.djangoproject.com/weblog/2026/apr/07/security-releases/ Fixes: CVE-2026-3902, CVE-2026-4277, CVE-2026-4292, CVE-2026-33033, CVE-2026-33034
2026-03-30python3Packages.django_4: dropMartin Weinelt
Removing due to it becoming a leaf package right before it's EOL on April 30th. Closes: #490868
2026-03-05Merge staging-next into stagingnixpkgs-ci[bot]
2026-03-04python312Packages.django_4: 4.2.28 -> 4.2.29 (#496374)Martin Weinelt
2026-03-04python3Packages.django_5: 5.2.11 -> 5.2.12Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.12/ https://www.djangoproject.com/weblog/2026/mar/03/security-releases/ Fixes: CVE-2026-25673, CVE-2026-25674
2026-03-03python3Packages.django_6: 6.0.2 -> 6.0.3Martin Weinelt
https://docs.djangoproject.com/en/6.0/releases/6.0.3/ https://www.djangoproject.com/weblog/2026/mar/03/security-releases/ Fixes: CVE-2026-25673, CVE-2026-25674
2026-03-03python312Packages.django_4: 4.2.28 -> 4.2.29Martin Weinelt
https://docs.djangoproject.com/en/4.2/releases/4.2.29/ https://www.djangoproject.com/weblog/2026/mar/03/security-releases/ Fixes: CVE-2026-25673, CVE-2026-25674
2026-02-04python3Packages.django_6: 6.0.1 -> 6.0.2; python3Packages.django_5: 5.2.9 -> ↵Martin Weinelt
5.2.11 (#486801)
2026-02-04python3Packages.django_5: 5.2.9 -> 5.2.11Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.10/ https://docs.djangoproject.com/en/5.2/releases/5.2.11/ https://www.djangoproject.com/weblog/2026/feb/03/security-releases/ Fixes: CVE-2025-13473, CVE-2025-14550, CVE-2026-1207, CVE-2026-1285, CVE-2026-1287, CVE-2026-1312
2026-02-04python3Packages.django_5: reorganize patchesMartin Weinelt
2026-02-04python3Packages.django_6: 6.0.1 -> 6.0.2Martin Weinelt
https://docs.djangoproject.com/en/6.0/releases/6.0.2/ https://www.djangoproject.com/weblog/2026/feb/03/security-releases/ Fixes: CVE-2025-13473, CVE-2025-14550, CVE-2026-1207, CVE-2026-1285, CVE-2026-1287, CVE-2026-1312
2026-02-03Merge remote-tracking branch 'upstream/staging-next' into stagingMichael Daniels
2026-02-03python3Packages.django_4: 4.2.27 -> 4.2.28Martin Weinelt
https://docs.djangoproject.com/en/4.2/releases/4.2.28/ https://www.djangoproject.com/weblog/2026/feb/03/security-releases/ Fixes: CVE-2025-13473, CVE-2025-14550, CVE-2026-1207, CVE-2026-1285, CVE-2026-1287, CVE-2026-1312
2026-02-01python3Packages.django_6: init at 6.0.1Martin Weinelt
2026-01-18python3Packages.django_5_2: turn into aliasRobert Schütz
2026-01-17python3Packages.django_4: remove superfluous pythonOlderGutyina Gergő
2026-01-15tree-wide: fetchgit, fetchFromGitHub, fetchFromGitLab, fetchFromGitea, ↵Gaël James
fetchFromBitbucket, fetchFromSourcehut: use `tag =` instead of `rev = refs/tags/...`
2026-01-12treewide: change 'format = "pyproject";' to 'pyproject = true;'Michael Daniels
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
2026-01-11treewide: remove superfluous disabledRobert Schütz
There is no need to disable Python packages for Python versions that are no longer in Nixpkgs. This change was generated using the following script: pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$' for f in $(find -name '*.nix'); do grep -q "$pattern" "$f" || continue sed -i "/$pattern/d" "$f" if [ $(grep -c pythonOlder "$f") == 1 ]; then sed -i '/^\s*pythonOlder,\s*$/d' "$f" fi nixfmt "$f" done
2025-12-18python3Package.django_4: disable on 3.13 and newerMartin Weinelt
Django 4.2.x does not support Python 3.13 and newer.
2025-12-18python3Packages.django: fix 3.13.10/3.14.1 compatMartin Weinelt
2025-12-10Merge branch 'staging-next' into stagingWolfgang Walther
2025-12-10treewide: clean up 'meta = with' patternIhar Hrachyshka
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-03Merge staging-next into stagingnixpkgs-ci[bot]
2025-12-02python3Packages.django_4: 4.2.26 -> 4.2.27 (#467186)Martin Weinelt
2025-12-02python3Packages.django_4: 4.2.26 -> 4.2.27Martin Weinelt
https://docs.djangoproject.com/en/4.2/releases/4.2.27/ https://www.djangoproject.com/weblog/2025/dec/02/security-releases/ Fixes: CVE-2025-13372, CVE-2025-64460
2025-12-02python3Packages.django_5: 5.2.8 -> 5.2.9Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.9/ https://www.djangoproject.com/weblog/2025/dec/02/security-releases/ Fixes: CVE-2025-13372, CVE-2025-64460
2025-12-01Merge staging-next into stagingnixpkgs-ci[bot]
2025-11-30python3Packages.django_5_1: removeMartin Weinelt
EOL in 2025-12 so not supportable throughout the 25.11 release cycle. Closes: #448536
2025-11-29Merge branch 'staging-next' into stagingRobert Schütz
2025-11-27treewide: use lib.concatAttrValues to obtain all optional-dependenciesRobert Schütz
2025-11-25python314Packages.django_4: disableMartin Weinelt
2025-11-05Merge master into staging-nextnixpkgs-ci[bot]
2025-11-05python3Packages.django_5_2: 5.2.7 -> 5.2.8 (#458852)Martin Weinelt
2025-11-05python3Packages.django_4: 4.2.25 -> 4.2.26Martin Weinelt
https://docs.djangoproject.com/en/4.2/releases/4.2.26/ https://www.djangoproject.com/weblog/2025/nov/05/security-releases/ Fixes: CVE-2025-64458, CVE-2025-64459
2025-11-05python3Packages.django_5_1: 5.1.13 -> 5.1.14Martin Weinelt
https://docs.djangoproject.com/en/5.1/releases/5.1.14/ https://www.djangoproject.com/weblog/2025/nov/05/security-releases/ Fixes: CVE-2025-64458, CVE-2025-64459
2025-11-05python3Packages.django_5_2: 5.2.7 -> 5.2.8Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.8/ https://www.djangoproject.com/weblog/2025/nov/05/security-releases/ Fixes: CVE-2025-64458, CVE-2025-64459
2025-10-03python3Packages.django_4: 4.2.24 -> 4.2.25 (#448019)Martin Weinelt
2025-10-02python3Packages.django_4: 4.2.24 -> 4.2.25Martin Weinelt
https://docs.djangoproject.com/en/4.2/releases/4.2.25/ https://www.djangoproject.com/weblog/2025/oct/01/security-releases/ Fixes: CVE-2025-59681, CVE-2025-59682
2025-10-02python3Packages.django_5_1: 5.1.12 -> 5.1.13Martin Weinelt
https://docs.djangoproject.com/en/5.1/releases/5.1.13/ https://www.djangoproject.com/weblog/2025/oct/01/security-releases/ Fixes: CVE-2025-59681, CVE-2025-59682
2025-10-02python3Packages.django_5_2: 5.2.6 -> 5.2.7Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.7/ https://www.djangoproject.com/weblog/2025/oct/01/security-releases/ Fixes: CVE-2025-59681, CVE-2025-59682
2025-09-04python3Packages.django_4: 4.2.23 -> 4.2.24 (#439976)Martin Weinelt
2025-09-03python3Packages.django_4: 4.2.23 -> 4.2.24Martin Weinelt
https://docs.djangoproject.com/en/4.2/releases/4.2.24/ https://www.djangoproject.com/weblog/2025/sep/03/security-releases/ Fixes: CVE-2025-57833
2025-09-03python3Packages.django_5_2: 5.2.5 -> 5.2.6Martin Weinelt
https://docs.djangoproject.com/en/5.2/releases/5.2.6/ https://www.djangoproject.com/weblog/2025/sep/03/security-releases/ Fixes: CVE-2025-57833
2025-09-03python3Packages.django_5_1: 5.1.11 -> 5.1.12Martin Weinelt
https://docs.djangoproject.com/en/5.1/releases/5.1.12/ https://www.djangoproject.com/weblog/2025/sep/03/security-releases/ Fixes: CVE-2025-57833