File tree 3 files changed +18
-3
lines changed
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
- Release $next
2
- =============
1
+
2
+ Release 1.9.1 (2018-04-09)
3
+ ==========================
4
+
5
+ * When decorating a function with @cache_region decorator the function generated to update the cached value
6
+ will be named like the decorated function. So that during debugging it's easy to know which function is involved.
7
+ * Removed usage of ``async`` as a variable in code, this fixes a compatibility problem with Python 3.7 where it's a keyword.
8
+ * Fixed a race condition in ``FileNamespaceManager``.
9
+ * ``ext.database`` backend will now properly close connections.
10
+ * Do not leave bhind corrupted files if ``FileNamespaceManager`` is interrupted while writing a new file.
11
+ Replacing content of a file or writing a new one is now always an atomic operation.
12
+ * ``DBMNamespaceManager`` and ``FileSynchronizer`` will now deal with directories disappearing while they try to write to them.
13
+ * The Redis and MongoDB backends are not exposed in documentation.
3
14
4
15
Release 1.9.0 (2017-06-19)
5
16
==========================
Original file line number Diff line number Diff line change 1
- __version__ = '1.9.0 '
1
+ __version__ = '1.9.1 '
Original file line number Diff line number Diff line change 72
72
'Programming Language :: Python :: 3.3' ,
73
73
'Programming Language :: Python :: 3.4' ,
74
74
'Programming Language :: Python :: 3.5' ,
75
+ 'Programming Language :: Python :: 3.6' ,
76
+ 'Programming Language :: Python :: 3.7' ,
77
+ 'Topic :: Internet :: WWW/HTTP :: Dynamic Content' ,
78
+ 'Topic :: Internet :: WWW/HTTP :: Dynamic Content' ,
75
79
'Topic :: Internet :: WWW/HTTP :: Dynamic Content' ,
76
80
'Topic :: Internet :: WWW/HTTP :: WSGI' ,
77
81
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware' ,
You can’t perform that action at this time.
0 commit comments