Rename vaguely named internal method
[dbsrgits/DBIx-Class.git] / Changes
diff --git a/Changes b/Changes
index b91006b..6408d9f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -14,6 +14,14 @@ Revision history for DBIx::Class
         - FilterColumn now passes data through when transformations
           are not specified rather than throwing an exception.
         - Optimized RowNum based Oracle limit-dialect (RT#61277)
+        - Requesting a pager on a resultset with cached entries now
+          throws an exception, instead of returning a 1-page object
+          since the amount of rows is always equal to the "pagesize"
+        - $rs->pager now uses a lazy count to determine the amount of
+          total entries only when really needed, instead of doing it
+          at instantiation time
+        - New documentation map organized by features
+          (DBIx::Class::Manual::Features)
 
     * Fixes
         - Fix memory leak during populate() on 5.8.x perls
@@ -53,6 +61,7 @@ Revision history for DBIx::Class
     * Misc
         - Refactored capability handling in Storage::DBI, allows for
           standardized capability handling wrt query/enable/disable
+        - Entire test suite now passes under DBIC_TRACE=1
         - Makefile.PL no longer imports GetOptions() to interoperate
           better with Catalyst installers
         - Bumped minimum Module::Install for developers