forked from aio-libs-abandoned/aioredis-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
80 lines (49 loc) · 1.61 KB
/
CHANGES.txt
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
Changes
-------
0.2.0 (xxxx-xx-xx)
^^^^^^^^^^^^^^^^^^
0.1.4 (2014-09-22)
^^^^^^^^^^^^^^^^^^
* Dropped following Redis methods -- Redis.multi(), Redis.exec(), Redis.discard()
* Redis.multi_exec hack'ish property removed
* Redis.multi_exec() method added
* High-level commands implemented:
* generic commands (tests);
* transactions commands (api stabilization).
* Backward incompatibilities:
* Following sorted set commands' API changed:
zcount, zrangebyscore, zremrangebyscore, zrevrangebyscore;
* set string command' API changed;
0.1.3 (2014-08-08)
^^^^^^^^^^^^^^^^^^
* RedisConnection.execute refactored to support commands pipelining
(see http://github.com/aio-libs/aioredis/issues/33);
* Several fixes;
* WIP on transactions and commands interface;
* High-level commands implemented and tested:
* hash commands;
* hyperloglog commands;
* set commands;
* scripting commands;
* string commands;
* list commands;
0.1.2 (2014-07-31)
^^^^^^^^^^^^^^^^^^
* create_connection, create_pool, create_redis functions updated:
db and password arguments made keyword-only
(see http://github.com/aio-libs/aioredis/issues/26);
* Fixed transaction handling
(see http://github.com/aio-libs/aioredis/issues/32);
* Response decoding
(see http://github.com/aio-libs/aioredis/issues/16);
0.1.1 (2014-07-07)
^^^^^^^^^^^^^^^^^^
* Transactions support (in connection, high-level commands have some issues);
* Docs & tests updated.
0.1.0 (2014-06-24)
^^^^^^^^^^^^^^^^^^
* Initial release;
* RedisConnection implemented;
* RedisPool implemented;
* Docs for RedisConnection & RedisPool;
* WIP on high-level API.