r31190 - in /branches/upstream/librose-db-object-perl/current: Changes META.yml lib/Rose/DB/Object.pm lib/Rose/DB/Object/MakeMethods/Generic.pm lib/Rose/DB/Object/Metadata/Relationship/ManyToMany.pm lib/Rose/DB/Object/Metadata/Relationship/OneToMany.pm

rmayorga at users.alioth.debian.org rmayorga at users.alioth.debian.org
Sat Feb 28 02:12:18 UTC 2009


Author: rmayorga
Date: Sat Feb 28 02:12:15 2009
New Revision: 31190

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=31190
Log:
[svn-upgrade] Integrating new upstream version, librose-db-object-perl (0.779)

Modified:
    branches/upstream/librose-db-object-perl/current/Changes
    branches/upstream/librose-db-object-perl/current/META.yml
    branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object.pm
    branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/MakeMethods/Generic.pm
    branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/ManyToMany.pm
    branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/OneToMany.pm

Modified: branches/upstream/librose-db-object-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/librose-db-object-perl/current/Changes?rev=31190&op=diff
==============================================================================
--- branches/upstream/librose-db-object-perl/current/Changes (original)
+++ branches/upstream/librose-db-object-perl/current/Changes Sat Feb 28 02:12:15 2009
@@ -1,3 +1,10 @@
+0.779 (02.26.2009) - John Siracusa <siracusa at gmail.com>
+
+    * Added missing documentation on one-to-many and many-to-many 
+      relationship "iterator" and "find" method type names.
+    * Corrected an error message in Rose::DB::Object::MakeMethods::Generic
+      (RT 43667)
+
 0.778 (02.06.2009) - John Siracusa <siracusa at gmail.com>
 
     * Added PostgreSQL's "ltree" query extensions to QueryBuilder.  

Modified: branches/upstream/librose-db-object-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/librose-db-object-perl/current/META.yml?rev=31190&op=diff
==============================================================================
--- branches/upstream/librose-db-object-perl/current/META.yml (original)
+++ branches/upstream/librose-db-object-perl/current/META.yml Sat Feb 28 02:12:15 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Rose-DB-Object
-version:            0.778
+version:            0.779
 abstract:           Extensible, high performance object-relational mapper (ORM).
 author:
     - John Siracusa <siracusa at gmail.com>

Modified: branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object.pm?rev=31190&op=diff
==============================================================================
--- branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object.pm (original)
+++ branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object.pm Sat Feb 28 02:12:15 2009
@@ -16,7 +16,7 @@
 use Rose::DB::Object::Exception;
 use Rose::DB::Object::Util();
 
-our $VERSION = '0.778';
+our $VERSION = '0.779';
 
 our $Debug = 0;
 

Modified: branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/MakeMethods/Generic.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/MakeMethods/Generic.pm?rev=31190&op=diff
==============================================================================
--- branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/MakeMethods/Generic.pm (original)
+++ branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/MakeMethods/Generic.pm Sat Feb 28 02:12:15 2009
@@ -20,7 +20,7 @@
 use Rose::DB::Object::Helpers();
 use Rose::DB::Object::Util qw(column_value_formatted_key);
 
-our $VERSION = '0.778';
+our $VERSION = '0.779';
 
 our $Debug = 0;
 
@@ -3087,7 +3087,7 @@
 
       if($@ || !$objs)
       {
-        $self->error("Could not ", ($is_iterator ? 'get iterator for' : 'find'),
+        $self->error("Could not " . ($is_iterator ? 'get iterator for' : 'find') .
                      " $ft_class objects - " . $ft_manager->error);
         $self->meta->handle_error($self);
         return wantarray ? () : $objs;

Modified: branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/ManyToMany.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/ManyToMany.pm?rev=31190&op=diff
==============================================================================
--- branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/ManyToMany.pm (original)
+++ branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/ManyToMany.pm Sat Feb 28 02:12:15 2009
@@ -14,7 +14,7 @@
 
 use Rose::DB::Object::Constants qw(PRIVATE_PREFIX);
 
-our $VERSION = '0.771';
+our $VERSION = '0.779';
 
 our $Debug = 0;
 
@@ -708,7 +708,11 @@
 
 For the method types "add_now" and "add_on_save", the relationship's  L<name|Rose::DB::Object::Metadata::Relationship/name> prefixed with "add_" is returned.
 
+For the method type "find", the relationship's L<name|Rose::DB::Object::Metadata::Relationship/name> prefixed with "find_" is returned.
+
 For the method type "count", the relationship's L<name|Rose::DB::Object::Metadata::Relationship/name> suffixed with "_count" is returned.
+
+For the method type "iterator", the relationship's L<name|Rose::DB::Object::Metadata::Relationship/name> suffixed with "_iterator" is returned.
 
 Otherwise, undef is returned.
 

Modified: branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/OneToMany.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/OneToMany.pm?rev=31190&op=diff
==============================================================================
--- branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/OneToMany.pm (original)
+++ branches/upstream/librose-db-object-perl/current/lib/Rose/DB/Object/Metadata/Relationship/OneToMany.pm Sat Feb 28 02:12:15 2009
@@ -12,7 +12,7 @@
 
 our $Debug = 0;
 
-our $VERSION = '0.771';
+our $VERSION = '0.779';
 
 __PACKAGE__->default_auto_method_types(qw(find get_set_on_save add_on_save));
 
@@ -263,6 +263,8 @@
 For the method type "find", the relationship's L<name|Rose::DB::Object::Metadata::Relationship/name> prefixed with "find_" is returned.
 
 For the method type "count", the relationship's L<name|Rose::DB::Object::Metadata::Relationship/name> suffixed with "_count" is returned.
+
+For the method type "iterator", the relationship's L<name|Rose::DB::Object::Metadata::Relationship/name> suffixed with "_iterator" is returned.
 
 Otherwise, undef is returned.
 




More information about the Pkg-perl-cvs-commits mailing list