Nick Pope
Nick Pope
ticket-33865
This is a work in progress attempt to implement `RegexpReplace()`, etc. for ticket-28805. **Backend Support:** PostgreSQL: - [`regexp_count(expr, pattern, position?, flags?)`](https://www.postgresql.org/docs/15/functions-string.html#id-1.5.8.10.7.2.2.21.1.1.1) -- v15+ only - [`regexp_instr(expr, pattern, position?, occurrence?, return_opt?,...
@kezabelle I just noticed that you'd posted #15403. It prompted me that there was something that I started a while back. The main issues with this that I found where:...
Ticket [#30746](https://code.djangoproject.com/ticket/30746) Note that `Feature-Policy` was renamed to `Permissions-Policy`.
**Describe the bug** The `AttributeNames` argument of `.receive_messages()` is currently typed as `Sequence[QueueAttributeNameType]` but it seems that `Sequence[MessageSystemAttributeNameType | QueueAttributeNameType]` would be a better fit. Looking at the [documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sqs.html#SQS.Queue.receive_messages) we...
**Describe the bug** Django's `FileField` stores a relative URL, see [`FieldFile.url`](https://docs.djangoproject.com/en/stable/ref/models/fields/#django.db.models.fields.files.FieldFile.url). DRF's `FileField` can attempt to make this absolute, see [here](https://github.com/encode/django-rest-framework/blob/00cd4ef864a8bf6d6c90819a983017070f9f08a5/rest_framework/fields.py#L1566-L1569), but this will not work when generating a schema...
Currently `drf_spectacular.hooks.postprocess_schema_enums` will extract enums in components out into their own components. It would be nice if the enums under operation parameters could also be extracted. I came up with...
So I just ran into an issue where I was calling a procedure that made use of transaction control internally. Here is a simple example: ```sql create procedure t() language...
Suggest change from `next(iter())` and `next(iter())` to `next()` as [`next()`](https://docs.python.org/3/library/functions.html#next) will happily consume a generator. Need to be aware of the `default` argument to `next()` in which case the generator...
I was trying to use Bootstrap v4.1.0 to style `dcc.Checklist()`: - https://getbootstrap.com/docs/4.1/components/forms/#checkboxes-and-radios - https://getbootstrap.com/docs/4.1/components/forms/#checkboxes (custom style) Currently a checklist such as the following: ```python dcc.Checklist( id='example', options=[{'label': 'Item #%d' %...