Changeset 4806
- Timestamp:
- 08/25/08 21:09:46 (10 months ago)
- Location:
- branches/1.0
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
lib/Doctrine.php (modified) (1 diff)
-
package.xml (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/CHANGELOG
r4737 r4806 1 1.0.0-RC1 2 --------- 3 * [r4737] Releasing 1.0.0-BETA2 4 * [r4738] adding Testcase for #1304 5 * [r4739] Initial entry of master and slave connections cookbook recipe. 6 * [r4740] Fixing typo. 7 * [r4741] converted german translation to UTF-8 8 * [r4742] fixes #1207 9 * [r4743] Fixed issue with test data 10 * [r4744] fixes #1112 11 * [r4745] Fixing unexpected exception due to duplicate index name. 12 * [r4746] fixes #1304 13 * [r4747] fixes #1248 14 * [r4748] Adding test coverage for #1257 15 * [r4749] Added coverage for #1244 16 * [r4750] fixes #1244 17 * [r4751] Added coverage for #1236 18 * [r4752] Added coverage for #1230 19 * [r4753] fixes #1223 20 * [r4754] Added coverage for #1289 21 * [r4755] fixes #1289 22 * [r4756] Changing inline level for dumping. 23 * [r4757] fixes #1324 24 * [r4758] fixes #1112. Package sfYaml now handles overflows with int values and consider them as string. Updated tests to add coverage to it. 25 * [r4759] Fixed #1126. Fixed #1165. 26 * [r4760] Initial entry of creating a unit of work using doctrine 27 * [r4761] Fixing mistakes. 28 * [r4762] Another fix. 29 * [r4763] Fixing email address and web address. 30 * [r4764] fixing typo. 31 * [r4766] Fixing a minor bug 32 * [r4767] Fixed APC cache driver. Dont know where the old Doctrine_Cache_Apc#save() code came from... if anyone knows please tell me. Added a testcase to test using apc as a result cache. 33 Fixed #1196. 34 * [r4768] BC BREAK - Completely removing emulated enum conversions. Version 1.0 will store complete enum value in varchar(255) column by default. 35 * [r4769] Fixed #1311. 36 * [r4770] fixes #1305. When you try to assign a null value in a column that has notnull=true, it tries to assign the default value, preventing SQL error. 37 Updated ticket #923. It had incorrect call place in code. 38 * [r4772] Fixed #1277. Added coverage for #1254. 39 * [r4773] Added needed changes to support backtrace generation of 5.3 win build. 40 * [r4774] Cleaning the mess I did with this file... =) 41 * [r4775] Fixed #1344. 42 * [r4777] fixed #1329. Added checking for 2 words operator (NOT IN for example) in JoinCondition.php 43 * [r4778] fixed #1280. Fixed Export that never deals with default=null in all DBMS. Also fixed $entity->Relation = null; situation that cleans the reference. 44 Now we have unset and unlink that deletes related object and = null that only defines the default value when save() is called. 45 * [r4779] fixed #1266. Thanks for the information! 46 Also I removed the comments I added previously in JoinConditionTestCase.php 47 * [r4780] Added coverage to ticket #1131. Unable to reproduce the issue. 48 Fixed wrong variable name in Doctrine_Export*::getNotNullFieldDeclaration 49 * [r4782] Another fix for the APC cache driver. 50 * [r4783] . 51 * [r4786] fixes #1288. Added a fixed alias to findXXX methods. THe alias name is 'dctrn_find'. 52 * [r4787] fixes #1362. Thanks for the report and patch! 53 * [r4788] fixes #1352. Added comment support on integer fields on MySQL. 54 * [r4790] Fixed nestedset object comparison issue reported on the forums. 55 * [r4793] Relaxed the restriction on joined classes (pk of the left side of the join must be selected) for subqueries. 56 * [r4794] limit-subquery and query cache adjustments. 57 * [r4796] Small organization of tests and documantation fixes 58 * [r4797] Added coverage for #973 in 1.0 branch. Ticket was already addressed in another changeset 59 * [r4798] Missed to include ticket test file... =) 60 * [r4799] Added coverage for #668 in 1.0 branch. Ticket was already addressed in another changeset 61 1 62 1.0.0-BETA1 2 63 ----------- -
branches/1.0/lib/Doctrine.php
r4737 r4806 37 37 * VERSION 38 38 */ 39 const VERSION = '1.0.0- BETA1';39 const VERSION = '1.0.0-RC1'; 40 40 41 41 /** -
branches/1.0/package.xml
r4737 r4806 22 22 <active>yes</active> 23 23 </lead> 24 <date>2008-08- 05</date>25 <time>1 0:44:57</time>24 <date>2008-08-25</date> 25 <time>16:06:00</time> 26 26 <version> 27 27 <release>1.0.0</release> … … 255 255 </dir> <!-- /lib/Doctrine/Pager --> 256 256 <dir name="Parser"> 257 <dir name="sfYaml"> 258 <file name="Dumper.php" role="php" /> 259 <file name="Inline.php" role="php" /> 260 <file name="Parser.php" role="php" /> 261 </dir> <!-- /lib/Doctrine/Parser/sfYaml --> 257 262 <dir name="Spyc"> 258 263 <file name="YamlNode.php" role="php" /> … … 261 266 <file name="Json.php" role="php" /> 262 267 <file name="Serialize.php" role="php" /> 268 <file name="sfYaml.php" role="php" /> 263 269 <file name="Spyc.php" role="php" /> 264 270 <file name="Xml.php" role="php" /> … … 928 934 <file name="MyUserOtherThing.php" role="test" /> 929 935 <file name="NestedSetTest_SingleRootNode.php" role="test" /> 936 <file name="NestedSet_MultiRootNode.php" role="test" /> 930 937 <file name="NestReference.php" role="test" /> 931 938 <file name="NestTest.php" role="test" /> … … 1006 1013 </dir> <!-- /tests/mysql_migration_classes --> 1007 1014 <dir name="NestedSet"> 1015 <file name="MultiRootTestCase.php" role="test" /> 1008 1016 <file name="SingleRootTestCase.php" role="test" /> 1009 1017 </dir> <!-- /tests/NestedSet --> … … 1109 1117 <file name="638TestCase.php" role="test" /> 1110 1118 <file name="642TestCase.php" role="test" /> 1119 <file name="668TestCase.php" role="test" /> 1111 1120 <file name="673TestCase.php" role="test" /> 1112 1121 <file name="697TestCase.php" role="test" /> … … 1137 1146 <file name="966TestCase.php" role="test" /> 1138 1147 <file name="969TestCase.php" role="test" /> 1148 <file name="973TestCase.php" role="test" /> 1139 1149 <file name="982TestCase.php" role="test" /> 1140 1150 <file name="987TestCase.php" role="test" /> … … 1153 1163 <file name="1124TestCase.php" role="test" /> 1154 1164 <file name="1125TestCase.php" role="test" /> 1165 <file name="1131TestCase.php" role="test" /> 1155 1166 <file name="1133TestCase.php" role="test" /> 1156 1167 <file name="1134TestCase.php" role="test" /> … … 1166 1177 <file name="1225TestCase.php" role="test" /> 1167 1178 <file name="1228TestCase.php" role="test" /> 1179 <file name="1230TestCase.php" role="test" /> 1180 <file name="1236TestCase.php" role="test" /> 1181 <file name="1244TestCase.php" role="test" /> 1168 1182 <file name="1250TestCase.php" role="test" /> 1169 1183 <file name="1251TestCase.php" role="test" /> 1170 1184 <file name="1253TestCase.php" role="test" /> 1185 <file name="1254TestCase.php" role="test" /> 1186 <file name="1257TestCase.php" role="test" /> 1187 <file name="1277TestCase.php" role="test" /> 1188 <file name="1280TestCase.php" role="test" /> 1189 <file name="1289TestCase.php" role="test" /> 1171 1190 <file name="1296TestCase.php" role="test" /> 1191 <file name="1304TestCase.php" role="test" /> 1192 <file name="1305TestCase.php" role="test" /> 1193 <file name="1372TestCase.php" role="test" /> 1172 1194 <file name="NewTicketTestCase.php" role="test" /> 1173 1195 <file name="NjeroTestCase.php" role="test" /> … … 1561 1583 <api>beta</api> 1562 1584 </stability> 1563 <date>2008-08- 05</date>1585 <date>2008-08-25</date> 1564 1586 <license uri="http://www.phpdoctrine.org/license">LGPL license</license> 1565 1587 <notes>-</notes>