Release v0.08250
[dbsrgits/DBIx-Class.git] / Changes
diff --git a/Changes b/Changes
index e0f59a3..0ac2321 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 Revision history for DBIx::Class
 
+0.08250 2013-04-29 22:00 (UTC)
     * New Features / Changes
         - Rewrite from scratch the result constructor codepath - many bugfixes
           and performance improvements (the current codebase is now capable of
@@ -21,6 +22,9 @@ Revision history for DBIx::Class
             distinct => 1 (the distinct should apply to the main source only)
         - Massively optimize codepath around ->cursor(), over 10x speedup
           on some iterating workloads.
+        - Support standalone \[ $sql, $value ] in literal SQL with bind
+          specifications: \[ '? + ?', 42, 69 ] is now equivalent to
+          \[ '? + ?', [ {} => 42 ], [ {} => 69 ] ]
         - Changing the result_class of a ResultSet in progress is now
           explicitly forbidden. The behavior was undefined before, and
           would result in wildly differing outcomes depending on $rs
@@ -51,6 +55,12 @@ Revision history for DBIx::Class
         - Stop Sybase ASE storage from generating invalid SQL in subselects
           when a limit without offset is encountered
         - Even more robust behavior of GenericSubQuery limit dialect
+        - Make sure deployment_statements() and cursor_class() are called on
+          a resolved storage subclass
+
+    * Misc
+        - Fix tests failing due to unspecified resultset retrieval order
+          (test suite now will pass with newest SQLite libs)
 
 0.08210 2013-04-04 15:30 (UTC)
     * New Features / Changes