* Disabled caching by default (set to dummy caching) * Added a section in the config docs for caching. * Updated ``requirements-dev.txt`` to (re-)include ``sphinx-autobuild``
0.11.5
-------------------
* Update Interface serializer to properly encode None as JSON.
+ It was encoding it as a string (``'None'``) vs. objects (``null``)
0.11.4
-------------------
* Fix to allow null values for MAC address on Interfaces. * Serializer and model fields now allow MAC to be set to None. * Also added missing lines to MANIFEST.in causing missing static/templates, which is problematic for new dev. environments or external contributors.
0.11.3
-------------------
* MAC address bugfix and a little cleanup in exceptions and validation * Integers are no longer being improperly cast to strings and then back to an incorrect integer representation. (fixes 111) * Added extra unit tests and regression tests for this bug. * Moved all references to exceptions into ``nsot.exc``. * Moved email validator to ``nsot.validators``.
0.11.2
-------------------
* Updated nsot-server management commands to Django 1.8 syntax * Bugfix in user_proxy in string formatting on startup * Implemented support for ``-v/--verbosity`` flag in nsot-server commands to adjust loglevel (fix 59) * Cleaned up the gunicorn service to read from CLI args * Updated ``test_settings.py`` to include some of the newer settings.
0.11.1
-------------------
* Made gunicorn worker timeout configurable by CLI or settings.py * New setting: ``settings.NSOT_NUM_WORKERS`` (default: 4) to tweak number of workers * New setting: ``settings.NSOT_WORKER_TIMEOUT`` (default: 30) to tweak default worker timeout * ``nsot-server start`` now takes a ``-t/--timeout`` option at runtime to override globald defaults.