summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/django (follow)
Commit message (Expand)AuthorAgeFilesLines
* python313Packages.django_5: 5.1.7 -> 5.1.8•••https://docs.djangoproject.com/en/5.1/releases/5.1.8/ https://www.djangoproject.com/weblog/2025/apr/02/security-releases/ Fixes: CVE-2025-27556 Martin Weinelt2025-04-022-23/+2
* python313Packages.django_4: 4.2.19 -> 4.2.20•••https://docs.djangoproject.com/en/4.2/releases/4.2.20/ https://www.djangoproject.com/weblog/2025/mar/06/security-releases Fixes: CVE-2025-26699 Martin Weinelt2025-03-111-2/+2
* python313Packages.django_5: fix django-import-export and indirectly glitchtipSandro Jäckel2025-03-112-0/+21
* python313Packages.django_5: 5.1.6 -> 5.1.7•••https://docs.djangoproject.com/en/5.1/releases/5.1.7/ https://www.djangoproject.com/weblog/2025/mar/06/security-releases/ Fixes: CVE-2025-26699 Martin Weinelt2025-03-081-2/+2
* treewide: fix typos in comments•••Made with ```shell git restore . fd '\.nix$' pkgs/ --type f -j1 -x bash -xc "$(cat <<"EOF" typos --no-check-filenames --write-changes "$1" git diff --exit-code "$1" && exit #( git diff "$1" | grep -qE "^\+ +[^# ]") && git restore "$1" count1="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> ' | wc -l )" count2="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> (<span style="color:#f8f8f2;"> *</span>)?<span style="color:#75715e;">.*</span>$' | wc -l )" [[ $count1 -ne $count2 ]] && git restore "$1" EOF )" -- {} ``` and filtered with `GIT_DIFF_OPTS='--unified=15' git -c interactive.singleKey=true add --patch` I initially tried using the tree-sitter cli, python bindings and even ast-grep through various means, but this is what I ended up with. Peder Bergebakken Sundt2025-02-241-1/+1
* treewide: replace substituteAll with replaceVarsWolfgang Walther2025-02-103-19/+15
* python3Packages.django_{4,5}: backport patch fixing builds on bcachefsK9002025-02-102-0/+16
* Merge staging-next into stagingnixpkgs-ci[bot]2025-02-071-2/+2
|\
| * python313Packages.django_5: 5.1.5 -> 5.1.6•••https://docs.djangoproject.com/en/5.1/releases/5.1.6/ Martin Weinelt2025-02-061-2/+2
* | python313Packages.django_4: 4.2.18 -> 4.2.19•••https://docs.djangoproject.com/en/4.2/releases/4.2.19/ Martin Weinelt2025-02-071-2/+2
|/
* Merge remote-tracking branch 'origin/staging-next' into stagingK9002025-01-161-2/+2
|\
| * python313Packages.django_5: 5.1.4 -> 5.1.5•••https://docs.djangoproject.com/en/5.1/releases/5.1.5/ https://www.djangoproject.com/weblog/2025/jan/14/security-releases/ Fixes: CVE-2024-56374 Martin Weinelt2025-01-141-2/+2
* | python313Packages.django_4: 4.2.17 -> 4.2.18•••https://docs.djangoproject.com/en/4.2/releases/4.2.18/ https://www.djangoproject.com/weblog/2025/jan/14/security-releases/ Fixes: CVE-2024-56374 Martin Weinelt2025-01-141-2/+2
|/
* Merge master into staging-nextgithub-actions[bot]2024-12-072-2/+8
|\
| * python3Packages.django: fix build on 32 bit platforms (#353399)Arne Keller2024-12-062-2/+8
| |\
| | * python3Packages.django: fix build on 32 bit platformsGuillaume Girol2024-11-032-2/+8
* | | Merge master into staging-nextgithub-actions[bot]2024-12-051-2/+2
|\| |
| * | python3Packages.django_5: 5.1.3 -> 5.1.4•••Fixes CVE-2024-53907 and CVE-2024-53908. Changes: https://docs.djangoproject.com/en/dev/releases/5.1.4/ Thomas Gerbet2024-12-041-2/+2
* | | python3Packages.django_4: 4.2.16-> 4.2.17•••Fixes CVE-2024-53907 and CVE-2024-53908. Changes: https://docs.djangoproject.com/en/dev/releases/4.2.17/ Thomas Gerbet2024-12-041-2/+2
* | | python313Packages.django_4: disable failing testMartin Weinelt2024-11-181-0/+7
|/ /
* / python312Packages.django_5: 5.1.2 -> 5.1.3•••https://docs.djangoproject.com/en/5.1/releases/5.1.3/ Martin Weinelt2024-11-051-2/+2
|/
* python312Packages.django_5: 5.1.1 -> 5.1.2•••https://docs.djangoproject.com/en/5.1/releases/5.1.2/ Martin Weinelt2024-10-101-2/+2
* treewide: replace passthru.optional-dependencies with optional-dependenciesRobert Schütz2024-09-291-2/+2
* treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ``` Artturin2024-09-252-2/+2
* Merge master into staging-nextgithub-actions[bot]2024-09-081-14/+14
|\
| * python312Packages.django_5: 5.0.8 -> 5.1.1•••https://docs.djangoproject.com/en/5.1/releases/5.1.1/ https://www.djangoproject.com/weblog/2024/sep/03/security-releases/ Fixes: CVE-2024-45230, CVE-2024-45231 Martin Weinelt2024-09-041-14/+14
* | python312Packages.django_4: 4.2.15 -> 4.2.16•••https://docs.djangoproject.com/en/4.2/releases/4.2.16/ https://www.djangoproject.com/weblog/2024/sep/03/security-releases/ Fixes: CVE-2024-45230, CVE-2024-45231 Martin Weinelt2024-09-041-2/+2
|/
* Merge pull request #332755 from mweinelt/django-5.0.8•••python312Packages.django_5: 5.0.7 -> 5.0.8Thomas Gerbet2024-08-161-2/+2
|\
| * python312Packages.django_5: 5.0.7 -> 5.0.8•••https://docs.djangoproject.com/en/5.0/releases/5.0.8/ https://www.djangoproject.com/weblog/2024/aug/06/security-releases/ Fixes: CVE-2024-41989, CVE-2024-41990, CVE-2024-41991, CVE-2024-42005 Martin Weinelt2024-08-061-2/+2
* | python312Packages.django: 4.2.14 -> 4.2.15•••https://docs.djangoproject.com/en/4.2/releases/4.2.15/ https://www.djangoproject.com/weblog/2024/aug/06/security-releases/ Fixes: CVE-2024-41989, CVE-2024-41990, CVE-2024-41991, CVE-2024-42005 Martin Weinelt2024-08-071-2/+2
|/
* Merge remote-tracking branch 'origin/staging-next' into staging•••Conflicts: - pkgs/applications/misc/blender/default.nix - pkgs/development/web/nodejs/nodejs.nix Martin Weinelt2024-07-111-2/+2
|\
| * python312Packages.django_5: 5.0.5 -> 5.0.7•••https://docs.djangoproject.com/en/5.0/releases/5.0.7/ https://www.djangoproject.com/weblog/2024/jul/09/security-releases/ Fixes: CVE-2024-38875, CVE-2024-39329, CVE-2024-39330, CVE-2024-39614 Martin Weinelt2024-07-091-2/+2
* | python312Packages.django_4: 4.2.12 -> 4.2.14•••https://docs.djangoproject.com/en/4.2/releases/4.2.14/ https://www.djangoproject.com/weblog/2024/jul/09/security-releases/ Fixes: CVE-2024-38875, CVE-2024-39329, CVE-2024-39330, CVE-2024-39614 Martin Weinelt2024-07-091-2/+2
|/
* treewide: Remove indefinite article from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/' Alexis Hildebrandt2024-06-093-3/+3
* treewide: Remove ending period from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/' Alexis Hildebrandt2024-06-092-2/+2
* pythonPackages: remove unused fetchpath argumentsSigmanificient2024-05-231-1/+0
* python3Packages: format with nixfmtMartin Weinelt2024-05-223-164/+162
* python311Packages.django_3: communicate end of life•••Django 3 was supported until 2024-04-01, and we're taking it into NixOS 24.05 under the condition of people having to opt into its consumption. Related: #262907 Martin Weinelt2024-05-221-0/+3
* Merge master into staging-nextgithub-actions[bot]2024-05-071-13/+7
|\
| * python312Packages.django_5: 5.0.4 -> 5.0.5•••https://docs.djangoproject.com/en/5.0/releases/5.0.5/ Martin Weinelt2024-05-061-13/+7
* | python312Packages.django_4: 4.2.11 -> 4.2.12•••https://docs.djangoproject.com/en/4.2/releases/4.2.12/ Martin Weinelt2024-05-071-14/+7
|/
* python311Packages.django_5: Fix MIME UTF-8 surrogate escapingMartin Weinelt2024-04-161-0/+8
* python311Packages.django: Fix MIME UTF-8 surrogate escaping•••Closes: #304339 Martin Weinelt2024-04-161-0/+8
* python312Packages.django_5: use pep517 lingoMartin Weinelt2024-04-061-7/+7
* python312Packages.django_5: 5.0.3 -> 5.0.4•••https://docs.djangoproject.com/en/5.0/releases/5.0.4/ Martin Weinelt2024-04-061-2/+2
* python312Packages.django_5: disable failing test•••With the revert of xz 5.4.6 (down from 5.6.0) this test started failing on aarch64-linux on Python 3.12. Martin Weinelt2024-04-011-0/+6
* python312Packages.django_4: disable failing test•••With the revert of xz 5.4.6 (down from 5.6.0) this test started failing on aarch64-linux on Python 3.12. Martin Weinelt2024-04-011-0/+6
* Merge master into staging-nextgithub-actions[bot]2024-03-291-6/+0
|\
| * python312Packages.django_5: drop obsolete patchMartin Weinelt2024-03-261-6/+0
* | Merge staging-next into staginggithub-actions[bot]2024-03-191-0/+1
|\|