X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=1869f7f99191557b0e67ed491e1d4b70867ce4d2;hb=d1ec2830cc15412c0a99d77b97dc95393af1e66a;hp=20ca87aacd5daf9134fad1d36dff20d499221119;hpb=1ace31c28f86cb86741df7e65965a370008fc29c;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/Changes b/Changes index 20ca87a..1869f7f 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,21 @@ Revision history for DBIx::Class + - order_by now can take \[$sql, @bind] as in + order_by => { -desc => \['colA LIKE ?', 'somestring'] } + - SQL::Abstract errors are now properly croak()ed with the + correct trace + - populate() now properly reports the dataset slice in case of + an exception + - fixed corner case when populate() erroneously falls back to + create() + +0.08103 2009-05-26 19:50:00 (UTC) - Multiple $resultset -> count/update/delete fixes. Now any of these operations will succeed, regardless of the complexity of $resultset. distinct, group_by, join, prefetch are all supported with expected results + - Return value of $rs->delete is now the storage return value + and not 1 as it used to be - don't pass SQL functions into GROUP BY - Remove MultiDistinctEmulation.pm, effectively deprecating { select => { distinct => [ qw/col1 col2/ ] } } @@ -31,6 +43,11 @@ Revision history for DBIx::Class - Sybase now supports autoinc PKs (RT#40265) - Prefetch on joins over duplicate relations now works correctly (RT#28451) + - "timestamp with time zone" columns (for Pg) now get inflated with a + time zone information preserved + - MSSQL Top limit-emulation improvements (GROUP BY and subquery support) + - ResultSetColumn will not lose the joins infered from a parent + resultset prefetch 0.08102 2009-04-30 08:29:00 (UTC) - Fixed two subtle bugs when using columns or select/as