Mapiarz
Mapiarz
Hi! With Postgres 12.0 release we finally get proper support for ForeignKeys to partitioned tables: https://www.postgresql.org/docs/current/release-12.html In other words, one could say that table partitioning is finally feature complete in...
### Package Sentry.Serilog ### .NET Flavor .NET ### .NET Version 6.0.7 ### OS Linux ### SDK Version 3.20.0 ### Self-Hosted Sentry Version _No response_ ### Steps to Reproduce I'm integrating...
Is Django 5.0 supported, officially or not? Anybody tried it?
Hi! I'm able to integrate with django-stubs no problem. It does work as intended overall. In my project though, I'm using `django-multitenant` which adds a layer of complexity. Almost ALL...
Does the latest version work with Django 5? Anybody tried it? Is there a release planned with Django 5 support?
Packages: celery 5.2.7, django-celery-beat 2.5.0, django-celery-results 2.5.0, django 3.2.18. Backed by postgres and rabbitmq. Yes, I have set `CELERY_RESULT_EXTENDED` to `True` and other metadata is there, but not periodic task...
I have detected a regression where the built in `create` mutation is not able to properly process the input and create a django model with a foreign key relation. Consider...
Hi! I encountered an issue with the `m2m_changed` built in signal. The signal is triggered only when removing objects from the m2m relation, but not when adding. Imagine I have...
## Describe the Bug Consider code below ```python @dataclasses.dataclass class FilterBase: name: strawberry.auto @strawberry_django.filter(SomeModel, lookups=True) class Filter(FilterBase): pass @dataclasses.dataclass class OrderBase: name: strawberry.auto @strawberry_django.order(SomeModel) class Order(OrderBase): pass @strawberry_django.type(SomeModel, order=Order, filters=Filter)...
Hi! I would like to bring to your attention a problem I'm facing at my company. The tl;dr is that there's no clean way to do non relay based pagination...