[Zope-CVS] CVS: Products/FileCacheManager - CHANGES.txt:1.4
FileCache.py:1.11 VERSION.txt:1.3
Jens Vagelpohl
jens at dataflake.org
Mon Jan 10 09:27:04 EST 2005
Update of /cvs-repository/Products/FileCacheManager
In directory cvs.zope.org:/tmp/cvs-serv27633
Modified Files:
CHANGES.txt FileCache.py VERSION.txt
Log Message:
- compatibility fix for Zope 2.8 - FCM prior to version 1.2 will not
work with it.
=== Products/FileCacheManager/CHANGES.txt 1.3 => 1.4 ===
--- Products/FileCacheManager/CHANGES.txt:1.3 Wed Nov 24 03:36:25 2004
+++ Products/FileCacheManager/CHANGES.txt Mon Jan 10 09:27:04 2005
@@ -1,14 +1,28 @@
CHANGES.txt for the FileCacheManager product
+ 1.2
+
+ Bug fixes
+
+ * Due to a method signature change in the ZODB transaction
+ machinery FCM versions prior to 1.2 won't work with
+ Zope 2.8.
+
+
1.1
- After a ZCache_set has been performed, during the transaction lifetime,
- return the file data fed to ZCache_set via ZCache_get even though it
- hasn't yet been written to the ultimate filepath. If this is not done,
- ZCache_get could return "stale" data from the perspective of the
- application using FCM.
+ Bug fixes
+
+ * After a ZCache_set has been performed, during the transaction
+ lifetime, return the file data fed to ZCache_set via ZCache_get
+ even though it hasn't yet been written to the ultimate filepath.
+ If this is not done, ZCache_get could return "stale" data from
+ the perspective of the application using FCM.
+
+ Features added
+
+ * HTTP caching added.
- HTTP caching added.
1.0
=== Products/FileCacheManager/FileCache.py 1.10 => 1.11 ===
--- Products/FileCacheManager/FileCache.py:1.10 Fri Nov 19 01:31:52 2004
+++ Products/FileCacheManager/FileCache.py Mon Jan 10 09:27:04 2005
@@ -337,7 +337,7 @@
pass
- def tpc_begin(self, transaction):
+ def tpc_begin(self, transaction, subtransaction=False):
""" Called at the beginning of a transaction """
pass
=== Products/FileCacheManager/VERSION.txt 1.2 => 1.3 ===
--- Products/FileCacheManager/VERSION.txt:1.2 Wed Nov 24 03:36:25 2004
+++ Products/FileCacheManager/VERSION.txt Mon Jan 10 09:27:04 2005
@@ -1 +1 @@
-1.1
+1.2
More information about the Zope-CVS
mailing list