Skip to content

Commit

Permalink
Bump to 0.13.0 and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarkentin committed May 24, 2017
1 parent cac4f43 commit 75d72ff
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
9 changes: 9 additions & 0 deletions HISTORY.rst
Expand Up @@ -4,6 +4,15 @@
History
=======

0.13.0 (2017-05-23)
-------------------

* [`#105 <https://github.com/mwarkentin/django-watchman/pull/105>`_] Add ``WATCHMAN_CACHES`` and ``WATCHMAN_DATABASES`` settings to override the Django defaults

* When using watchman with a large number of databases, the default checks can cause an excess of connections to the database / cache
* New settings allow you to check only a subset of databases / caches
* Watchman will still default to checking all databases / caches, so no changes necessary for most apps

0.12.0 (2017-02-22)
-------------------

Expand Down
9 changes: 9 additions & 0 deletions README.rst
Expand Up @@ -152,6 +152,15 @@ querystring should be run, eg::

curl -XGET http://127.0.0.1:8080/watchman/?skip=watchman.checks.email

Check a subset of databases or caches
*************************************

If your application has a large number of databases or caches configured,
watchman may open too many connections as it checks each database or cache.

You can set the ``WATCHMAN_DATABASES`` or ``WATCHMAN_CACHES`` settings in order
to override the default set of databases and caches to be monitored.

Django management command
*************************

Expand Down
2 changes: 1 addition & 1 deletion watchman/__init__.py
@@ -1 +1 @@
__version__ = '0.12.0'
__version__ = '0.13.0'

0 comments on commit 75d72ff

Please sign in to comment.