Andy Chosak

Results 51 comments of Andy Chosak

Looking into this a bit more, this definitely seems like a Django issue and nothing specific to Wagtail. That being said, we might need to find a workaround if we...

If it's helpful to have another data point, I can confirm that both main and #8965 work on my SQLite 3.32.3 configuration [from above](https://github.com/wagtail/wagtail/issues/8635#issue-1262447443).

I can confirm this, on main (pre-4.0). With a brand new database: ``` >>> from wagtail.models import Page >>> Page.objects.all() >>> Page.objects.public() >>> Page.objects.not_public() ``` The reason for this is...

Can confirm this still exists in Wagtail 2.16.2, and Wagtail 3.0rc1. Note as mentioned above (https://github.com/wagtail/wagtail/issues/1824#issuecomment-1058576046) this seems to prevent use of Django LiveServerTestCase when running with a PostgreSQL database,...

One minor request if we decide to implement this: can we make sure that devs can still use auto-named migrations when working locally? I often generate temporary migrations while working...

I also ran into this. The explanation above seems correct; in migrations calling `save()` on a model calls the base [`Model.save()`](https://github.com/django/django/blob/026719cf17ae2b088f7553321f2ca6b45efa8cb4/django/db/models/base.py#L666) method and thus skips the [`ClusterableModel.save()`](https://github.com/wagtail/django-modelcluster/blob/8299b6ac41ac4e01453b28440164b12e393bc37e/modelcluster/models.py#L172) call that would...

@csebianlander I think I got this working thanks to some helpful JS tips from @anselmbradford. Ans, if you have a minute, can you take a glance at my JS and...

Users of search.gov are instructed to include this JS snippet as part of [the Search.gov activation documentation](https://search.gov/admin-center/activate/code.html), which is currently linked from [the cf.gov documentation](https://cfpb.github.io/consumerfinance.gov/site-search/#site-search). If we're going to diverge...

Great to see this feature coming into Wagtail! At CFPB we've been maintaining a separate package [wagtail-inventory](https://github.com/cfpb/wagtail-inventory) for this purpose (although it uses a separate database table instead of doing...

@ababic thank you for the detailed writeup. How much will https://github.com/django/django/pull/10381 buy us here? That PR looks like it has been slowly making its way through review (there's an open...