forked from ask/ghettoq
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangelog
63 lines (42 loc) · 1.95 KB
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
t================
Change history
================
0.4.1
=====
:release-date: 2010-07-19 11:30 A.M CEST
* Now works with celery again ;)
0.4.0
=====
:release-date: 2010-07-14 11:00 A.M CEST
* setup.py now works with Python 2.4.
* License information added to distribution.
* Redis: Now uses blpop instead of polling.
This means version 2.0 of both the redis-server and the Python
redis client is required to use the Redis backend.
* Redis: The specified database name must now be an integer.
The following values are considered OK and are accepted:
===================================== =====================================
**Provided Value** **Actual database used**
===================================== =====================================
:const:`None` 0 (default database is used)
``""`` 0 (default database is used)
``"/"`` 0 (default database is used)
``"/1"`` 1
``"2"`` 2
``3`` 3
===================================== =====================================
**Note:** The backend does not check that specified database
actually exists on the server.
* MongoDB: ``find_one`` and ``remove`` has been replaced with
the atomic operation ``find_and_modify`` (see:
http://www.mongodb.org/display/DOCS/findandmodify+Command).
* .taproot: Added support for ``drain_events()``
0.2.0
=====
:release-date: 2010-04-19 11:40 A.M CEST
* **IMPORTANT** database backend: The ``timestamp`` field has been renamed to
``sent_at`` as ``TIMESTAMP`` is a reserved word in Oracle databases.
This means existing users will need to migrate their existing tables.
In MySQL this can be done manually by using ``ALTER``::
ALTER TABLE ghettoq_message CHANGE timestamp sent_at DATETIME;
* Added support for MongoDB.