mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-05-14 02:23:13 +00:00
Merge tag '0.3.0' into develop
Django DDP version 0.3.0
This commit is contained in:
commit
d28572fba5
4 changed files with 17 additions and 2 deletions
12
CHANGES.rst
12
CHANGES.rst
|
|
@ -1,6 +1,18 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
0.3.0
|
||||
-----
|
||||
* New DB field: Connection.server_addr -- **you must `migrate` your
|
||||
database after upgrading**.
|
||||
* Cleanup connections on shutdown (and purge associated subscriptions).
|
||||
* Make `dddp` management command a subclass of the `runserver` command
|
||||
so that `staticfiles` work as expected.
|
||||
* Fix non-threadsafe failure in serializer - now using thread local
|
||||
serializer instance.
|
||||
* Fix `unsubscribe` from publications.
|
||||
* Fix `/schema` method call.
|
||||
|
||||
0.2.5
|
||||
-----
|
||||
* Fix foreign key references in change messages to correctly reference
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ Peer servers subscribe to aggregate broadcast events only for channels (Django m
|
|||
|
||||
Limitations
|
||||
-----------
|
||||
The 0.2.x release series only supports DDP via WebSockets_. Future
|
||||
The 0.3.x release series only supports DDP via WebSockets_. Future
|
||||
development may resolve this by using SockJS, to support browsers that
|
||||
don't have WebSockets.
|
||||
|
||||
|
|
|
|||
3
bumpversion.sh
Executable file
3
bumpversion.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
cd "${0%/*}"
|
||||
cat setup.py | sed -e "s/version='[0123456789]\+\.[0123456789]\+\.[01234567989]\+'/version='$( git rev-parse --abbrev-ref HEAD | cut -d / -f 2 )'/" > setup.py
|
||||
2
setup.py
2
setup.py
|
|
@ -5,7 +5,7 @@ from setuptools import setup, find_packages
|
|||
|
||||
setup(
|
||||
name='django-ddp',
|
||||
version='0.2.5',
|
||||
version='0.3.0',
|
||||
description=__doc__,
|
||||
long_description=open('README.rst').read(),
|
||||
author='Tyson Clugg',
|
||||
|
|
|
|||
Loading…
Reference in a new issue