Skip to content

Releases: ambitioninc/django-manager-utils

0.3.1

09 Mar 00:56
Compare
Choose a tag to compare

Made ManagerUtilsQuerySet part of the public api. It can now be imported directly from manager_utils

0.3

08 Mar 20:12
Compare
Choose a tag to compare
0.3

Added the id_dict method to the manager utils package. This provides the ability to retrieve a dictionary of models keyed on their ID

0.2.1

08 Mar 19:19
Compare
Choose a tag to compare

Updates the setup.py file so that dependency_links are properly included

0.2

08 Mar 16:11
Compare
Choose a tag to compare
0.2

Added a post_bulk_operation signal that is emitted when any bulk operation occurs (update, bulk_create, bulk_update)

0.1

06 Mar 06:30
Compare
Choose a tag to compare
0.1

Django manager utils 0.1 includes the following functions:

  • single: Access a single object of a table or queryset
  • get_or_none: Perform a get but return none if the object doesn't exist
  • upsert: Perform an update or do an insert if the object doesn't exist
  • bulk_update: Update fields of a list of models