django-bulk-update
django-bulk-update copied to clipboard
Bulk update using one query over Django ORM
Bumps [pillow](https://github.com/python-pillow/Pillow) from 4.1.1 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@radarhere, @hugovk] Restrict builtins within...
Bumps [pillow](https://github.com/python-pillow/Pillow) from 4.1.1 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@radarhere, @hugovk] Restrict builtins within...
Hello @aykut! Thank you for this library and your work on it! I just wanted to let you know that coming in Django 2.2 there will be a `bulk_update()` function...
i was trying to perform bulk update using *django-bulk-update* **https://github.com/aykut/django-bulk-update** But it throws **KeyError at /api/update 'id'** views class CartUpdatesView(ListBulkCreateUpdateDestroyAPIView): queryset=models.Cart.objects.all() serializer_class=serializers.CartUpdatesSerializer serializers class CartUpdatesSerializer(BulkSerializerMixin,serializers.ModelSerializer): class Meta(object): model = models.Cart...
ProgrammingError: column "some_json_field" is of type json but expression is of type text LINE 1: UPDATE "table" SET "some_json_field" = CAST(CASE "id" W... when bulk_update(objs, update_fields=['some_json_field'])
Invalid utf8mb4 character string Warning message pops up when storing compressed text data in BinaryField. This message does not appear when using create() or bulk_create() django functions. Exact error: mysql/base.py:101:...
Ordering
There are cases when row-level deadlocks occur on simultaneous update, celery task & Django view for instance. If update order is preserved (order by pk) there are no more deadlocks....
### Description Bulk updation on `through` table (ManyToManyField) doesn't work, nor the helper method for `through` table objects.
I think this should be nice feature
In Oracle databases, field names are all uppercase. Therefore, when writing SQL queries with `"` to escape column names, the database won't recognize them and give error ORA-00942.