-
Notifications
You must be signed in to change notification settings - Fork 60
/
CHANGELOG
44 lines (33 loc) · 1.17 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Upcoming
- Geometry Types support
2.2.0
- Make bulk_update work with postgresql's ArrayField
- Fix that makes the manager work for write db correctly
2.1.0
- Allow to pass `update_fields` and `exclude_fields` arguments as tuples.
- If `update_fields` is not specified, update not-deferred fields only.
2.0.0
- Rename package from `bulk_update` to `django_bulk_update`.
- Drop support for `django<1.8`.
- Allow to use django expressions like `F expression` or `Func expression`.
- Make `bulk_update` work for models whose `pk` is an UUID or a ForeignKey.
1.1.1
- Use .count() method instead of len for performance reasons (joshblum)
- added more tests
1.1.0
- fixes for sqlite and added tests (towr)
- refactor and update for mysql (HoverHell)
1.0.5
- fixed PositiveIntegerField and PositiveSmallIntegerField issues at db_type
1.0.4
- Allow non-postgres databases to work too (daleobrien)
- Allow the use of fields that requires pre-processing (sruon)
1.0.3
- added support for ARRAY types and refactored GenericIPAddressField & IPAddressField.
1.0.2
- added performance tests
1.0.1
- GenericIPAddressField and IPAddressField fixes
1.0.0
- added batch_size option
- performance improvements