Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Django 4.2 #3341

Open
wants to merge 52 commits into
base: main
Choose a base branch
from
Open

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    2f4010b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    45bd67c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3349817 View commit details
    Browse the repository at this point in the history
  4. Use new STORAGES setting

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    47fdad9 View commit details
    Browse the repository at this point in the history
  5. Reorder operations in save() overrides

    Accessing many-to-many relations before saving is no longer allowed.
    
    Reorder all operations consistently:
    1. Validations
    2. Modify own fields
    3. Perform save by calling super().save()
    4. Modify related objects and clear caches
    
    Especially clearing caches should be done after actually saving, otherwise the old data can be
    re-added immediately by another request before the new data is written.
    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    0d621b6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    92a94d2 View commit details
    Browse the repository at this point in the history
  7. Update pytest-django to 4.8.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    984d7fb View commit details
    Browse the repository at this point in the history
  8. Update environs to 11.0.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    0007c86 View commit details
    Browse the repository at this point in the history
  9. Update pytest-cov to 5.0.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    cfcb873 View commit details
    Browse the repository at this point in the history
  10. Update django-storages to 1.14.2

    The problem that boto3 closes files has been worked around in django-storages.
    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    4fa823e View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b5ef9f6 View commit details
    Browse the repository at this point in the history
  12. Update boto3 to 1.34.74

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    23bf089 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3dfbc44 View commit details
    Browse the repository at this point in the history
  14. Update django-csp to 3.8

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    16e1b17 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    ffb3549 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    69c2734 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    e0a14ea View commit details
    Browse the repository at this point in the history
  18. Update libsass to 0.23.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    e9325b8 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    1276112 View commit details
    Browse the repository at this point in the history
  20. Update pycryptodome to 3.20.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    309147b View commit details
    Browse the repository at this point in the history
  21. Update pyotp to 2.9.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    c11725a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    1f8ba4d View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    e1fd57a View commit details
    Browse the repository at this point in the history
  24. Update django-stubs to 4.2.7

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    d80a014 View commit details
    Browse the repository at this point in the history
  25. Update mypy to 1.7.1

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    869bc5a View commit details
    Browse the repository at this point in the history
  26. Fix mypy errors

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    224fae7 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    624115b View commit details
    Browse the repository at this point in the history
  28. Update psycopg to 2.9.9

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    1303f53 View commit details
    Browse the repository at this point in the history
  29. Update bleach to 6.1.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    b6174d9 View commit details
    Browse the repository at this point in the history
  30. Update celery to 5.3.6

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    9ebda3f View commit details
    Browse the repository at this point in the history
  31. Update Markdown to 3.6

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    01b3702 View commit details
    Browse the repository at this point in the history
  32. Update redis-py to 5.0.3

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    e46bc2e View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    1474c0d View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    2537886 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    1cb8619 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    a1ff5a4 View commit details
    Browse the repository at this point in the history
  37. Update pytest-env to 1.1.3

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    039160e View commit details
    Browse the repository at this point in the history
  38. Update pytest-xdist to 3.5.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    f324a3c View commit details
    Browse the repository at this point in the history
  39. Update responses to 0.25.0

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    f6bbe67 View commit details
    Browse the repository at this point in the history
  40. Update pytest to 8.1.1

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    22986a0 View commit details
    Browse the repository at this point in the history
  41. Update qrcode to 7.4.2

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    39c2a0f View commit details
    Browse the repository at this point in the history
  42. Migrate from pytz to zoneinfo

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    03ac846 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    2896219 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    051dab7 View commit details
    Browse the repository at this point in the history
  45. Define CSRF_TRUSTED_ORIGINS

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    f38622f View commit details
    Browse the repository at this point in the history
  46. Add merge migration

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    de67c73 View commit details
    Browse the repository at this point in the history
  47. Add merge migration

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    77832cb View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    7604d0a View commit details
    Browse the repository at this point in the history
  49. Early return

    Minnozz committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    a6c2ce1 View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    e7f95ef View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Upgrade pylint to 2.17.7

    Minnozz committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    c32f9fa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    acae063 View commit details
    Browse the repository at this point in the history