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 Django to v5; related work and cleanups #339

Draft
wants to merge 51 commits into
base: production
Choose a base branch
from

Conversation

anadon
Copy link

@anadon anadon commented Dec 23, 2024

Django 3.x is out of security releases, so I started upgrading to Django 5. I've also implemented a direnv/Nix Flake to 'just' set up a development environment. Lots of small changes. Unfortunately, had to disable 2FA for the time being. I'd like to keep this as a draft to keep track of developments and collaborate. Currently, I'm facing some troubles with some tests related to Square and the environment that I'm not immediately sure how to fix up.

anadon and others added 30 commits May 30, 2024 19:34
… users. Easer alternative than Docker in some scenarios.
…le environment given Nix and Direnv are installed and working on the user's system.
…pgrading to Django v5 and starting work to transition the DB to using PostgreSQL.
* add sig capture for coc to reg form

* add signature to dealers

* add signature to badge admin

* update base image

* add square tag to tests

* magic test fix

* remove old requirements
* remove version

* Update README.md
* update closed message on attendee reg

* add to dealers and staff

* fix existing tests

* new tests for index

* add tests to dealers

* add staff tests

* add test to onsite
* change theme, update styling

* style

* missed

* shadow

* nah

* fuck

* checkbox space
* add sig capture for coc to reg form

* add signature to dealers

* add signature to badge admin

* update base image

* add square tag to tests

* magic test fix

* remove old requirements
* Shore up check for already recieved webhook

* Again, with feeling
…#327)

* Add syntax highlighted JSON field output in webhook admin

* Update base image

---------

Co-authored-by: meanderfox <[email protected]>
* remove the box

* remove the code
…more#333)

* Make dealer wifi configurable, form tweaks.  Update pre-commit
* Fix typo
* Fix default venue form population
* Fix signature collection on Dealers form
* Add tests for registration template tags
* Fix dealer signature, for real
…le environment given Nix and Direnv are installed and working on the user's system.
@anadon
Copy link
Author

anadon commented Dec 23, 2024

Sorry for the noise, Github is fighting me on verifying commits and I'm not sure why.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why have all the migrations been deleted? These are not optional, you can squash them to make a new instance setup go faster but removing migrations before every instance has applied them can break someone's database and leave them stranded with no way to up- or down-grade their versions.

Migrations, including the initial one, form the basis of a Django app's database schema.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believed otherwise. I'll go in an revert the change.

@@ -64,7 +65,9 @@ def get_cart(request):
evt = event.eventStart
tz = timezone.get_current_timezone()
try:
birthdate = tz.localize(datetime.strptime(pda["birthdate"], "%Y-%m-%d"))
birthdate = datetime.strptime(
f'{pda["birthdate"]}:{python_tz.utc}', "%Y-%m-%d:%Z"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the change to UTC here?

def test_disable_two_factor(self):
query_set = [self.user_1, self.user_2]
admin.disable_two_factor(None, None, query_set)
# class TestTwoFactorAdmin(TestCase):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be possible to upgrade this library to support DJango 5, but might be wiser to switch to something more actively developed like django-allauth.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will look into it, and re-add 2FA.

@anadon
Copy link
Author

anadon commented Dec 29, 2024 via email

@rechner
Copy link
Member

rechner commented Dec 29, 2024

Namely the guide said to run python with -Wa and look for mention of deprecation warnings.

From the 5.0 deprecation docs I see:

  • Support for pytz timezones will be removed.
  • The USE_DEPRECATED_PYTZ transitional setting will be removed.
  • The default value of the USE_TZ setting will change from False to True.

Your proposed changes are unrelated to the deprecation of pytz which appears in these migrations, and I suspect the only source of that deprecation warning:

import pytz
from django.db import migrations, models
PT = pytz.timezone("US/Pacific")
class Migration(migrations.Migration):
DEFAULT_DATETIME = PT.localize(datetime.datetime.now())

import pytz
from django.db import migrations, models
PT = pytz.timezone("US/Pacific")
class Migration(migrations.Migration):
DEFAULT_ORDER_MODIFIED_DATE = PT.localize(datetime.now())

We can replace the pytz usage there with Django's utility functions:

from django.utils import timezone

class Migration(migrations.Migration):
    DEFAULT_ORDER_MODIFIED_DATE = timezone.now()

@anadon
Copy link
Author

anadon commented Dec 29, 2024

Applied your requests for timezones and migrations. Once 2FA is re-added, I think we can cut this change set and have further changes as their own PRs. Does that sound correct?

@rechner
Copy link
Member

rechner commented Dec 30, 2024

Sounds good, just be sure to also revert my comments above where you changed handling to use UTC.

Another option for U2F library support is Django 4, which is still in-support and supported by our existing U2F library. If we do opt to switch to another library, it would be nice to include a migration to keep everyone from having to re-add their 2FA.

I also noticed your test for SQL server, you should be aware that APIS makes use of JSONField for payments, which is only supported by certain databases with native JSON types (limited to Postgres in Django 3, and MariaDB, MySQL, Oracle, PostgreSQL, and SQLite for Django 5).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recommend strongly against breaking out the templates to suit themes or customization like this, it'll be a nightmare to maintain and test against. Ideally the Django templates should never change: Instead we should keep the behavior consistent and control custom themeable elements using CSS where possible, with configurable fields in settings.py or on the Event model, or by utilizing the Django sites framework.

anadon and others added 8 commits March 24, 2025 21:37
…alypse event is partially working, but the other events for Furrydelphia and FurTheMore have the same form and should end up similar to Furpoc's instance. This does substantially break from work by other conventions, but leaves open the possibility of re-merging functionality in the future.
Recent changes couldn't get it to run for me on Windows, worked with Anadon to
get it working and committing these changes to the repo.
Might need to propagate this to other templates but can't quite test this easily
enough to just blindly search-and-replace.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants