Releases: django-ordered-model/django-ordered-model
Releases Β· django-ordered-model/django-ordered-model
3.8.0-alpha
What's Changed
- Remove extra 'your' in README by @tpotjj in #300
- Return super().delete() in OrderedModel#delete by @solomonhawk in #304
- Do not rely on upshuffle logic for potential out of order bulk operations by @mk-ship-it in #307
- Add
--batch_size
arg to management command (for bulk_update) by @solomonhawk in #303 - Fix RemovedInDjango41Warning on
default_app_config
by @jonahgeorge in #311 - Update github actions versions by @nikolas in #302
- fix: upstream black change to formatting rules by @shuckc in #314
- fix build icon by @shuckc in #315
- Test for issue reported in #196 by @shuckc in #316
- GitHub Actions: Test on python 3.11 by @nikolas in #301
- add
fields.OrderedManyToManyField
to order related models by through model Meta by @shuckc in #285 - Relax
order_with_respect_to
final element must beForeignKey
(#298) by @shuckc in #317 - Update README.md by @kylepollina in #321
- chore(OrderedInlineModelAdminMixin): Fix typo in docstring by @tony in #326
- add pip-trusted-host, due to TLSv1 deprecation certificate errors on py35 by @shuckc in #328
- add test case proposed on #320 (already fixed) by @shuckc in #327
New Contributors
- @tpotjj made their first contribution in #300
- @solomonhawk made their first contribution in #304
- @mk-ship-it made their first contribution in #307
- @jonahgeorge made their first contribution in #311
- @kylepollina made their first contribution in #321
- @tony made their first contribution in #326
Full Changelog: 3.7.4...3.8.0-alpha
3.7.4
3.7.3
3.7.2
3.7.1
3.7
- Use bulk update method in
reorder_model
management command for performance (#273) - Add
tox
builder for python 3.10, use upstream DRF with upstream django - Emit a system Check failure if a subclass of
OrderedModelBase
fails to specifyMeta.ordering
- Updating the value of fields within
order_with_respect_to
now adjusts ordering accordingly (#198)
3.6
3.5
3.4.3
3.4.2
- Fix
OrderedTabularInline
for models with custom primary key field (#233) - Add management command
reorder_model
that can re-order most models with a broken ordering (#240) - Fix handling of keyword arguments passed to
bulk_create
by Django 3 (#235) - Fix inline admin support for Proxy Models by adding parent model to url name (#242)
- Migrated to GitHub Actions workflow (#241)