[Checkins] SVN: z3c.sqlalchemy/branches/1.3/ removed SA deprecation warning

Andreas Jung andreas at andreas-jung.com
Tue Aug 4 02:46:40 EDT 2009


Log message for revision 102481:
  removed SA deprecation warning
  

Changed:
  U   z3c.sqlalchemy/branches/1.3/CHANGES.txt
  U   z3c.sqlalchemy/branches/1.3/setup.py
  U   z3c.sqlalchemy/branches/1.3/src/z3c/sqlalchemy/base.py

-=-
Modified: z3c.sqlalchemy/branches/1.3/CHANGES.txt
===================================================================
--- z3c.sqlalchemy/branches/1.3/CHANGES.txt	2009-08-04 06:41:43 UTC (rev 102480)
+++ z3c.sqlalchemy/branches/1.3/CHANGES.txt	2009-08-04 06:46:39 UTC (rev 102481)
@@ -1,3 +1,8 @@
+1.3.10 (04.082009)
+------------------
+
+ - removed SA deprecation warning
+
 1.3.9 (06.01.2009)
 ------------------
 

Modified: z3c.sqlalchemy/branches/1.3/setup.py
===================================================================
--- z3c.sqlalchemy/branches/1.3/setup.py	2009-08-04 06:41:43 UTC (rev 102480)
+++ z3c.sqlalchemy/branches/1.3/setup.py	2009-08-04 06:46:39 UTC (rev 102481)
@@ -21,7 +21,7 @@
     'Topic :: Software Development :: Libraries :: Python Modules',
 ]
 
-version = '1.3.9'
+version = '1.3.10'
 
 desc = open('README.txt').read().strip()
 changes = open('CHANGES.txt').read().strip()

Modified: z3c.sqlalchemy/branches/1.3/src/z3c/sqlalchemy/base.py
===================================================================
--- z3c.sqlalchemy/branches/1.3/src/z3c/sqlalchemy/base.py	2009-08-04 06:41:43 UTC (rev 102480)
+++ z3c.sqlalchemy/branches/1.3/src/z3c/sqlalchemy/base.py	2009-08-04 06:46:39 UTC (rev 102481)
@@ -135,7 +135,7 @@
     def _createEngine(self):
         self._engine = create_engine(self.dsn, **self.engine_options)
         self._sessionmaker = scoped_session(sessionmaker(bind=self._engine, 
-                                            transactional=True,
+                                            autocommit=False,,
                                             twophase=self.twophase,
                                             autoflush=True, 
                                             extension=ZopeTransactionExtension(**self.extension_options),



More information about the Checkins mailing list