Matthias Schoettle

Results 183 comments of Matthias Schoettle

Since I am planning to also use HTMX or Unpoly (haven't figured out yet which one, if you have any insight into this I'd be interested to hear) in the...

Thanks for the explanation! I'll have to give it a try again. In the link above the HTMX attributes were added to the `` tag instead of the `` child....

#415 suggested to disable interpolation by default. Would this not be safer to avoid impacting existing users?

Thanks for the explanation! I agree that making it explicit in the changelog would be a good thing.

Looks good to me!

A related discussion is in https://github.com/renovatebot/renovate/discussions/29501. It would be great if it could handle cases where there is no type but the architecture (e.g., `node:20.14.0-alpine3.19` --> `node:20.14.0-alpine3.20`, `python:3.11.9-alpine3.19` --> `python:3.11.9-alpine3.20`...

It is now possible to add MRs to a merge train without rebasing first. We have been using this for a few months since it became available for fast forward...

I have a `ManyToManyField` where the `through` model is referenced with a string class name. I needed to provide a type annotation as follows: ```py related_field: models.ManyToManyField[ToModel, 'ThroughModel'] = models.ManyToManyField(to=ToModel,...

I found `ValuesQuerySet` in `django_stubs_ext.aliases`: https://github.com/typeddjango/django-stubs/blob/706f41f657bd6b92e0e4d8ec966e28d674787c6a/ext/django_stubs_ext/aliases.py#L9 Using that the following works: ```py from django_stubs_ext.aliases import ValuesQuerySet def foo() -> ValuesQuerySet[MyModel, dict[str, Any]]: return MyModel.objects.values('field_one', 'field_two', 'another_field') ```

You can change the type hint for the `request` argument to `AuthenticatedHttpRequest`. ```py class SomeAPIView(...): def get(self, request: AuthenticatedHttpRequest, ...) ```