[Catalyst-commits] r10537 - in
trunk/Catalyst-Plugin-Session-Store-FastMmap: .
lib/Catalyst/Plugin/Session/Store t/lib
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Mon Jun 15 00:28:42 GMT 2009
Author: t0m
Date: 2009-06-15 00:28:42 +0000 (Mon, 15 Jun 2009)
New Revision: 10537
Modified:
trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes
trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
trunk/Catalyst-Plugin-Session-Store-FastMmap/t/lib/SessionStoreTest.pm
Log:
Checking in changes prior to tagging of version 0.11. Changelog diff is:
Index: Changes
===================================================================
--- Changes (revision 10536)
+++ Changes (working copy)
@@ -1,3 +1,6 @@
+0.11 14 June 2009
+ - Create file paths correctly in Win32 to avoid warnings in the tests
+
0.10 13 May 2009
- Change tests to be compatible with Catalyst 5.80004
- Re-add /session-file prefix to the test session directory which was
Modified: trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes 2009-06-14 19:14:09 UTC (rev 10536)
+++ trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes 2009-06-15 00:28:42 UTC (rev 10537)
@@ -1,3 +1,6 @@
+0.11 14 June 2009
+ - Create file paths correctly in Win32 to avoid warnings in the tests
+
0.10 13 May 2009
- Change tests to be compatible with Catalyst 5.80004
- Re-add /session-file prefix to the test session directory which was
Modified: trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm 2009-06-14 19:14:09 UTC (rev 10536)
+++ trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm 2009-06-15 00:28:42 UTC (rev 10537)
@@ -13,7 +13,7 @@
use File::Spec ();
use Catalyst::Utils ();
-our $VERSION = '0.10';
+our $VERSION = '0.11';
__PACKAGE__->mk_classdata(qw/_session_fastmmap_storage/);
Modified: trunk/Catalyst-Plugin-Session-Store-FastMmap/t/lib/SessionStoreTest.pm
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-FastMmap/t/lib/SessionStoreTest.pm 2009-06-14 19:14:09 UTC (rev 10536)
+++ trunk/Catalyst-Plugin-Session-Store-FastMmap/t/lib/SessionStoreTest.pm 2009-06-15 00:28:42 UTC (rev 10537)
@@ -8,7 +8,7 @@
use Catalyst::Plugin::Session::Test::Store (
backend => "FastMmap",
- config => { storage => scalar(File::Temp::tmpnam()) },
+ config => { storage => File::Spec->catfile(File::Temp::tempdir( 'sessionstoretestXXXX', CLEANUP => 1 ), 'storage_file') },
extra_tests => 1
);
More information about the Catalyst-commits
mailing list