[limb-svn] r5455 - in 3.x/limb: active_record classkit core datasource dbal view

svn at limb-project.com svn at limb-project.com
Sun Apr 1 23:27:18 MSD 2007


Author: serega
Date: 2007-04-01 23:27:12 +0400 (Sun, 01 Apr 2007)
New Revision: 5455
URL: http://fisheye.limb-project.com/changelog/limb/?cs=5455

Added:
   3.x/limb/view/CHANGELOG
Modified:
   3.x/limb/active_record/CHANGELOG
   3.x/limb/active_record/VERSION
   3.x/limb/active_record/package.php
   3.x/limb/classkit/CHANGELOG
   3.x/limb/classkit/VERSION
   3.x/limb/classkit/package.php
   3.x/limb/core/CHANGELOG
   3.x/limb/core/VERSION
   3.x/limb/datasource/CHANGELOG
   3.x/limb/datasource/VERSION
   3.x/limb/dbal/CHANGELOG
   3.x/limb/dbal/VERSION
   3.x/limb/dbal/package.php
Log:
-- preparing package for next release. The process is not finished yet.

Modified: 3.x/limb/active_record/CHANGELOG
===================================================================
--- 3.x/limb/active_record/CHANGELOG	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/active_record/CHANGELOG	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1,13 +1,22 @@
-0.2.1 - 13 March 2007 (r5232)
+0.2.2alpha - 1 April 2007 (r5454)
 ==================================================
 
+-- lmbActiveRecord :: findOne(..) alias for findFirst(..) added
+-- lmbActiveRecord :: find(..) now supports simpler way to specify criteria with placeholders.
+   Yhis is possible now: lmbActiveRecord :: find("Book", array('name=? and author=?', 'book', 'bob'));
+-- minor changes due to global Limb3 functions renamings
+
+
+0.2.1alpha - 13 March 2007 (r5232)
+==================================================
+
 -- added lmbARRelationCollection :: getLimit(), getOffset().
 -- calling htmlspecialchars for proper encoding of html symbols in changelog, description and summary during package creation
 -- better PhpDocumentor comments
 -- lmbARRelationCollection now implements lmbPagedDataset interface instead of Iterator and Countable
 
 
-0.2.0 - 16 February 2007 (r5025)
+0.2.0alpha - 16 February 2007 (r5025)
 ==================================================
 
 -- lmbActiveRecord :: findBySql($class_name, $sql) added, it returns a result set of decorated with active record objects of specified $class_name
@@ -18,12 +27,12 @@
 -- initial PhpDocumentor comments added
 
 
-0.1.1 - 14 December 2006 (r4578)
+0.1.1alpha - 14 December 2006 (r4578)
 ==================================================
 
 -- fixed: better checks for relation property dirtiness in one-to-one and one-to-many relations
 
-0.1.0 - 14 December 2006 (r4537)
+0.1.0alpha - 14 December 2006 (r4537)
 ==================================================
 
 -- initial release of this package.

Modified: 3.x/limb/active_record/VERSION
===================================================================
--- 3.x/limb/active_record/VERSION	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/active_record/VERSION	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1 +1 @@
-active_record-0.2.1-alpha
+active_record-0.2.2-alpha

Modified: 3.x/limb/active_record/package.php
===================================================================
--- 3.x/limb/active_record/package.php	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/active_record/package.php	2007-04-01 19:27:12 UTC (rev 5455)
@@ -73,11 +73,11 @@
 $package->setPhpDep('5.1.4');
 $package->setPearinstallerDep('1.4.99');
 
-$package->addPackageDepWithChannel('required', 'core', 'pear.limb-project.com', '0.1.0');
-$package->addPackageDepWithChannel('required', 'classkit', 'pear.limb-project.com', '0.1.0');
-$package->addPackageDepWithChannel('required', 'dbal', 'pear.limb-project.com', '0.2.0');
-$package->addPackageDepWithChannel('required', 'datasource', 'pear.limb-project.com', '0.1.2');
-$package->addPackageDepWithChannel('required', 'validation', 'pear.limb-project.com', '0.1.0');
+$package->addPackageDepWithChannel('required', 'core', 'pear.limb-project.com', '0.1.3');
+$package->addPackageDepWithChannel('required', 'classkit', 'pear.limb-project.com', '0.1.3');
+$package->addPackageDepWithChannel('required', 'dbal', 'pear.limb-project.com', '0.2.2');
+$package->addPackageDepWithChannel('required', 'datasource', 'pear.limb-project.com', '0.1.3');
+$package->addPackageDepWithChannel('required', 'validation', 'pear.limb-project.com', '0.2.0');
 
 $package->generateContents();
 

Modified: 3.x/limb/classkit/CHANGELOG
===================================================================
--- 3.x/limb/classkit/CHANGELOG	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/classkit/CHANGELOG	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1,3 +1,8 @@
+0.1.3alpha - 1 April 2007 (r5454)
+==================================================
+-- minor changes due to global Limb3 functions renamings
+
+
 0.1.2alpha - 13 March 2007 (r5216)
 ==================================================
 -- improved phpdoc

Modified: 3.x/limb/classkit/VERSION
===================================================================
--- 3.x/limb/classkit/VERSION	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/classkit/VERSION	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1 +1 @@
-classkit-0.1.2-alpha
+classkit-0.1.3-alpha

