- Published on
Release: Poetry 1.3
- Authors
- Name
- Dave Coates
This release contains changes up until release/2023-02-21
.
To upgrade any existing projects it's recommended to pull in the relevant commits from upstream.
git remote add upstream git@gitlab.internal.alliancesoftware.com.au:alliance/template-django.git
git cherry-pick XXX1 XXX2
In cases where you are significantly behind it may be easier to pull the whole app (eg. common_audit
) in but you'll
need to review the relevant branch.
Poetry 1.3 Support
CI images have been updated to use Poetry 1.3. See this commit for necessary changes to scripts to support it.
Note that lock files created in < 1.3 should still work, however you will likely need the commit referenced for CI to correctly create the virtualenv.
Other changes
- 9f8398c8 - Fix incorrect
field_class_name
forNullableBooleanField
in codegen - b83fd833 - Don't include pagination next / previous links if no next / previous page
- 0b86bb73 - Ensure list query parameters (e.g. ?foo=1&foo=2) are preserved in pagination links
- d518f25e - Don't purge ant css menu classes used in django templates
- 0772365f - Fix to Presto middleware that would cause problems if you had multiple in flight requests (e.g. 2 components calling the same GET endpoint at the same time).