mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-04-28 18:54:50 +00:00
Merge tag '0.16.0' into develop
0.16.0
This commit is contained in:
commit
07fcf39e0a
2 changed files with 18 additions and 1 deletions
17
CHANGES.rst
17
CHANGES.rst
|
|
@ -1,6 +1,23 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
0.16.0
|
||||
------
|
||||
* New setting: `DDP_API_ENDPOINT_DECORATORS`.
|
||||
This setting takes a list of dotted import paths to decorators which are applied to API endpoints. For example, enable New Relic instrumentation by adding the line below to your Django `settings.py`:
|
||||
|
||||
.. code:: python
|
||||
|
||||
DDP_API_ENDPOINT_DECORATORS = ['newrelic.agent.background_task']
|
||||
|
||||
* Fixed #7 -- Warn if using DB engines other than psycopg2 - thanks @Matvey-Kuk.
|
||||
* Improvements to error/exception handling.
|
||||
* Warn if many TX chunks are queued in case WebSocket has stalled.
|
||||
* Bugfix thread locals setup when opening WebSocket.
|
||||
* Add missing import for print function (Python 2).
|
||||
* Work towards #16 -- Use `psycopg2cffi` compatibility if `psycopg2` not
|
||||
installed.
|
||||
|
||||
0.15.0
|
||||
------
|
||||
* Renamed `Logs` collection and publication to `dddp.logs` to be consistent with naming conventions used elsewhere.
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -44,7 +44,7 @@ CLASSIFIERS = [
|
|||
|
||||
setup(
|
||||
name='django-ddp',
|
||||
version='0.15.0',
|
||||
version='0.16.0',
|
||||
description=__doc__,
|
||||
long_description=open('README.rst').read(),
|
||||
author='Tyson Clugg',
|
||||
|
|
|
|||
Loading…
Reference in a new issue