* Made ``include_ips=True`` default when retrieving Networks (fix 120)
0.12.3
-------------------
* Implemented basic support for Interfaces in Web UI.
+ Create, update, delete all work + Device still only showing by id, should be displayed by hostname + Type only showing by id, should be displayed as selection of human-readable names derived from the schema.
0.12.2
-------------------
* Use native 'inet' type for storing IPs in PostgreSQL. (fixes 128)
0.12.1
-------------------
* Fix 500 crash when querying OPTIONS to view schema in API (fixes 126)
+ The bulk update mixin had to be subclassed to utilize super(), because it does not extend a pre-existing django-rest-framework mixin. + The inheritance order of the bulk mixins used in the Resource viewset also had to be changed because of this.
* Cleanup: The viewset for Attributes now inherits from ResourceViewSet. * Cleanup: The viewset for Sites has been moved before ResourceViewSet for better readability (because Site is not a Resource type).
0.12
-----------------
* Basic concept of Network states, one of which is 'reserved'. * Interaction w/ Interfaces to set state='assigned' on Assignment. * Basic API endpoint to view ``/api/networks/reserved/`` to view reserved Networks.
0.11.7
-------------------
* Implemented more backend gunicorn options for default http service
+ max-requests: Max requests per worker before restart + max-requests-jitter - Random jitter in seconds between worker restart + preload - Whether to preload app before forking