Changeset 4806

Show
Ignore:
Timestamp:
08/25/08 21:09:46 (10 months ago)
Author:
jwage
Message:

Updating for RC1

Location:
branches/1.0
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/CHANGELOG

    r4737 r4806  
     11.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 
    1621.0.0-BETA1 
    263----------- 
  • branches/1.0/lib/Doctrine.php

    r4737 r4806  
    3737     * VERSION 
    3838     */ 
    39     const VERSION                   = '1.0.0-BETA1'; 
     39    const VERSION                   = '1.0.0-RC1'; 
    4040 
    4141    /** 
  • branches/1.0/package.xml

    r4737 r4806  
    2222  <active>yes</active> 
    2323 </lead> 
    24  <date>2008-08-05</date> 
    25  <time>10:44:57</time> 
     24 <date>2008-08-25</date> 
     25 <time>16:06:00</time> 
    2626 <version> 
    2727  <release>1.0.0</release> 
     
    255255     </dir> <!-- /lib/Doctrine/Pager --> 
    256256     <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 --> 
    257262      <dir name="Spyc"> 
    258263       <file name="YamlNode.php" role="php" /> 
     
    261266      <file name="Json.php" role="php" /> 
    262267      <file name="Serialize.php" role="php" /> 
     268      <file name="sfYaml.php" role="php" /> 
    263269      <file name="Spyc.php" role="php" /> 
    264270      <file name="Xml.php" role="php" /> 
     
    928934     <file name="MyUserOtherThing.php" role="test" /> 
    929935     <file name="NestedSetTest_SingleRootNode.php" role="test" /> 
     936     <file name="NestedSet_MultiRootNode.php" role="test" /> 
    930937     <file name="NestReference.php" role="test" /> 
    931938     <file name="NestTest.php" role="test" /> 
     
    10061013    </dir> <!-- /tests/mysql_migration_classes --> 
    10071014    <dir name="NestedSet"> 
     1015     <file name="MultiRootTestCase.php" role="test" /> 
    10081016     <file name="SingleRootTestCase.php" role="test" /> 
    10091017    </dir> <!-- /tests/NestedSet --> 
     
    11091117     <file name="638TestCase.php" role="test" /> 
    11101118     <file name="642TestCase.php" role="test" /> 
     1119     <file name="668TestCase.php" role="test" /> 
    11111120     <file name="673TestCase.php" role="test" /> 
    11121121     <file name="697TestCase.php" role="test" /> 
     
    11371146     <file name="966TestCase.php" role="test" /> 
    11381147     <file name="969TestCase.php" role="test" /> 
     1148     <file name="973TestCase.php" role="test" /> 
    11391149     <file name="982TestCase.php" role="test" /> 
    11401150     <file name="987TestCase.php" role="test" /> 
     
    11531163     <file name="1124TestCase.php" role="test" /> 
    11541164     <file name="1125TestCase.php" role="test" /> 
     1165     <file name="1131TestCase.php" role="test" /> 
    11551166     <file name="1133TestCase.php" role="test" /> 
    11561167     <file name="1134TestCase.php" role="test" /> 
     
    11661177     <file name="1225TestCase.php" role="test" /> 
    11671178     <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" /> 
    11681182     <file name="1250TestCase.php" role="test" /> 
    11691183     <file name="1251TestCase.php" role="test" /> 
    11701184     <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" /> 
    11711190     <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" /> 
    11721194     <file name="NewTicketTestCase.php" role="test" /> 
    11731195     <file name="NjeroTestCase.php" role="test" /> 
     
    15611583    <api>beta</api> 
    15621584   </stability> 
    1563    <date>2008-08-05</date> 
     1585   <date>2008-08-25</date> 
    15641586   <license uri="http://www.phpdoctrine.org/license">LGPL license</license> 
    15651587   <notes>-</notes>