Added looper around to make sure that we don't overflow buffers.
[dbsrgits/DBIx-Class.git] / Changes
diff --git a/Changes b/Changes
index 079159b..f44d793 100644 (file)
--- a/Changes
+++ b/Changes
@@ -7,8 +7,13 @@ Revision history for DBIx::Class
         - Both the ::ODBC and ::ADO dispatchers now warn if a rdbms-specific
           driver is not found for this connection before falling back to
           plain ::Storage::DBI
+        - populate() in void context now uses the multi-row INSERT
+          statement in MySQL. It will send 500 rows at one time. You can
+          change this behavior by setting ????
 
     * Fixes
+        - Fix exiting via next warnings from ResultSource
+        - Fix ::Storage::DBI::* MRO problems on 5.8.x perls
         - Disable mysql_auto_reconnect for MySQL - depending on the ENV
           it sometimes defaults to on and causes major borkage on older
           DBD::mysql versions
@@ -20,6 +25,14 @@ Revision history for DBIx::Class
           when deploying a schema via sql file
         - Fix reverse_relationship_info on prototypical result sources
           (sources not yet registered with a schema)
+        - Automatically require the requested cursor class before use
+          (RT#64795)
+        - Work around a Firebird ODBC driver bug exposed by DBD::ODBC 1.29
+
+    * Misc
+        - Only load Class::C3 and friends if necessary ($] < 5.010)
+        - Greatly reduced loading of non-essential modules to aid startup
+          time (mainly benefiting CGI users)
 
 0.08127 2011-01-19 16:40 (UTC)
     * New Features / Changes