This repository was archived by the owner on Feb 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 0.14.3: 2016-09-04
5
+ ------------------
6
+
7
+ Fixes:
8
+ - Better handle timeouts during pubsub. (Handle IncompleteReadError.)
9
+ - Use asyncio.ensure_future instead of deprecated async() when available.
10
+ - Encode scripts using utf-8 instead of ascii.
11
+ - Bugfix in concurrency with transactions:
12
+ * Transactions were apparently prone to race conditions, because crutial
13
+ parts of the transaction did a 'yield' while entering the transaction in
14
+ the 'multi' command. This has been fixed now by using an asyncio.Lock.
15
+ * Because of this, it also became possible to start multiple
16
+ transactions or commands on the same connection. If the lock was acquired
17
+ by another transaction/command, will will wait instead of raising an
18
+ exception.
19
+
4
20
0.14.2: 2015-12-16
5
21
------------------
6
22
Original file line number Diff line number Diff line change 13
13
setup (
14
14
name = 'asyncio_redis' ,
15
15
author = 'Jonathan Slenders' ,
16
- version = '0.14.2 ' ,
16
+ version = '0.14.3 ' ,
17
17
license = 'LICENSE.txt' ,
18
18
url = 'https://github.com/jonathanslenders/asyncio-redis' ,
19
19
You can’t perform that action at this time.
0 commit comments