-
Notifications
You must be signed in to change notification settings - Fork 9
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
base: production
Are you sure you want to change the base?
Conversation
… 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
Co-authored-by: Rechner Fox <[email protected]>
* 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.
…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
Sorry for the noise, Github is fighting me on verifying commits and I'm not sure why. |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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" |
There was a problem hiding this comment.
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): |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There are a few instances where usage is deprecated and the migration guide
said to migrate those.
https://docs.djangoproject.com/en/dev/internals/deprecation/ . Namely the
guide said to run python with `-Wa` and look for mention of deprecation
warnings. Those are what came up.
…On Sat, Dec 28, 2024 at 7:39 PM Rechner Fox ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In registration/views/staff.py
<#339 (comment)>:
> @@ -164,12 +166,14 @@ def add_new_staff(request):
def staff_index(request, guid):
event = Event.objects.get(default=True)
tz = timezone.get_current_timezone()
- today = tz.localize(datetime.now())
+ today = datetime.now(python_tz.utc)
Since we have USE_TZ = True in our config, using django.utils.timezone
for datetime operations will use Django's timezone aware date objects,
Django will handle the correct timezone application according to the
configuration. If you're using the container, you can set the TZ
environment variable to match your local timezone (e.g.
TZ=America/New_York). Generally when dealing with dates and time, we
should use the Django functions to make sure the timezone setting is
respected.
https://github.com/furthemore/APIS/blob/324bf13872fcca207805bd15c6ee763ceebf1a83/fm_eventmanager/settings.py.docker#L241
https://docs.djangoproject.com/en/5.1/topics/i18n/timezones/#naive-and-aware-datetime-objects
—
Reply to this email directly, view it on GitHub
<#339 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAXYEBMONSXD2KO7WL4SOPT2H5AEBAVCNFSM6AAAAABUCRDLSCVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDKMRUHA3DMOBVGU>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
From the 5.0 deprecation docs I see:
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: APIS/registration/migrations/0034_auto_20161227_1230.py Lines 7 to 15 in 324bf13
APIS/registration/migrations/0004_auto_20160729_0021.py Lines 7 to 15 in 324bf13
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() |
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? |
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). |
There was a problem hiding this comment.
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.
…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.
…nto poetry-setup
Might need to propagate this to other templates but can't quite test this easily enough to just blindly search-and-replace.
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.