Modified: 3.x/limb/classkit/package.php
===================================================================
--- 3.x/limb/classkit/package.php	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/classkit/package.php	2007-04-01 19:27:12 UTC (rev 5455)
@@ -73,7 +73,7 @@
 $package->setPhpDep('5.1.4');
 $package->setPearinstallerDep('1.4.99');
 
-$package->addPackageDepWithChannel('required', 'core', 'pear.limb-project.com', '0.1.0');
+$package->addPackageDepWithChannel('required', 'core', 'pear.limb-project.com', '0.1.3');
 
 $package->generateContents();
 

Modified: 3.x/limb/core/CHANGELOG
===================================================================
--- 3.x/limb/core/CHANGELOG	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/core/CHANGELOG	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1,3 +1,13 @@
+0.1.2alpha - 1 April 2007 (r5454)
+==================================================
+
+-- calling htmlspecialchars for proper encoding of html symbols in changelog, description and summary during package creation
+-- lmb_find_limb_packages() removed as it was never used
+-- toStudlyCaps() is now deprecated, use lmb_camel_case() instead
+-- to_under_scores() is now deprecated, use lmb_under_scores() instead
+-- makeStudlyCapsReadable() is now deprecated, use lmb_humanize() instead
+-- other minor fixes
+
 0.1.1alpha - 16 February 2007 (r5029)
 ==================================================
 

Modified: 3.x/limb/core/VERSION
===================================================================
--- 3.x/limb/core/VERSION	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/core/VERSION	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1 +1 @@
-core-0.1.1-alpha
+core-0.1.3-alpha

Modified: 3.x/limb/datasource/CHANGELOG
===================================================================
--- 3.x/limb/datasource/CHANGELOG	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/datasource/CHANGELOG	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1,3 +1,8 @@
+0.1.3 - 1 April 2007 (r5454)
+==================================================
+-- minor changes due to global Limb3 functions renamings
+
+
 0.1.2 - 13 March 2007 (r5228)
 ==================================================
 

Modified: 3.x/limb/datasource/VERSION
===================================================================
--- 3.x/limb/datasource/VERSION	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/datasource/VERSION	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1 +1 @@
-datasource-0.1.2-alpha
+datasource-0.1.3-alpha

Modified: 3.x/limb/dbal/CHANGELOG
===================================================================
--- 3.x/limb/dbal/CHANGELOG	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/dbal/CHANGELOG	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1,3 +1,13 @@
+0.2.2 - 1 April 2007 (r5454)
+==================================================
+
+-- changes due to global Limb3 functions renamings
+-- getDefaultDbConnection() moved from WEB_APP tools to lmbDBTools
+-- LIMB_DB_DSN constant is not used anymore.
+-- DBAL depends on CONFIG package now
+-- other minor improvements
+
+
 0.2.1 - 13 March 2007 (r5232)
 ==================================================
 

Modified: 3.x/limb/dbal/VERSION
===================================================================
--- 3.x/limb/dbal/VERSION	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/dbal/VERSION	2007-04-01 19:27:12 UTC (rev 5455)
@@ -1 +1 @@
-dbal-0.2.1-alpha
+dbal-0.2.2-alpha

Modified: 3.x/limb/dbal/package.php
===================================================================
--- 3.x/limb/dbal/package.php	2007-04-01 11:10:50 UTC (rev 5454)
+++ 3.x/limb/dbal/package.php	2007-04-01 19:27:12 UTC (rev 5455)
@@ -73,11 +73,11 @@
 $package->setPhpDep('5.1.4');
 $package->setPearinstallerDep('1.4.99');
 
-$package->addPackageDepWithChannel('required', 'core', 'pear.limb-project.com', '0.1.0');
-$package->addPackageDepWithChannel('required', 'toolkit', 'pear.limb-project.com', '0.1.0');
+$package->addPackageDepWithChannel('required', 'core', 'pear.limb-project.com', '0.1.3');
+$package->addPackageDepWithChannel('required', 'toolkit', 'pear.limb-project.com', '0.2.0');
 $package->addPackageDepWithChannel('required', 'net', 'pear.limb-project.com', '0.1.0');
-$package->addPackageDepWithChannel('required', 'classkit', 'pear.limb-project.com', '0.1.0');
-$package->addPackageDepWithChannel('required', 'datasource', 'pear.limb-project.com', '0.1.2');
+$package->addPackageDepWithChannel('required', 'classkit', 'pear.limb-project.com', '0.1.3');
+$package->addPackageDepWithChannel('required', 'datasource', 'pear.limb-project.com', '0.1.3');
 $package->addPackageDepWithChannel('required', 'util', 'pear.limb-project.com', '0.1.0');
 $package->addPackageDepWithChannel('required', 'config', 'pear.limb-project.com', '0.2.0');
 $package->addPackageDepWithChannel('optional', 'filter_chain', 'pear.limb-project.com', '0.1.0');

Added: 3.x/limb/view/CHANGELOG
===================================================================
--- 3.x/limb/view/CHANGELOG	                        (rev 0)
+++ 3.x/limb/view/CHANGELOG	2007-04-01 19:27:12 UTC (rev 5455)
@@ -0,0 +1,4 @@
+0.1.0 - 1 April 2007 (r5454)
+==================================================
+
+-- initial release of this package (extracted from WEB_APP package)
\ No newline at end of file



More information about the limb-svn mailing list