* Fix for handling IPAddress defaults in migrations, to avoid attempting validation of a NULL default.
1.0.9
------------------
* Added missing database migrations related to having changed or added the ``verbose_name`` on a bunch of model fields prior to 1.0 release. No schema changes are actually made in the migration. This is being released so that some pending pull requests can be merged in more cleanly.
1.0.8
------------------
* Provides the ability to require uniqueness for results of queries using the optional ``unique=true`` param. Queries with multiple results that have this flag set will return an error. Implements 221.
1.0.7
------------------
* Implemented changes needed to upgrade to Django REST Framework v3.5.0 * Added `fields = '__all__'` to all default model serializers used for displaying objects * Changes required for django-filter>=0.15 were made for filtersets using custom fields.
1.0.6
------------------
* Improve performance in Network.get_next_network() for large prefixes
+ The fix in 224 introduced a notable performance bug due to iterating all descendents vs. only direct children. + This patch addresses the performance issue by attempting to pre-seed the list of dirty networks via excluding ones with ineligible prefix lengths as well as immediately checking whether a candidate subnet is dirty BEFORE iterating child networks vs. AFTER.
1.0.5
------------------
* Fix 224 - Fixed a bug in ``Network.next_network()`` where a nested child (descendent) would continually be offered as free, even if it existed in the database. All descendent networks for a parent are now inspected when determining availability.