Conversation
The edit to session_utils is because Django 5 no longer supports using unsaved objects in query expressions. The edits to tom_targets/tetss/tests.py are simply a renamed function. Notable features of Django 5 relevant to the TOM Toolkit: * [Database computed defaults](https://docs.djangoproject.com/en/6.0/releases/5.0/#database-computed-default-values) allows generating defaults values from the database, not python. This might come in handy in specific database-heavy areas, like PostGIS or Healpix. * The new [ClosestPoint()](https://docs.djangoproject.com/en/6.0/releases/5.0/#django-contrib-gis) function sounds like it could be helpful in RA/DEC searches, perhaps for non-exact/fuzzy search where only a single result is desired. * Some improvements to [pagination errors](https://docs.djangoproject.com/en/6.0/releases/5.0/#pagination) which might make the HTMX table stuff smoother.
phycodurus
approved these changes
Feb 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The edit to session_utils is because Django 5 no longer supports using unsaved objects in query expressions.
The edits to tom_targets/tetss/tests.py are simply a renamed function.
Notable features of Django 5 relevant to the TOM Toolkit: