Changeset 5284
- Timestamp:
- 12/11/08 00:40:52 (7 months ago)
- Files:
-
- 6 modified
- 1 copied
-
branches/1.1/CHANGELOG (modified) (1 diff)
-
branches/1.1/lib/Doctrine.php (modified) (1 diff)
-
branches/1.1/package.xml (modified) (7 diffs)
-
tags/1.1.0-BETA1 (copied) (copied from branches/1.1) (1 prop)
-
tags/1.1.0-BETA1/CHANGELOG (modified) (1 diff)
-
tags/1.1.0-BETA1/lib/Doctrine.php (modified) (1 diff)
-
tags/1.1.0-BETA1/package.xml (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/CHANGELOG
r5243 r5284 1 1.1.0-BETA1 2 ----------- 3 * [r5243] [1.1] Releasing 1.1.0-ALPHA1 4 * [r5244] [1.1] Added ability to mapValues and reuse then on application. Mapped values are data that is transient and is not persisted to DB, although they are part of the record. 5 * [r5245] [1.1] fixes issue with foreign key names being too long in genrated migrations (fixes #1712) 6 * [r5246] [1.1] Enhancing generated php doc 7 * [r5248] [1.1] Fixing parse error 8 * [r5249] [1.1] fixing generating php doc block for @version 9 * [r5250] [1.0, 1.1] Fixes issue with preInsert() and preUpdate() hooks being called after isValid() (fixes #1716) 10 * [r5251] [1.0, 1.1] Fixes issue with checks not exporting in pgsql (fixes #1697) 11 * [r5252] [1.1] Fixes issue with foreign key names (addresses #1712) 12 * [r5253] [1.1] Another issue with foreign key names (addresses #1712) 13 * [r5255] [1.0, 1.1] Fixed incorrect phpdoc @return on Doctrine_Record::exportTo() (fixes #1709) 14 * [r5256] [1.0, 1.1] Added failing test case for #1706 15 * [r5257] [1.0, 1.1] Fixes issue with Searchable behavior when primary key is not an integer (fixes #1704) 16 * [r5258] Add testcase for ticket 1619 17 * [r5259] [1.0, 1.1] fixes issue with missing sqlite types in DataDict (fixes #1662) 18 * [r5260] [1.0, 1.1] Cached results are now connection/dsn specific. (fixes #1706) 19 * [r5261] [1.0, 1.1] fixes issue with creating and dropping databases (fixes #1595) 20 * [r5263] [1.0, 1.1] fixes issue with mis-leading exception being thrown (fixes #1562) 21 * [r5264] [1.0, 1.1] Fixes issue with serializing non saved records (fixes #1703) 22 * [r5265] [1.1] fixes #1696. Limit and subqueries are working perfectly now for MySQL. Also fixed the wrong parameter adjusting that was being not accepted under certain circunstances (mix of 23 params between join/where + > 3 joins not related). 24 * [r5266] [1.1] Format/cleanup 25 * [r5267] [1.1] Fixes issue with generated foreign key names being returned already formatted 26 * [r5268] [1.1] fixes issue with length of generated index names (fixes #1712) 27 * [r5269] [1.0, 1.1] fixes issue with Doctrine::loadModels() returning empty array when called back to back with same directory (fixes #1727) 28 * [r5270] [1.1] Fixes strict standards notice (fixes #1720) 29 * [r5271] [1.1] Fixing migrations to execute in the order specified by developer (fixes #1722) 30 * [r5272] [1.1] adding coverage for ticket #1729 (addresses #1729) 31 * [r5274] [1.1] fixes issue with Versionable and SoftDelete together (fixes #1725) 32 * [r5275] [1.0, 1.1] fixes #1719. Fixed missing index in Windows specific environment for test suite. Thanks for the tip and patch! 33 * [r5276] [1.0, 1.1] Fixes #1718. Fixed setCharset call to PDO quote which was incorrect. Thanks for the tip and patch! 34 * [r5277] [1.0, 1.1] fixes #1705. Thanks for the tip and patch! 35 * [r5278] [1.1] Fixing SoftDelete failing test cases. 36 * [r5279] [1.0, 1.1] Fixing issue with actAs() where invoker was not being set 37 * [r5280] [1.0, 1,1] Fixing issue with comment being used as a validator 38 * [r5281] [1.0, 1.1] fixes inconsistant lazy loading behavior (closes #1733) 39 * [r5282] [1.0, 1.1] Added missing listTableRelations() for postgres (closes #1734) 40 1 41 1.1.0-ALPHA1 2 42 ------------ -
branches/1.1/lib/Doctrine.php
r5269 r5284 37 37 * VERSION 38 38 */ 39 const VERSION = '1.1.0- ALPHA1';39 const VERSION = '1.1.0-BETA1'; 40 40 41 41 /** -
branches/1.1/package.xml
r5243 r5284 22 22 <active>yes</active> 23 23 </lead> 24 <date>2008-12- 03</date>25 <time>0 1:39:16</time>24 <date>2008-12-11</date> 25 <time>00:26:45</time> 26 26 <version> 27 27 <release>1.1.0</release> … … 29 29 </version> 30 30 <stability> 31 <release> alpha</release>32 <api> alpha</api>31 <release>beta</release> 32 <api>beta</api> 33 33 </stability> 34 34 <license uri="http://www.phpdoctrine.org/license">LGPL license</license> … … 327 327 <file name="Iterator.php" role="php" /> 328 328 <file name="Listener.php" role="php" /> 329 <file name="UnknownPropertyException.php" role="php" /> 329 330 </dir> <!-- /lib/Doctrine/Record --> 330 331 <dir name="Relation"> … … 1119 1120 </dir> <!-- /tests/Table --> 1120 1121 <dir name="Ticket"> 1122 <dir name="1727"> 1123 <dir name="models1"> 1124 <file name="Ticket_1727_Model1.php" role="test" /> 1125 <file name="Ticket_1727_Model2.php" role="test" /> 1126 </dir> <!-- /tests/Ticket/1727/models1 --> 1127 <dir name="models2"> 1128 <file name="Ticket_1727_Model3.php" role="test" /> 1129 <file name="Ticket_1727_Model4.php" role="test" /> 1130 </dir> <!-- /tests/Ticket/1727/models2 --> 1131 </dir> <!-- /tests/Ticket/1727 --> 1121 1132 <file name="255TestCase.php" role="test" /> 1122 1133 <file name="381TestCase.php" role="test" /> … … 1265 1276 <file name="1545TestCase.php" role="test" /> 1266 1277 <file name="1558TestCase.php" role="test" /> 1278 <file name="1562TestCase.php" role="test" /> 1267 1279 <file name="1567TestCase.php" role="test" /> 1268 1280 <file name="1604TestCase.php" role="test" /> 1269 1281 <file name="1617TestCase.php" role="test" /> 1270 1282 <file name="1617_schema.yml" role="test" /> 1283 <file name="1619TestCase.php" role="test" /> 1271 1284 <file name="1621bTestCase.php" role="test" /> 1272 1285 <file name="1621TestCase.php" role="test" /> … … 1277 1290 <file name="1653TestCase.php" role="test" /> 1278 1291 <file name="1658TestCase.php" role="test" /> 1292 <file name="1703TestCase.php" role="test" /> 1293 <file name="1706TestCase.php" role="test" /> 1294 <file name="1716TestCase.php" role="test" /> 1295 <file name="1725TestCase.php" role="test" /> 1296 <file name="1727TestCase.php" role="test" /> 1297 <file name="1729TestCase.php" role="test" /> 1279 1298 <file name="AyoubTestCase.php" role="test" /> 1280 1299 <file name="NewTicketTestCase.php" role="test" /> … … 1691 1710 </version> 1692 1711 <stability> 1693 <release> alpha</release>1694 <api> alpha</api>1712 <release>beta</release> 1713 <api>beta</api> 1695 1714 </stability> 1696 <date>2008-12- 03</date>1715 <date>2008-12-11</date> 1697 1716 <license uri="http://www.phpdoctrine.org/license">LGPL license</license> 1698 1717 <notes>-</notes> -
tags/1.1.0-BETA1
-
tags/1.1.0-BETA1/CHANGELOG
r5243 r5284 1 1.1.0-BETA1 2 ----------- 3 * [r5243] [1.1] Releasing 1.1.0-ALPHA1 4 * [r5244] [1.1] Added ability to mapValues and reuse then on application. Mapped values are data that is transient and is not persisted to DB, although they are part of the record. 5 * [r5245] [1.1] fixes issue with foreign key names being too long in genrated migrations (fixes #1712) 6 * [r5246] [1.1] Enhancing generated php doc 7 * [r5248] [1.1] Fixing parse error 8 * [r5249] [1.1] fixing generating php doc block for @version 9 * [r5250] [1.0, 1.1] Fixes issue with preInsert() and preUpdate() hooks being called after isValid() (fixes #1716) 10 * [r5251] [1.0, 1.1] Fixes issue with checks not exporting in pgsql (fixes #1697) 11 * [r5252] [1.1] Fixes issue with foreign key names (addresses #1712) 12 * [r5253] [1.1] Another issue with foreign key names (addresses #1712) 13 * [r5255] [1.0, 1.1] Fixed incorrect phpdoc @return on Doctrine_Record::exportTo() (fixes #1709) 14 * [r5256] [1.0, 1.1] Added failing test case for #1706 15 * [r5257] [1.0, 1.1] Fixes issue with Searchable behavior when primary key is not an integer (fixes #1704) 16 * [r5258] Add testcase for ticket 1619 17 * [r5259] [1.0, 1.1] fixes issue with missing sqlite types in DataDict (fixes #1662) 18 * [r5260] [1.0, 1.1] Cached results are now connection/dsn specific. (fixes #1706) 19 * [r5261] [1.0, 1.1] fixes issue with creating and dropping databases (fixes #1595) 20 * [r5263] [1.0, 1.1] fixes issue with mis-leading exception being thrown (fixes #1562) 21 * [r5264] [1.0, 1.1] Fixes issue with serializing non saved records (fixes #1703) 22 * [r5265] [1.1] fixes #1696. Limit and subqueries are working perfectly now for MySQL. Also fixed the wrong parameter adjusting that was being not accepted under certain circunstances (mix of 23 params between join/where + > 3 joins not related). 24 * [r5266] [1.1] Format/cleanup 25 * [r5267] [1.1] Fixes issue with generated foreign key names being returned already formatted 26 * [r5268] [1.1] fixes issue with length of generated index names (fixes #1712) 27 * [r5269] [1.0, 1.1] fixes issue with Doctrine::loadModels() returning empty array when called back to back with same directory (fixes #1727) 28 * [r5270] [1.1] Fixes strict standards notice (fixes #1720) 29 * [r5271] [1.1] Fixing migrations to execute in the order specified by developer (fixes #1722) 30 * [r5272] [1.1] adding coverage for ticket #1729 (addresses #1729) 31 * [r5274] [1.1] fixes issue with Versionable and SoftDelete together (fixes #1725) 32 * [r5275] [1.0, 1.1] fixes #1719. Fixed missing index in Windows specific environment for test suite. Thanks for the tip and patch! 33 * [r5276] [1.0, 1.1] Fixes #1718. Fixed setCharset call to PDO quote which was incorrect. Thanks for the tip and patch! 34 * [r5277] [1.0, 1.1] fixes #1705. Thanks for the tip and patch! 35 * [r5278] [1.1] Fixing SoftDelete failing test cases. 36 * [r5279] [1.0, 1.1] Fixing issue with actAs() where invoker was not being set 37 * [r5280] [1.0, 1,1] Fixing issue with comment being used as a validator 38 * [r5281] [1.0, 1.1] fixes inconsistant lazy loading behavior (closes #1733) 39 * [r5282] [1.0, 1.1] Added missing listTableRelations() for postgres (closes #1734) 40 1 41 1.1.0-ALPHA1 2 42 ------------ -
tags/1.1.0-BETA1/lib/Doctrine.php
r5269 r5284 37 37 * VERSION 38 38 */ 39 const VERSION = '1.1.0- ALPHA1';39 const VERSION = '1.1.0-BETA1'; 40 40 41 41 /** -
tags/1.1.0-BETA1/package.xml
r5243 r5284 22 22 <active>yes</active> 23 23 </lead> 24 <date>2008-12- 03</date>25 <time>0 1:39:16</time>24 <date>2008-12-11</date> 25 <time>00:26:45</time> 26 26 <version> 27 27 <release>1.1.0</release> … … 29 29 </version> 30 30 <stability> 31 <release> alpha</release>32 <api> alpha</api>31 <release>beta</release> 32 <api>beta</api> 33 33 </stability> 34 34 <license uri="http://www.phpdoctrine.org/license">LGPL license</license> … … 327 327 <file name="Iterator.php" role="php" /> 328 328 <file name="Listener.php" role="php" /> 329 <file name="UnknownPropertyException.php" role="php" /> 329 330 </dir> <!-- /lib/Doctrine/Record --> 330 331 <dir name="Relation"> … … 1119 1120 </dir> <!-- /tests/Table --> 1120 1121 <dir name="Ticket"> 1122 <dir name="1727"> 1123 <dir name="models1"> 1124 <file name="Ticket_1727_Model1.php" role="test" /> 1125 <file name="Ticket_1727_Model2.php" role="test" /> 1126 </dir> <!-- /tests/Ticket/1727/models1 --> 1127 <dir name="models2"> 1128 <file name="Ticket_1727_Model3.php" role="test" /> 1129 <file name="Ticket_1727_Model4.php" role="test" /> 1130 </dir> <!-- /tests/Ticket/1727/models2 --> 1131 </dir> <!-- /tests/Ticket/1727 --> 1121 1132 <file name="255TestCase.php" role="test" /> 1122 1133 <file name="381TestCase.php" role="test" /> … … 1265 1276 <file name="1545TestCase.php" role="test" /> 1266 1277 <file name="1558TestCase.php" role="test" /> 1278 <file name="1562TestCase.php" role="test" /> 1267 1279 <file name="1567TestCase.php" role="test" /> 1268 1280 <file name="1604TestCase.php" role="test" /> 1269 1281 <file name="1617TestCase.php" role="test" /> 1270 1282 <file name="1617_schema.yml" role="test" /> 1283 <file name="1619TestCase.php" role="test" /> 1271 1284 <file name="1621bTestCase.php" role="test" /> 1272 1285 <file name="1621TestCase.php" role="test" /> … … 1277 1290 <file name="1653TestCase.php" role="test" /> 1278 1291 <file name="1658TestCase.php" role="test" /> 1292 <file name="1703TestCase.php" role="test" /> 1293 <file name="1706TestCase.php" role="test" /> 1294 <file name="1716TestCase.php" role="test" /> 1295 <file name="1725TestCase.php" role="test" /> 1296 <file name="1727TestCase.php" role="test" /> 1297 <file name="1729TestCase.php" role="test" /> 1279 1298 <file name="AyoubTestCase.php" role="test" /> 1280 1299 <file name="NewTicketTestCase.php" role="test" /> … … 1691 1710 </version> 1692 1711 <stability> 1693 <release> alpha</release>1694 <api> alpha</api>1712 <release>beta</release> 1713 <api>beta</api> 1695 1714 </stability> 1696 <date>2008-12- 03</date>1715 <date>2008-12-11</date> 1697 1716 <license uri="http://www.phpdoctrine.org/license">LGPL license</license> 1698 1717 <notes>-</notes>